VCENTER – HOW TO RESET PASSWORD IF LOST ######################################## I show you how to reset the root password which is used to connect to the vcenter web gui (the one you accessRead More…
My Favorite Youtube Downloader
Plenty of options exist as far as for downloading Youtube videos or Youtube full playlists but most cost money or dont work. I find these to work: App for windows (Free YoutubeRead More…
Windows PATH & PATHEXT and file associations via cmd FTYPE & ASSOC
Windows Paths and file associations via cmd ##################################### Just a note to self on viewing PATHs and PATHEXT in windows (and an explanation of each if your not familiar with it). AlsoRead More…
Amazing way to extract links from raw html
Amazing way to extract links from raw html ######################################## This goes well with my other article: Extract Quotes Extract html from links found best one here: http://stackoverflow.com/questions/1881237/easiest-way-to-extract-the-urls-from-an-html-page-using-sed-or-awk-only cat index.html | grep -oRead More…
LINUX – Make your own GPG keys – IMPORTING TO KEY SERVERS
How to Make GPG Keys Fast – IMPORTING TO KEY SERVERS ################################################## Before generating a key, open up 2 shells, and go into a screen with each (so if PC turns offRead More…
TRICK OF THE DAY: easy way to see all COM ports on WINDOWS pc
TRICK OF THE DAY: easy way to see all COM ports on pc Window+R cmd ENTER mode.com ENTER NOTE: the baud rate might not be the real baud rate as set by an app. AppsRead More…
windows linux – adb pull full sdcard
ADB PULL TO DUMP FILES RECURSIVELY ################################### THANKS TO: http://stackoverflow.com/questions/11074671/adb-pull-multiple-files 1 file or folder to current directory: # adb pull /sdcard/file 1 file or folder to another relative directory (linux): # adbRead More…
BTRFS – full filesystem not mounting – Good btrfs balance technique as well
BTRFS – full filesystem not mounting – Good btrfs balance technique as well ##################################################### For good balance Technique read “BALANCE STEP” below ISSUE ###### So here is the issue, Your partition filledRead More…
DEBIAN – UBUNTU : HOW TO BUILD MOST MINIMAL CHROOT
DEBIAN – UBUNTU : HOW TO BUILD MOST MINIMAL CHROOT ################################################### Skip to reading #3 for the minimal chroot, and skip the talk before INFO FROM: http://sagar.se/an-absolutely-minimal-chroot.html AND http://www.thegeekstuff.com/2010/01/debootstrap-minimal-debian-ubuntu-installation/ AND a fewRead More…
Python – Remove NewLines and Empty Lines (newlines with spaces)
Here is a copy paste of my answer on stackexchange forums LESSON ON REMOVING NEWLINES and EMPTY LINES WITH SPACES “t” is the variable with the text. You will see an “s”Read More…