Archive for September, 2008

Steve Jobs and the Portal to the Invisible

Steve Jobs and the Portal to the Invisible

This is Esquire’s take on Steve Jobs and Apple. Overall, it seems quite accurate. It’s a very long read, so you may want to sit down to read it.

Here’s an excerpt:

He is messianic, and his life stands as an illustration of the difference between the two objectives. He was never driven by a vision of a better world; he was driven by a vision of himself as a person whose decisions guide the world. He wanted to build a device that moved the world forward, that would take people further. He wanted to build a reality that wasn’t there. He wanted to be one of the important ones.

iPhone Apps: Shazam

Shazam is one of those apps that solves one of life’s problems. Not only that, but Shazam does it for free.

Shazam icon

Click to continue reading “iPhone Apps: Shazam”

iPhone Apps: Twitterific

For those of you that use Twitter, you’ll know how addictive it is. You tweet while in a queue, you tweet while you’re travelling and you tweet every other minute that you can.

Twitterific Premium icon

Click to continue reading “iPhone Apps: Twitterific”

Coda

Recently, i’ve been using a piece of software called Coda. Coda is a very pretty, web developer application developed by a company called Panic. It’s not open source, or free but i think it’s worth paying for.

To steal Panic’s tagline

Text editor + file transfer + svn + CSS + Terminal + Books + More = Whoah.

Welcome to Coda. Grow beautiful code.

It supports quite a few languages. For these langages it offers code completion, as well as a helpful “Hints” feature which can be seen at the bottom of the window.

Click to continue reading “Coda”

iTunes Weekly Free Song

Every week Apple release a free song. This can be found in the middle of the iTunes home page, usually with a “FREE” tab over it.

Flobots free song

This song is always free, and is sometimes not DRM’d. The song is usually good, with a few exceptions, and can help you find new artists that you may not have heard before.

Command line iPhone video

ffmpeg is a collection of components that makes the backend for a lot of GUI media convertors. If you’re a fan of the command line, you can do quick and easy video conversion from just about any video format to just about any other video format. For example, you can convert a video to a format suitable for an iPod Touch or iPhone using this command:

ffmpeg -i source_video.avi -acodec libfaac -ab 128kb -vcodec mpeg4 -b 900kb -mbd 2 -flags \
+4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 320x180 -title Title output_video.mp4

If you wanted to, it would be fairly easy to make this into an alias or a bash script so you don’t have to remember it all. Maybe I will at some point and update this post, for now I’ll leave it as an exercise to the reader.

Using this command, I transcoded a 42 minute XviD video in just 12 minutes on a 2.2Ghz Athlon (and just using one core, I’m not sure if ffmpeg supports multicore encoding). And the quality was more than good enough, though you can increase the quality by simply increasing the number after the -b (bitrate).

Discover more quick ffmpeg commands

Next entries