Friday, 22 April 2016

Downloading Spotify Playlist


1) To play Spotify Playlist online

  https://play.spotify.com


2)  Create a playlist and add songs to the playllist


3) goto

 https://soundiiz.com/converter#


4)  Select Spotify playlist and convert them to youtube playlist



5) Open youtube and copy the playllist link

http://www.youtube.com/watch?list=PLhrW4BzT6QepyaNMMJXpeKGQKi4nDpVL1



6)  Now goto

  http://youtubeplaylist-mp3.com/


and convert those playlist to into mp3 files.




Saturday, 16 April 2016

Remove Numbers ,special characters in a file using Notepad++

Replacing numbers with empty space
1)Ctrl+F 
 2)  Replace - Search mode: regular expression
 3)  Find What: [0-9]+
  4)Replace With:   (// Replace with is empty)


Replacing words with empty space or other words
1)Ctrl+F 
 2)  Replace - Search mode: regular expression
 3)  Find What:  Good morning
  4)Replace With:   Good night


Replacing special characters with empty space 
1)Ctrl+F 
 2)  Replace - Search mode: regular expression
 3)  Find What:  ;
  4)Replace With:   (empty )



Replacing  2 newlines (\n\n)  with 1 newline(\n) 
1)Ctrl+F 
 2)  Replace - Search mode: Extended(\n,\r,\t)
 3)  Find What: \n\n
  4)Replace With: \n

Friday, 1 April 2016

Create a Windows bootable USB stick using Ubuntu


             WinUSB comes with a simple GUI with minimal options to go with, here is how to use WinUSB to make bootable Windows USB from Ubuntu. You can use any Windows ISO may be for XP, Windows 7, Windows 8, Windows 8.1 or any other.
  1. Insert Flash Drive & Get your Windows ISO (I used Windows 10 Technical Preview) or insert the Windows CD/DVD
  2. Start WinUSB and, nothing else really needs to be explained.
  3. Select your Source, either ISO or CD Drive
  4. Pick your Target (USB) Device. If it doesn’t appear, hit refresh and make sure it’s mounted.
  5. Click on “Install” and enter your Password (required to mount devices and write directly to drives)
This is all you need to do to create a bootable Windows USB Stick
-----------------------------------------------------------------------------------------------------

Open terminal  :  ctrl + Alt + T
-------------------------------------


sudo add-apt-repository ppa:colingille/freshlight
sudo sh -c "sed -i 's/trusty/saucy/g' /etc/apt/sources.list.d/colingille-freshlight-trusty.list"
sudo apt-get update
sudo apt-get install winusb




****************************************************************************

Learn Git in graphical way

                                       Introduction Sequence



1)  Introduction to  git commits


Git Commits






Goal:




$  git commit



$  git commit



******************************************************************************

2.  Branching in Git























Goal:



$ git branch bugFix




$ git checkout bugFix



*********************************************************************************

 3)  Merging in Git















Goal::




O/p:




$  git branch bugFix




$ git checkout bugFix





$ git commit




$  git checkout master




$  git commit





$ git merge bugFix




********************************************************************************

4)  Rebase Introduction










o/p:


















Goal ::




O/p:



$  git branch bugFix  





$ git checkout bugFix




$ git commit



$ git checkout master




$ git commit



$ git checkout bugFix




Shortcut for above  Commit & Checkout :


 $ git checkout -b bugFix



$ git rebase bugFix

  o/p : Branch already up-to-date



$ git checkout Master




******************************************************************************
*****************************************************************************************************************************************************************
******************************************************************************
*****************************************************************************************************************************************************************
******************************************************************************
*****************************************************************************************************************************************************************
******************************************************************************
*****************************************************************************************************************************************************************



Reference :  http://pcottle.github.io/learnGitBranching/