Upgrading Ubuntu using Alternate ISO

Thursday, February 11, 2010 by Less Talk, More Example

The Goal

Upgrading ubuntu using alternate ISO without having to burning it to the CD. We mount the ISO manually and install from there.
Upgrade Ubuntu

The Process

Important, upgrading an ubuntu require you to do it in sequence manner. For example, if your current version is Ubuntu 8.04 and you want to upgrade to Ubuntu 9.10 you must upgrade to 8.10 first, then 9.04 and finally 9.10. This tutorial cover upgrading from Ubuntu 9.04 to 9.10. So, here we go.
Posted in Label: , , | 3 Comments »

Updating Twitter Status via Shell Script

Monday, February 8, 2010 by Less Talk, More Example

The Goal

Updating twitter status via shell script. The command used to send the HTTP request is POST a.k.a lwp-request (a perl script) that included in most linux distribution.
Twitter Status Update

The Process

  1. Open your text editor i.e. gedit/geany/etc or even vi you are die hard fans of this editor.
  2. Copy and paste code below.

Creating a Simple Wordpress Plugin

Sunday, February 7, 2010 by Less Talk, More Example

The Goal

Creating a simple plugin that replace <!--ltme=COLOR--> with BIG and colored "Less Talk, More Example" words. Take a look at images below.
Wordpress - writing a post Result

The Process

  1. Open your text editor then create a new file.
  2. Copy and paste code below.
Posted in Label: , , | 0 Comments »

Animated CSS Progress Bar

by Less Talk, More Example

The Goal

Creating animated progress bar using javascript and pure CSS. The final result will look like this:

The Process

  1. Open your favorite text editor and create a new file.
  2. Copy and paste code below:

Creating Pure CSS Progress Bar

by Less Talk, More Example

The Goal

Creating progress bar using pure CSS. The final result will look like this:
54%

The Process

  1. Open your favorite text editor and create a new file.
  2. Copy and paste code below

Install Apache Ant on Ubuntu Linux

by Less Talk, More Example

The Goal

You can install Apache Ant on Ubuntu Linux using manual installation method.

The Process

My Environment
  • My $HOME is located in /home/ltme
  • I put Ant package in $HOME/archive/a
  • I extract the package to $HOME/programs
  • My Ant version is 1.7.1
Pre-Installation

You must have Java Development Kit (JDK) installed first, refer to this article if you not install the JDK yet.

Install Java (JDK) on Ubuntu Linux

Saturday, February 6, 2010 by Less Talk, More Example

The Goal

You can install Sun JDK on Ubuntu Linux using "unpack and run" method not via apt-get.

The Process

  1. Download the Sun JDK for Linux from http://java.sun.com/
  2. Open the terminal to extract the package, move to the saved location first: (I assume you save it to your home directory) $ cd /home/user $ sh jdk-6u7-linux-1586.bin
  3. You will be asked "License Agreement" and type yes to Agree. $ sudo mv jdk1.6.0_07 /usr/local $ sudo ln -s /usr/local/jdk1.6.0_07 /usr/local/java
  4. Check the current java that running on your system $ update-alternatives --list java /usr/bin/gij-4.2
  5. After running that command we knew that there is no alternative for java. So, we need to add our new JDK to the alternatives.
Posted in Label: , , | 0 Comments »

Advertisement