chkconfig – init.d

In UNIX systems, there are a few different ways to get stuff to automatically come back up after a restart. CHKCONFIG In RHEL5, you’re probably going to start and stop programs with the syntax. /sbin/service httpd restart In order to do that, you need to do a few things. First, make sure there’s a shell script in /etc/init.d called httpd. And in that script there need to be two special lines, one with a run level map, and another with... [Read More...]

RHEL5 Packagement Management

RPM To list all installed packages — and filter for oracle things.. rpm -qa  |grep -i oracle To remove a package.. rpm -e oracle-instantclient11.2-basic-11.2.0.1.0-1 Yum : To search for both installed and available packages, do this. kaufen Womens Intimacy Enhancer online Note the column on the right — shows which repo it is available from, or if it’s installed already. [root@SGProdWs1v-O5208 ~]# yum list |grep php php52.x86_64                       ... [Read More...]

OSX terminal — follow mouse cursor

for those old school unix people out there who are use to X and WindowMaker.. I just discovered a trick that allows you to change window focus on mouse over, just like Buy decadron in windowmaker. And it doesn’t bring the window Online Pharmacy No Prescription Needed fully to the foreground either.. sweet. sudo -u root in a terminal, and then run this command. kaufen Womens Intimacy Enhancer online defaults Buy Propecia Online Pharmacy... [Read More...]

Crashed OSX due to too many fonts

It’s s imple really, kaufen Womens Intimacy Enhancer online i installed 14,000 fonts using fontbook last night. So, each time the computer tried to launch an Buy Cialis Professional Online Pharmacy No Prescription Needed app (like word or excel), it tried to lead them each into memory, which meant those programs just never launched. Oh, and when I tried to reboot, forget it. To log in, I waited more than 30 minutes after the hard reset,... [Read More...]

Setting up MySQL Replication [5.3.1] on Ubuntu Server

I got a little sick of a bunch of outsourced dbas ‘working’ for us on a project so I pushed them out and decided it’d be quicker if I just did it myself.  (by working, they took over a month just to do what took me four hours — the company is bluewolf by the way.) What you need to do this: Reasonable UNIX system administrator skills. The ability to use the mysql command line. Root access everywhere, root db access db1 ->... [Read More...]

Casting Zend DB results as VO Objects for flex.

It’s really simple really, you just did a zendDB->fetchAll and you want to return the result array as an VO object back to flex. You’d think that this would work. $userObject = (UserVO) $zendDBResult; But it kaufen Womens Intimacy Enhancer online doesn’t. That kind of casting is not built into PHP. Ok open source guys, this is kind of important, but that’s another discussion… So you try this. $zendDBResult = $statement->fetchObject(); $userObject... [Read More...]

Zend_AMF and Flex

Many people are switching from old school php type architectures to a more object oriented MVC system to pass data back and forth between front ends and back ends. In the world of php and flex, this generally means either Zend_AMF or AMFPHP. If you want to see how this works, I suggest starting here. http://corlan.org/2008/11/13/flex-and-php-remoting-with-zend-amf/ It’s a snap to do and you can probably get your first simple test up and running... [Read More...]

« Previous Page