Blog
Categories
- Jan 05 2010
Restart Apache On Redhat
The path to httpd on redhat 9 is /etc/init.d/httpd You can run the following commands on it: /etc/init.d/httpd configtest /etc/init.d/httpd graceful /etc/init.d/httpd restart /etc/init.d/httpd stop /etc/init.d/httpd start I always run configtest before restarting to make sure I haven’t messed anything up.
Continue ReadingRestart Apache On Redhat- Tagged in:
- deployment,
- tools and workflow
- Sep 15 2009
Object Lateral JS
Rick and I had a blast this weekend at the jQuery conference. We enjoyed the people, the talks, the typos, and the generally high caliber of developers in the jQuery Community. Our favorite typo was in the program. Rebecca Murphy‘s talk on Object Literals was misprinted as Object Laterals. So I grabbed objectlateral.com, and Rick […]
Continue ReadingObject Lateral JS- Tagged in:
- open source
- Sep 14 2009
PollenJS: Javascript Web Workers Library
As a follow up to my previous post regarding Javascript Web Workers, I’m pleased to announce the release of PollenJS, the first worker-specific javascript library: PollenJS on github PollenJS offers the following: Utility Methods fn trim each to_array in_array clone last unique merge filter map keys values isArr isFn isStr isNum isUndef isNull extend JSON […]
Continue ReadingPollenJS: Javascript Web Workers Library- Tagged in:
- performance,
- tools and workflow
- Jul 26 2009
Expanding Capabilities of Javascript Web Workers
Yesterday, I was introduced to Javascript Web Workers during a bad-ass FireBug console hack-session with Al MacDonald (http://hyper-metrix.com). I have to say… this is the coolest thing I’ve seen in a very long time… Workers are currently available in FireFox 3.5, Safari 4 and (according to John Resig) the Chromium Nightlies. I’d like to consider […]
Continue ReadingExpanding Capabilities of Javascript Web Workers