Install Git in your home directory :: How to

If you every need to install Git on a server but don’t have root access, follow the below steps to install Git in your home directory

check that you can run gcc – if you get errors then you got to figure something else out

gcc --version

prep your home folder

mkdir ~/src
cd ~/src

make the ~/opt directory – this is where we will install git into

mkdir ~/opt

Get the git source from google code 1.7.8.4 is the latest at the moment and untar

wget http://git-core.googlecode.com/files/git-1.7.8.4.tar.gz
tar -xvzf git-1.7.8.4.tar.gz
cd git-1.7.8.4

run ./configure and tell it to use ~/opt

./configure --prefix=$HOME/opt

now do the install

make install

check git is happy

~/opt/bin/git --version

If it prints out ‘git version 1.7.8.4’ then its all good to go – git is now installed in your home folder

How to: Rotate a video in linux

For the life of me I can't figure out how to flip/rotate a video in linux using any GUI apps

Here's the commandline way to do it

mencoder -ovc lavc -vf rotate=2 -oac copy INPUT.AVI -o OUTPUT.AVI

The rotate=2 can be replaced with whatever option best suits your needs. Rotating video options are below:

0 Rotate by 90 degrees clockwise and flip (default).
1 Rotate by 90 degrees clockwise.
2 Rotate by 90 degrees counterclockwise.
3 Rotate by 90 degrees counterclockwise and flip.

Simple Invoices 2011.1 released

Hi Guys,

Simple Invoices 2011.1 has been released

You can grab the download from:

Whats new:
  * This releases fixes the issue where recurring invoices failed to create all the invoices

Documentation:
  * Installing Simple Invoices: http://www.simpleinvoices.org/install 
  * Upgrading Simple Invoices: http://www.simpleinvoices.org/wiki/upgrade 
  * Simple Invoices help: http://www.simpleinvoices.org/help 
  * Frequently Asked Questions: http://www.simpleinvoices.org/wiki/faqs 
  * Simple Invoices config file options: http://www.simpleinvoices.org/config 

If you have any issues or queries please post here in the forum

Cheers

Justin