VIMs SUDO SAVE ################### Started writing a file and forgot to sudo, thus cant save it because missing permissions? Well here is the command to sudo the save: :w !sudo tee %Read More…
TMUX: In-depth TMUX Tutorial w/ Configs & Cheatsheets + screen, dtach, byobu
Latest .tmux.conf configs (1) default key binds config (prefix “b” with default keys) and hotkey mappings are below Here is the same config (prefix “b” w/ default keys) but works for olderRead More…
NOTE TO SELF: How To Keep Android Phone Files and Contacts Organized
NOTE TO SELF: How To Keep Phone Organized ########################################## This is how I organize my files and contacts (against duplicate and invalid contacts) Files ##### The apps and how to use themRead More…
Reverse and Forward Proxy – Notes – Load Balancers – Reverse SSH Proxy
proxy server ############# ############# Read this quickly first (short reads): http://stackoverflow.com/questions/224664/difference-between-proxy-server-and-reverse-proxy-server http://www.f5.com/glossary/load-balancer/ http://www.f5.com/glossary/load-balancing/ http://www.f5.com/glossary/reverse-proxy/ My notes from above reading (and much more) Forward and reverse proxy are easy to understand,Read More…
SQUID Config, if you need a proxy to access from far away
SQUID PROXY SETUP FOR REMOTE COMPUTERS TO ACCESS ################################################## If you read my article/notes on Proxys: HERE. Realize that we are setting up a Forward Proxy here. Reverse Proxys are used forRead More…
Find your Public IP with CLI – Easy
EASIEST BEST WAY ################# This has the positive of just giving you the IP on 1 line, no other garbage and it has worked for year (2 for me and counting, imRead More…
HOW TO INSTALL IPYTHON NOTEBOOK FROM SCRATCH ON DEBIAN 7 – WITH PYLAB INLINE FOR CHARTS AND STUFF
HOW TO INSTALL IPYTHON FROM SCRATCH ON DEBIAN 7 ################################################ Links that I used to get this information and install ipython with: Installation and uninstallation: http://www.installion.co.uk/debian/wheezy/main/i/ipython-notebook/install.html http://www.installion.co.uk/debian/wheezy/main/i/ipython-notebook/uninstall.html Configuration & General: http://askubuntu.com/questions/335883/how-to-use-the-newest-ipython-in-ubuntu12-04 http://ipython.org/ipython-doc/rel-1.1.0/interactive/public_server.htmlRead More…
Debian – Missing File or Header During Compiling? – debian.org – apt-file
One great solution is download the package that contains the missing file (usually a header file, .h extension). First look for the file with link below, note the package name and apt-getRead More…
bash – “hash” – hashed commands – Cache of Commands
Debian (or more correctly bash – and so every linux/unix that uses it has it) keeps a cache of commands that can throw off your day if you dont know about them.Read More…
CheckInstall – Compile Source into Program and let DPKG Debian Packages know about it
https://wiki.debian.org/CheckInstall Quick Answer before long article: checkinstall tl;dr (I love tl;drs) Usually when you install software with debian/ubuntu with apt-get install or aptitude install you get the program installed throughout several places. The debianRead More…