You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to append line numbers in front of each line in a file? — First published in fullweb.io issue #86
How to append line numbers in front of each line in a file?
Just use cat. No kidding, cat has the -n option to number the output lines, starting at 1:
cat -n file.txt
This works well both on Linux and Mac. Use the shell redirection to keep the output in a new file (don’t override the original file with the redirection though).
How to batch convert JPG images to progressive JPG images? — First published in fullweb.io issue #82
How to batch convert JPG images to progressive JPG images?
Progressive JPG images, as opposed to baseline JPG, will display right away in the browser, and will load bits of it in cycle, rendering it from blur to clear.
Progressive is known to provide a better user experience, preventing the ”fax loading” effect. Where the image is displayed in full, but sequentially from top to bottom.
The imagemagick package will install the convert command that you can run to convert JPG to progressive:
How to find the PID of a process using a given port? — First published in fullweb.io issue #80
How to find the PID of a process using a given port?
Sometimes you have a process you lost the PID, and would like to kill it.
You can use top (or better htop) to search for your process name and press k to kill it.
But this isn’t optimal when you aren’t sure of its name.
A better alternative is to search by the port opened, for example port 80:
Where to find changes due to git fetch — First published in fullweb.io issue #78
Where to find changes due to git fetch
fetch is useful to pull changes from an upstream repo to merge some changes.
By default git fetch upstream will update or create all the remote branches locally.
Say you have upstream/master tracked by your local master branch.
Here is how to see the changes between both: