Splitting audio files into smaller files
If you have a very large audio file, splitting it into smaller files of a fixed time duration can make it easier to deal with, especially if its some kind of audio book. I...
@ tutorialhorizon
If you have a very large audio file, splitting it into smaller files of a fixed time duration can make it easier to deal with, especially if its some kind of audio book. I...
Below shell script is running a node script, which gets an object from package.json, updates the app version and writes it back to the package.json using node API. // foo.sh node <<EOF var fs...
Occasionally you might want to know the version of ubuntu when installing a package. I usually use the following command $ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=13.10 DISTRIB_CODENAME=saucy DISTRIB_DESCRIPTION=”Ubuntu Saucy Salamander (development branch)”
If you are fed up of having to set the default nodejs version in each terminal tab, then this post is for you. Hopefully you installed node using nvm. Use the following command to...
git clean removes all the untracked files from the project. It is very in large projects where you have lots of build related, log files which are not necessary to build the product. If...
File based condition for if statements in bash Condition: [ newerfile -nt olderfile ] Description: newerfile was changed more recently than olderfile, or if newerfile exists and olderfile doesn’t. Example: if [ file1.txt -nt...
To append f2‘s content to f1, one can use the following command: cat f2 >> f1 OR echo f2 >> f1
Turns out, i was getting this error when setting up my rails app with docker on alpine. Many posts suggest to use tzinfo on the gem file. But I felt a better solution would...
The first time I saw that addres I was a bit confused. I used to think that 127.0.0.1 was the only way to refer to your local machine. Turns out, 0.0.0.0 is another way...
Connecting to Github via SSH is a two steps process on Windows: Install git-scm for windows Setting SSH for Github
Recent Comments