Java

Split String using | (pipe) symbol method

Posted on

Split string using | If you try to split string using |(pipe) symbol as below myString.split(“|”); it doesn’t work as expected. As it means “split on every character.” So you should try with double backward slash and Pipe symbol as below myString.split(“\\|”); Hope it helps somebody… 🙂 ref link & credits: http://hoskinator.blogspot.in/2006/11/trouble-using-pipe-with-stringsplit.html You may also interested […]

Android Studio

How to debug project, Android Studio

Posted on

Android Studio: Debug Project This post is for beginners, to give basic understanding to debug project in Android Studio. To debug Project, you have to place breakpoints at the code line, of a method or class, So the debugger will stop at that break point while debugging.To place a break point just click on  work […]

Android Studio

Gradle error, Could not find method jcenter() for arguments [] on repository container

Posted on

Could not find method jcenter() When i tried to see project dependencies using gradle command in Android Studio Terminal, I get following error,Could not find method jcenter() for arguments [] on repository container. project_path>gradle -q dependencies app FAILURE: Build failed with an exception. Where: Build file ‘projectpathbuild.gradle’ line: 4 What went wrong: A problem occurred […]

Inspiring Quotes

Quotes taken from status messages

Posted on

These are few Inspiring Quotes i collected from status messages of my friends and different peoples. I really inspired and like the perception of my friends to use these quotations as status messages… Krantik Whatever it takes…. make it happen 🙂 Clarity gives Quality, Programming is about getting clarity on what you need to do. […]

Inspiring Quotes

Know About Life! few wonderful lessons

Posted on

Know About Life!, here are few descriptions of the Life, Hope you may like it. The most selfish 1 letter word “I” Avoid it.The most satisfying 2-letter word “WE” Use it.The most poisonous 3-letter word “EGO” Kill it.The most used 4-letter word “LOVE” Value it.The most pleasing 5-letter word “SMILE” Keep it.The fastest spreading 6-letter […]

General

Useful Commands in a terminal/cmd prompt

Posted on

Useful Commands Here are few commands for Stop execution. To stop execution of a command in the middle of a process..On Linux terminal, Press Ctrl+Z. It will stop the execution..On SQL terminal, Press Ctrl+C. It will stop the execution..On Windows cmd(command prompt) terminal, Press Pause/Break button. it stops the execution.. The following commands helps you […]