Ondemand local webserver
Ever wanted a local directory to host contents over http? Here is how you do it, $ python -mSimpleHTTPServer Above command will host the contents of the current directory over http port 8000. If you want to use a custom...
Knowledge is Power
Ever wanted a local directory to host contents over http? Here is how you do it, $ python -mSimpleHTTPServer Above command will host the contents of the current directory over http port 8000. If you want to use a custom...
Are you seeing issues consuming files on linux coming from different systems generated on windows environment? Lets take a stab, Step 1 Check what is going on in the file $ od -c bad_file.txt Step 2 Are you seeing line separator as...
source: http://ss64.com/osx/syntax-bashkeyboard.html Bash Keyboard Shortcuts Moving the cursor: Ctrl + a Go to the beginning of the line (Home) Ctrl + e Go to the End of the line (End) Ctrl + p Previous command (Up arrow) Ctrl +...
More