Revisionist history

I’ve switched out the first ~10 cartoons, and replaced them with one-shot gags. So there are a bunch of new comics to read, starting with the first one.

I’ve always preferred doing The Far Side-/New Yorker-style cartoons, but when I started this site, I thought I should do an ongoing story with characters and plot an all. It turns out that I like killing my characters too much for that to really work out. I hope you enjoy their brief existences.

PHP Extension Wiki

I started a wiki on this site (http://www.kchodorow.com/php) to write down all the stuff I learn about writiing PHP extensions. If anyone else has experience with them, feel free to add or edit articles.

Some basics: a PHP extension is written in C. In fact, PHP itself is written in C, so there’s a lot of good source code to look at out there. There’s an excellent introduction to writing PHP extensions at Zend DevZone. However, it doesn’t go into a lot of the specifics, which is why I started the wiki. I had to figure out how to do a ton of stuff on my own, mostly by digging through the PHP source code and other extensions’ source code. No one should have to look through 500 undocumented C files to figure out how to create a PHP class in C. (However, if you like digging through source code, it’s all available to view on the web. Extensions are under pecl and PHP source is available under php-src.)

I feel like I have a pretty good handle on how to do almost anything with PHP in C, so if anyone has any questions or suggestions for an article, feel free to ask and I’ll try to write a page on it.

Upcoming pages I’d planning on writing:
– Throwing exceptions
– How to extend/implement other classes
– Using HashTable

From Russia with Bugs

My Windows partition got a virus. Ugh. Somehow I’ve managed to avoid this, I’ve never gotten a virus on any of my computers before. Anyway, being the geek I am, I decided to get it off my computer without any of this fancy-shmancy (expensive) anti-virus software. My journey:

1. I tried to edit my registry. I got the message: “Your administrator has turned off this function.” Basically, the virus, which had obviously installed itself with whatever permissions my user has, had made it impossible for me to open the registry editor. I’m cool with the registry only being editable by an admin, but then Windows should freakin prompt you for the admin password. And if the virus installed itself when I was logged in, it shouldn’t be able to do admin things!

2. I tried to delete all the virus’s files using Windows Explorer. The virus had deleted “Folder Options” from the menu, so I couldn’t delete hidden files and folders. Why the fsck would Windows let any program remove functionality willy nilly from Explorer?!

3. They could remove the “Show hidden files and folders” option from the GUI, but I’m a Linux programmer. I can just use the command line. Well, the Windows command line is awful. Or hard to use. Or both. I couldn’t make any headway with it. I couldn’t even make it do the equivalent of “ls -a”.

4. The virus put executables in system32, c:, and other folders that should be only writable by the administrator.

Anyway, that’s why I haven’t put up any new cartoons this week. I’m not sure what to do now. A combination of the virus and Windows itself has totally flummoxed me. I’d like to just get rid of Windows, but I need it for Photoshop.

Get on the bus, Gus

I booted into OS X today and tried running the unit tests for my PHP driver. It chugged away for a while, then gave me “bus error”. Great. Gotta love C error messages. I narrowed it down to when I insert 253 or more elements into MongoDB. Now, that number was suspiciously close to 256, but I couldn’t think why that would be. I tracked it to the encoding code, then to the _id class code, then to the _id generation code. Surprisingly, it was doing its “bus error” thing before any memory access, it was just reading a file. I suddenly realized that I wasn’t closing the file after reading it, fixed it, and it ran perfectly.

Got Mongo Working on Hostmonster!

This was written in April of 2009. It is very out of date. See http://rcrisman.net/article/11/installing-mongodb-on-hostmonster-bluehost-accounts for more up-to-date information (as of August 2010). Keep in mind that shared hosting with Hostmonster is very lame. They only lets you run a program for 5 minutes before killing it, so it’s fairly useless to install MongoDB unless you have a dedicated IP.

I finally got MongoDB working on this site, so I’m going to start switching stuff over from MySQL. I’m biased, but I think it’s just an easier database to use.

And, because I like writing tutorials… How I did it:

  1. Downloaded the binary I created of MongoDB for “legacy” Linux. I originally compiled this for a user on Mandriva 2006 (see previous post about VMWare), but it works fine for other old Linux distros, too.
  2. Run:
    $ tar zxvf mongodb-linux-i686-old-linux-1.tgz
  3. Make a directory for the database to put files in:
    $ mkdir /home/user/data
  4. Upload libjava.so, libjvm.so, and libverify.so. Make sure they have execute permissions and put them somewhere like /home/user/lib.
  5. Run:
    $ export LD_LIBRARY_PATH=/home/user/lib

    replacing the path wherever you put the .so’s above.

  6. Start the database:
    $ cd mongodb-linux-i686-old-linux-1
    $ bin/mongod --dbpath /home/user/data --nojni run
            

I cheated a bit and didn’t install Java, so I had to use the –nojni option. If you install Java, you won’t need that (and you won’t need to upload the individual .so files).

Now, what good is a database if you can’t use it, right? So, I downloaded my PHP driver (go to its Github repository and click “Download” for the latest version). I then followed the install instructions and put the .so generated by make in /home/user/extensions.

I changed the options under “PHP Config” in Hostmonster’s CPanel to use php.ini in /home/user/public_html/php.ini, and then edited that file to use my extension.

I made a simple test page with:


Which connected me to MongoDB, showing:

localhost:27017

when I loaded the page!

VM of Death and Doom from Hell

On Friday at work, I wrote a short post extolling the virtues of VMWare. It was freakin awesome. I had to debug a problem a user was having on a 3-year-old version of an obscure Linux distro, so Eliot (my boss) suggested using VMWare. It was so cool. I found a site that actually still had the distro available, downloaded it, installed it on a virtual machine, and got the exact same error the user was getting! Awesome.

Then I went home, figuring I’d work on it more when I got there.

When I got home… my wireless internet didn’t work. The kernel module for it wouldn’t even load, and when I ran ifconfig, it printed two new interfaces: vmnet1 and vmnet2. It turns out VMWare does something to some types of kernel modules. Damn you, VMWare!

For some reason, I’ve always had computers with Atheros wireless cards, which are very touchy about things like working. So, I started trying to get it going again. This pretty much describes how it went: http://imgs.xkcd.com/comics/success.png. Around 11pm, I gave up, and decided to leave it until Sunday, when I could look at it with fresh eyes.

Today, I booted into Linux to give it another shot. Or, rather, I attempted to boot into Linux. But, I had somehow messed up the modules in a way that made my system unbootable.

So, now I’m reinstalling Ubuntu.

Here’s hoping I make it to shore before the sharks get me. I’m going to be running VMWare from the OS X side of things from now on.

Another comic

I finally put up another comic. I’ve been delayed for two reasons: first, I’ve been really busy with work. I’ve done some major work on the PHP driver, so it should now be easily installable on Linux and Mac (it’s also faster).

Second, I’ve been wanted to add a “one shot gag” section, which requires some fairly major rewriting of my site code, so I tried to get Git set up on Hostmonster (my hosting provider). I got it set up fine, but the money-grubbing jerks at Hostmonster block outgoing ssh unless you pay for a dedicated IP. So, I can’t put the source of my site on Github, which is sad. However, at least I have Git set up locally, so I don’t have to worry about breaking stuff.

Anyway, hope people enjoy the one-shots. More coming.

Zen and the Art of Sewing Machine Matinence

(Which is a terrible book, by the way.)

I read Schneier on Security, which is an interesting blog about security and squids. (Wait, is the plural of “squid” just “squid”?) See, every Friday he post something squid-related, and last week it was an 8-foot squid pillow. Well, obviously I had to make one for myself.

I went to one of the fabric stores on Orchard Street to get fabric. “How much per yard?” I asked the salesman as he pulled down a bolt.

“Five dollars.”

It had a stupid flowed pattern on it, and I wouldn’t want my 8′ stuffed squid to look ridiculous. “How about that one?” I asked.

“Five dollars.”

“And that one?”

“Five dollars.”

“Okay, I’ll take two yards. How much is a package of stuffing?”

“Five dollars.”

In retrospect, I should have asked for ermine.

I got home, cut the pattern out of newspaper, pinned it to the fabric, and cut out all the pieces. I pinned everything together and I pulled out my sewing machine. I put the first piece in and started up the machine. It went fwipafwipafwipafwipa. All was right with the world. As I started down the second seam, it went fwipafwipafwipaSCREEfwipaSCREEfwipaSCREECH-SCREECH-SCREECH.

I stopped.

I unscrewed the case and looked for parts that could be oiled. There were, as far as I could tell, two moving parts. I oiled them, put everything back together, and tried again. Now, not only did it screech, but the needle didn’t move up and down. I had apparently oiled something that once moved the needle through friction.

So now I have a paperweight. I’m going to have one more look at it and then find a sewing machine repair shop.

It annoys me that I can easily partition my hard disk or install more RAM on my computer, yet a machine built in 1918 has gotten the best of me.