###Install package from tgz
$cd package_dir
$cat README
$./configure
$make
$make install
if make command fail OR to remove unnecessary cruft
###Install package from tgz
$cd package_dir
$cat README
$./configure
$make
$make install
if make command fail OR to remove unnecessary cruft
MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface. Run mailcatcher, set your favourite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check out http://127.0.0.1:1080 to see the mail that's arrived so far.
sudo apt-get install -y vim curl python-software-properties lynx nginx
sudo apt-get install -y php5-fpm php5-memcache memcached php-apc
sudo apt-get install -y build-essential libsqlite3-dev ruby1.9.3
###Install Android, Cordova, and Ionic Framework in Ubuntu
To install everything using the shell script I provided, download it and do the following
chmod 775 ubuntu_ionic_installer.sh
sudo ./ubuntu_ionic_installer.sh
The installation script will download and configure the following:
###Extract MP3 from SWF files on Linux (Ubuntu)
We will use a tool called swfextract contained on the package swftools, so first we will install it
sudo apt-get install swftools
Once installed first we will see wich media we can extract from our swf file.
| # editorconfig.org | |
| root = true | |
| [*] | |
| indent_style = tab | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
Git is a very powerful version control system. It can be a little bit daunting to try to learn everything around it, so most people just use the basic commands. We want to give you here some help with some tips you may or may not have heard. Either way, these tips can make your workflow a little easier.
One of the best ways to ease your daily workflow with Git is to create aliases for common commands you use every day. This can save you some time in the terminal.
You can use the following commands to create aliases for the most used Git commands, checkout, commit and branch.