Blog
Categories
- Sep 18 2012
Introducing Gith – GitHub WebHooks For Node
GitHub offers a great feature called WebHook URLs. You can add a url to take advantage of git’s post-receive hook and get a POST request containing data related to a repository push (e.g., commits, tags, and head-resets). While the data is very detailed and thorough, its complexity and focus on mimicking the git operations make […]
Continue ReadingIntroducing Gith – GitHub WebHooks For Node - Oct 07 2010
“Don’t deploy HTML5” – W3C?
There is a lot of talk right now about Philippe Le Hégaret” (PLH) from the W3C regarding quotes he made about the readiness of HTML5 for “deployment”. Philippe is quoted as saying: “The problem we’re facing right now is there is already a lot of excitement for HTML5, but it’s a little too early to […]
Continue Reading“Don’t deploy HTML5” – W3C?- Tagged in:
- deployment,
- html5
- Sep 03 2010
Apache: Could not bind address to port (make_sock)
If you’re upgrading server software, or changing your port config, you may accidentally Funk your Wagnalls. You’ll know the error when you try to restart apache. ~: sudo /etc/init.d/apache2 start * Starting web server apache2 (98)Address already in use: make_sock: could not bind to address 0.0.0.0:8080 no listening sockets available, shutting down Unable to open […]
Continue ReadingApache: Could not bind address to port (make_sock)- Tagged in:
- deployment,
- tools and workflow
- Jan 14 2010
Wild Card Sub Domains
After a recent foreign top level domain registration binge aimed at some fun domain hacks, I got sick of spending money on foreign TLDs, and started getting creative with subdomain hacks. TLD hacks are fun, but feel a little less natural to me, and certainly don’t tend to read as well; my eyes tend to stop at […]
Continue ReadingWild Card Sub Domains - 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