Archives

Fashion is Communication

While I don’t generally like the idea of feminism (I can’t get behind a movement that often asks society to create or worsen inequality in a way detrimental to others) that doesn’t mean I don’t like feminists. Greta Christina wrote an article titled fashion is a feminist issue and I really like how she phrased her argument. …

Fashion is Communication Read More »

The Dream

So, as usual I haven’t written anything personal in a while. I’ve been working hard on my new web application that’s basically just a clone of a couple dozen other websites out there. I’m not really striving for originality so much as I’m applying old solutions to unsolved problems. That’s fine with me – whatever …

The Dream Read More »

MySQL Roll Out Error

This is a shorty but it was kind of irritating. It turned out to be a MySQL error that only occurred on my production server. Presumably this was because the version of MySQL was either different or configured differently on the production server as on my local development box. Either way it’s an easy work-around …

MySQL Roll Out Error Read More »

Solved: MySQL ERROR 1005: Can’t create table (errno: 150) (Foreign Key)

This is another stupid error. It has to do with trying to successfully set foreign keys in MySQL. ERROR 1005: Can’t create table (errno: 150) Great, that’s fantastic. Here’s an example of where this error will occur. CREATE TABLE main( id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY(id) ); CREATE TABLE other( id INT UNSIGNED …

Solved: MySQL ERROR 1005: Can’t create table (errno: 150) (Foreign Key) Read More »