|
Advertisement
|
Forum posts by Ananth Chelladurai:Posted in All Buzz Forum, Jun 6, 2013, 7:31 PM
VIM Editor Commands Vim is an editor to create or edit a text file. There are two modes in vim. One is the command mode and another is the insert mode. In the command mode, user can move around the file, delete text, etc. In the insert mode, user can insert text. Changing mode from one to another From command mode to insert mode type...
Posted in Java Buzz Forum, Jun 6, 2013, 7:31 PM
VIM Editor Commands Vim is an editor to create or edit a text file. There are two modes in vim. One is the command mode and another is the insert mode. In the command mode, user can move around the file, delete text, etc. In the insert mode, user can insert text. Changing mode from one to another From command mode to insert mode type...
Posted in All Buzz Forum, Jun 5, 2013, 6:31 PM
Though the answer is simple, I have struggled a bit to get out of the man page. Thought this could help for unix beginners like me. "man" command is very useful to read the manual of any commands that you use from terminal on a linux/mac machines. From your terminal "man command-name" takes you to the manual page. In order to navigate in the...
Posted in Java Buzz Forum, Jun 5, 2013, 6:31 PM
Though the answer is simple, I have struggled a bit to get out of the man page. Thought this could help for unix beginners like me. "man" command is very useful to read the manual of any commands that you use from terminal on a linux/mac machines. From your terminal "man command-name" takes you to the manual page. In order to navigate in the...
Posted in All Buzz Forum, Jun 5, 2013, 4:31 PM
From your terminal using commands Check your git version with the following command, git --version if you have git version equal or greater than 1.7.0, you should be able to do with the following commands. git checkout -b newbranch git push -u origin newbranch The first command creates a new branch from your current local branch. In order find...
Posted in Java Buzz Forum, Jun 5, 2013, 4:31 PM
From your terminal using commands Check your git version with the following command, git --version if you have git version equal or greater than 1.7.0, you should be able to do with the following commands. git checkout -b newbranch git push -u origin newbranch The first command creates a new branch from your current local branch. In order find...
Posted in All Buzz Forum, Jun 1, 2013, 12:26 AM
It is a painful truth that most of my fellow developers don't care about code readability and maintainability. Sometimes its frustrating to make changes on an unformatted, in other words poorly written code. Code that we write represents our brain and I consider my code as how an artist considers his painting. After reading an article on Style...
Posted in Java Buzz Forum, Jun 1, 2013, 12:26 AM
It is a painful truth that most of my fellow developers don't care about code readability and maintainability. Sometimes its frustrating to make changes on an unformatted, in other words poorly written code. Code that we write represents our brain and I consider my code as how an artist considers his painting. After reading an article on Style...
Posted in All Buzz Forum, May 31, 2013, 10:26 PM
How to get your top 100 unix commands history | sed "s/^[0-9 ]*//" | sed "s/ *| */\n/g" | awk '{print $1}' | sort | uniq -c | sort -rn | head -n 100 > commands.txt How to copy a file to all subfolders of a directory using unix command find . -type d -exec cp pathtofile {}/ \; How to delete all .svn folders from current directory using unix...
Posted in Java Buzz Forum, May 31, 2013, 10:26 PM
How to get your top 100 unix commands history | sed "s/^[0-9 ]*//" | sed "s/ *| */\n/g" | awk '{print $1}' | sort | uniq -c | sort -rn | head -n 100 > commands.txt How to copy a file to all subfolders of a directory using unix command find . -type d -exec cp pathtofile {}/ \; How to delete all .svn folders from current directory using unix...
Posted in All Buzz Forum, May 31, 2013, 8:27 PM
After spending more than 9 years of my life in microsoft os, I feel great now to use my Mac notebook. Especially I have fallen in love with the terminal and thrilled to learn the power of unix. I curse myself for not being an unix user so far. Well, its never late to start. :-) As a beginner I thought of sharing my learnings to my fellow...
Posted in Java Buzz Forum, May 31, 2013, 8:27 PM
After spending more than 9 years of my life in microsoft os, I feel great now to use my Mac notebook. Especially I have fallen in love with the terminal and thrilled to learn the power of unix. I curse myself for not being an unix user so far. Well, its never late to start. :-) As a beginner I thought of sharing my learnings to my fellow...
Posted in All Buzz Forum, May 31, 2013, 6:26 PM
Getting started with Git I would advise to read through what is Git, and have a decent understanding of SCM process. The first question everyone would get is why I should move away from my current SCM systems(CVS or SVN). Well there are lot of articles around this topic if you google, just a couple of quick reasons I would give to go with...
Posted in Java Buzz Forum, May 31, 2013, 6:26 PM
Getting started with Git I would advise to read through what is Git, and have a decent understanding of SCM process. The first question everyone would get is why I should move away from my current SCM systems(CVS or SVN). Well there are lot of articles around this topic if you google, just a couple of quick reasons I would give to go with...
Posted in All Buzz Forum, May 31, 2013, 4:26 PM
Maven batch mode Batch mode is to run Maven in a non-interactive, continuous integration environment. When running in non-interactive mode, Maven will never stop to accept input from the user. Instead, it will use default values when it requires input. How to run maven in batch mode Pass one of the params below to mvn command from your...
|