Friday, May 24, 2013

Free Source Code Hosting for Personal/Business Use

Even as student or  in life time of Engineer we do many things, many great things (hehe), tonnes of projects, seminars etc. and we never know when we might need to re-touch or re-collect the project codes, presentations, latex reports, documents and so and so ... yes storing them on the optical disk or in some back-up drive is good idea but not the great one... we never know when this stuff stop working, after all we built it... isn't...

Thursday, May 23, 2013

Create your own Linux (custom) commands

Hi, Most of the time we need to use some commands repeatedly while working. It's just annoying to type them again and again, of course we can use reverse search [ctrl+r] for reverse command search but I am lazier than that ;) Here are couple of ways to customize (or get more lazy) Linux commands, Use Aliases to Customize Linux Commands: This is actually for small commands (can be used for large ones also). You can set it in terminal as bellow, $alias ll='ls -l' Now onward whenever you execute 'll' command it will work...