First we get all of the known hosts with Angry IP scanner. Then we launch a parallel nmap scan. Get a list of possibly alive IPs with angry ip Download angry IP:Read More…
Testing Fake 2TB thumb drive
Ordered a 2TB thumb drive to use for backups off Amazon. It was only 30$ so I gave it a shot. I should have known as Sandisks are in the hundred orRead More…
How To Regex With Grep And Solve Wordle Puzzles
Wordle is an interesting 5 letter word puzzle game. To learn how to play it just watch the first video link below. To cheat thru it with regex, first, get the allowed_wordsRead More…
Python creating your own range() function with yield
Generator functions allow for yielding which is an important skill to have when you are becoming advanced with python. It basically allows creating lists but not caring about the whole list, onlyRead More…
WebEx – Simple Python Script To Find Room By Name and Send Message To It
This is a simple python script which uses the WebEx API. WebEx is a chat system created by Cisco. However its alot more then just that, its full on collaboration tool thatRead More…
Trick to recall “ln -s” symlink argument order
I can never remember the order of arguments for the ln command (link command). The easiest way to think about it is to rethink of the “cp” (copy command) instead of “cpRead More…
Sublime Text Editor – Show All Whitespace
The ability to see all whitespace (spaces, tabs, etc) is not very clear in sublime and not easily accessible. You can change it by doing this: Open your user settings (Preferences ->Read More…
rhood – robinhood portfolio analysis tool (better net profits per symbol)
Github: https://github.com/bhbmaster/rhood <- download location. install & run instructions. Using the robin-stocks python module, I created my own robinhood portfolio analyzer called rhood. It parses all of your Robinhood account information providedRead More…
Create Github Repo On The Go From The Shell – Github API
Sometimes you start coding something and you don’t yet realize if it will be a project worth sharing on github. We don’t always think about this as we begin coding. This isRead More…
Backup file[s] to Dropbox (without syncing)
This github page, https://github.com/andreafabrizi/Dropbox-Uploader, has the dropbox-uploader tool which I use to backup content from servers (Linux, Mac, etc) without having to sync my Dropbox content to the local disk on yourRead More…