Welcome, Guest :: Blog Home | Login | Register

Articles By Tag:
Linux Mobile Media Converter

2010-04-04 17:08:49 Tags: linux mobile media converter

Need to convert your mobile phone 3gp video files under Linux OS? Well, here's the perfect tool for the job - Mobile Media Converter

You can download the Linux binary directly, or follow the steps below from your command line.

Code:
wget http://www.miksoft.net/products/mmc-lin.tar.gz


Code:
tar -zxvf mmc-lin.tar.gz


Code:
cd MobileMediaConverter/


Code:
./MobileMediaConverter


Once the GUI is up and running select the in file, out file format, quality and then click convert!

~Stephen

[ Comments (1) ]




Remote Git Repository Setup

2009-08-23 20:14:59 Tags: git linux

I've been doing a lot of work moving from SVN to Git for source code version control. The following is a quick and easy how-to for setting up a remote git repository. This example shows how to import an existing SVN repo into a new git repo.

1) [Local machine] Export clean code base from remote SVN repository:

Code:
cd /var/git/
svn export http://svn.domain.com/trunk myapp.git
cd myapp.git
git init
git add .
git commit -m "initial import"


2) [Remote server]: Make remote git repository:

Code:
ssh user@ipaddress
mkdir /var/git/myapp.git && cd /var/git/myapp.git
git --bare init


3) [Local machine] Add/push local repo to remote repo:

Code:
git remote add origin user@ipaddress:/var/git/myapp.git
git push origin master


4) Give out git repo info to developers:

Code:
git clone user@ipaddress:/var/git/myapp.git


That's all that's required for source code versioning via Git. Each developer can now clone from the master branch of the remote server (see step 4) and go to work! More on how to commit revisions soon.

~Stephen

[ Comments (0) ]