How to move WordPress without breaking web links Jun 17, 2011 WordPress allows you to specify your blog url as, for example, www.ipreferjim.com/site. It also allows you to run the blog from the base of your domain, e. ...
Godaddy URL Rewrite Fix for directory without trailing slash Jun 14, 2011 Not too long ago, I upgraded my godaddy.com hosting account from the linux basic to windows deluxe plans. I did this because I have multiple domains I’d like to host with a single company. ...
Can’t login to MySQL as root :( Jun 12, 2011 I was having issues logging into MySQL as root the other day. It took a while to figure things out. Ultimately, I had to follow the steps on two separate posts: http://rimuhosting. ...
Quake tracker is now officially open-source Jun 7, 2011 Go here, fork it. https://github.com/jimschubert/quaketracker
Note about Copyrights Jun 4, 2011 You wouldn’t think this would be necessary, but it seems that it is. All work on my site and in my projects is copyrighted. ...
My Review of Inside the Microsoft® Build Engine May 6, 2011 Originally submitted at O’Reilly <div> <img src="https://images.powerreviews.com/images_products/10/17/11015158_100.jpg" class="photo" align="left" style="margin: 0 0.5em 0 0" /></p> <p style="margin-top:0"> <p> Your practical guide to using, customizing, and extending the build engine in Visual Studio 2010. ...
[node.js] Mastering Node excerpt: Addons Apr 9, 2011

Addons

The node documentation for addons is self-admittedly pretty weak as of v0.4.0.

This chapter doesn’t aim to be a replacement for the official documentation. Instead, we’d hope this can expand on some of the basics a little more than a simple “Hello, World!” and drive you as a developer more on the path toward mastering node through its source code.

In fact, for now, we’re only going to cover some shortcuts for creating properties on an object, functions, and interacting with function prototypes. This doesn’t reach the evented level of node’s awesomeness, but you should be able to look at examples in node’s source and the documention for libev and libeio to find answers.

Pre-requisites

  • Some C/C++ knowledge

  • V8 JavaScript

  • Internal Node libraries

  • libev

  • libeio

hello.node

Our first example is the very same one from node’s docs. We’re going to include it for those who haven’t read through the docs and have instead trusted in the knowledge of this ebook’s authors (thanks, by the way).

A node addon begins with a source file containing a single entry point:

...
Mastering Node Mar 17, 2011 I’ve forked a project at github called “Mastering Node”. https://github.com/jimschubert/masteringnode I’ve wanted to familiarize myself with node.js for some time, and this seems to be the best way. ...
Review: jQuery Pocket Reference by David Flanagan Feb 8, 2011 Originally submitted at O’Reilly <div> <img src="https://images.powerreviews.com/images_products/08/56/10412302_100.jpg" class="photo" align="left" style="margin: 0 0.5em 0 0" /></p> <p style="margin-top:0"> <p> jQuery is the "write less, do more" JavaScript library. ...
jQuery Pocket Reference by David Flanagan Feb 8, 2011 jQuery Pocket Reference by David Flanagan I’ve enjoyed previous books by David Flanagan and decided to read jQuery Pocket Reference. I thought I would quickly skim through the chapters because I considered myself fairly proficient in jQuery. ...