Posts from November 2007

Nov
27
2007

More Space on Your iPod Touch



Posted in Technology

I bought a shiny new iPod touch, and after unlocking it to install custom applications, I soon filled the 300Mb applications partition. If you need more than 300Mb for apps (which you more than likely will if you install more than a couple), you can create a sym link to the music partition.

  1. SSH into your iPod using a client such as Putty with the iPod's IP address, user: root, password: alpine.
  2. Move the applications folder to /private/var/Applications by typing mv /Applications /private/var/Applications
  3. Change directory to / by typing cd /
  4. Create a link to the new applications directory: ln -s /private/var/Applications Applications
  5. Now when you list the directory using ls -la, you should see something like lrwxr-xr-x 1 root admin 25 Oct 12 22:31 Applications -> /private/var/Applications
  6. Reboot your iPhone and fill up yet more space with useless applications!

[Via: MacRumours]

Nov
14
2007

Inserting Multiple Rows with MSSQL



Posted in Programming and Technology

I've been working on adding support for Microsoft SQL Server to iZeit, and there are a few things I've noticed. Firstly, whereas you can addin multiple rows in MySQL or Postgres by using

INSERT INTO tablename (field1,field2,field3) VALUES (r1c1, r1c2, r1c3), (r2c1,r2c2,r2c3)

MSSQL fails and throws an error. Instead, you have to use UNION ALL, which I always thought was more resource intensive.

INSERT INTO tablename (field1,field2,field3) SELECT (r1c1, r1c2, r1c3) UNION ALL SELECT (r2c1,r2c2,r2c3)

The second major annoyance is that MSSQL doesn't like ORDER BY clauses with text fields. Understandably you can't sort a field containing an image, but why can't it sort a text field alphabetically? One thing I still haven't found a workaround for is the LIMIT and OFFSET clauses, which MSSQL doesn't support.

Nov
5
2007

Britons Send 4Billion Texts per Week



Posted in Latest news and Technology

Britons are now sending more then 4 billion texts weekly. That's more than were sent in the whole of 1999 and 25% more than one year ago. In September, 4.8 billion texts were sent, about 4,000 per second!

That’s some furious texting. People would be better off with Blackberrys though…

Read More [BBC News]