formats

FxCamera for Android

Published on August 26, 2010,

FxCamera for Android | I ran across a neat free Android app called FxCamera. It takes photos with a variety of effects, though perhaps the best is the old polaroid. Check out these pics I took with my Android phone: An old Ubuntu mug from the 70s A pic of @scottlinux from back in the 70s For more details,

formats

Record Screencast in Linux

Published on August 24, 2010,

Record Screencast in Linux | gtk-recordMyDesktop is a useful Linux app to make screencasts of your desktop. Perhaps you need to prepare some videos for training, demos, or other uses? Or make a killer youtube video of some geeky action from your desktop? This will do it! Install with: sudo apt-get install gtk-recordmydesktop Now run the app: Applications > Sound

formats

Use CheckInstall When Installing From Source

Published on August 18, 2010,

Use CheckInstall When Installing From Source | Need to compile and install something from source? You should use checkinstall! What is checkinstall? CheckInstall creates a nice neat .deb (or rpm) of your sources which you can then easily install (and more importantly – easily UNinstall!). First, install checkinstall: sudo apt-get install checkinstall Then when compiling from source, first begin the process as

formats

Quake 3 on Android

Published on August 15, 2010,

Quake 3 on Android | Yes Quake 3 runs pretty well on the Samsung Captivate. The controls are the only weak part. Quake is difficult without a mouse! (For me, at least.) Video is below:

formats

Audible for Android is Here

Published on August 14, 2010,

Audible for Android is Here | Audible for Android is here! Audible has created a fantastic Android app. No computer or other software required, just download and do everything right from your phone. There are many options such as only download on wifi, set audio quality (standard or high quality), and others. Audible really did an awesome job with this app.

formats

Batch Resize from Command Line

Published on August 9, 2010,

Batch Resize from Command Line | How can I batch resize photos in Linux via the command line? Yet again ImageMagick is your friend. With one little command you can resize an entire directory of photos. First, install ImageMagick if you haven’t already: sudo apt-get install imagemagick Then simply run this command below, altering as desired: mogrify -resize 1024×768 *.jpg You

formats

Handbrake Android Settings (DVD)

Published on August 8, 2010,

Handbrake Android Settings (DVD) | What setting can I use in Handbrake to encode a DVD for my Samsung Galaxy S phone? Well Android can play just about anything! The Galaxy S phone in particular has a nice screen, and 1Ghz processor that works great for high profile Handbrake encodes. The high profile setting may however result in a larger

formats

How To Strip EXIF Data

Published on August 7, 2010,

How To Strip EXIF Data | How can I strip EXIF, GPS, and other metadata from photos in Linux? Using a single command from the wonderful ImageMagick, you can strip all of that personal data from your photos before posting them to the web. First, install ImageMagick: sudo apt-get install imagemagick Then simply run this command below. Note: *.jpg will strip

formats

Mount Android Device in Linux

Published on August 1, 2010,

Mount Android Device in Linux | How do I mount my Android phone in Linux? Android phones and devices attach via usb as a generic mass storage device. This makes Android compatible with pretty much any operating system, without the need of any additional software or drivers. (Spoiler: There is an alternative to using USB. Just use AndFTP to sftp your

formats

inode – What is it?

Published on July 29, 2010,

inode – What is it? | What is an inode? Linux (and Unix) stores information about files and directories in what is known as an inode. An inode contains the file metadata. Each file on your system, for example, has a unique inode number. To view the inode number for a given directory or file, run ls -i: $ ls -i