How to change nodepad++ theme

Notepad++ is a simple lightweight editor that packs a punch. When using any editor, you would want customize its look and feel to suit your comfort. Notepad++ comes with several…

Node Package Manager (npm)

Node Package Manager (npm) comes bundled with Node. It allows you do search Node repositories for packages and modules. Anything that is searchable on search.nodejs.org is also searchable by npm.…

How to make scroll bar show in Mac

By default, Mac scroll bars show only after keyboard or trackpad movements. This can be very annoying because often the scroll bar disappears before you can get to it. The…

Checking disk space in Linux

To check disk space, you can use one the following commands: This command would list the amount of space used and available on each partition of the system. du commands…

Getting started with gulp.js

Gulp.js is a great tool for building and enhancing workflows. It is free and open source. It helps you automate repetitive tasks such as automating CSS creation and unit testing.…

How to parse a sentence in PHP

A sentence can be parsed in many different ways in PHP. A few methods are presented here along with their analysis. Regardless of the language you use for parsing a…