Geoengineering in Progress – 2012

The most extraordinary and interesting phenomenon out of this particular series of pictures can be seen on the photos dated October 30th, 2012 and November 15th, 2012. This is the exact time that Hurricane Sandy was hitting the United States.

On the pictures of page 3, you can see a bright, circular shaped, glare about 3 or 4 times the size of the sun. It was not a camera glare and could be seen by the naked eye, plain as day. Being twenty-eight years old at the time, I had never seen anything like this in my entire life. Then I saw the exact same occurrence two weeks later.
Continue reading “Geoengineering in Progress – 2012”

Geoengineering in Progress – 2014

The simple truth is that Geoengineering/Climate Engineering/Weather Modification/Chemtrails are a global conspiracy FACT. If you believe otherwise, I suggest that you do a minimal amount of research, consider all of the pictures I have taken over the past several years as cold, hard, evidence and just go outside, look up, and pay attention.

This is all done blatantly, in your face, as you sit around watching TV all day being mesmerized by the LED flicker rates and psychological programming. We as a people need to stop being so damn naive and realize that you and everyone you love is being soft killed on a daily basis on every level.
Continue reading “Geoengineering in Progress – 2014”

The Farm Hands – Romanian Man

Here is a single called “Romanian Man” from the three piece band (The Farm Hands) I was in from 2010-2012. This is my favorite song we ever did. We took turns switching instruments in a lot of different songs. I primarily played bass and did so in this particular little diddy. All of our songs can be found on my YouTube channel or on Soundcloud.

Mikrotik Scripting – Array Push Function

Since the scripting language at the moment on Router OS version 6.13 is lacking in the array editing department, here is a simple array push function I created.

# Usage: [$arrayPush <$array name> <value> <key position to place value (0-n or -1)>]
# Input an array name, value, and the key position to push the value to. To push value to the end of the array, enter -1.
# If array doesn't already exist, you must declare the variable and set it to "" before calling the function.
 Continue reading "Mikrotik Scripting – Array Push Function"

Mikrotik Scripting – Function to Split an IP Address into an Array

If you are unfamiliar with Mikrotik networking equipment, do yourself a favor and check them out at mikrotik.com or routerboard.com. Mikrotik uses Router OS, a Linux based operating system. In my eyes, they are every bit as comparable to Cisco at a fraction of the price with an impressive and robust GUI. I’ve been using them in production environments for six years with outstanding results. What other networking equipment has it’s own scripting language? None that I know of. The CCR series of routers with up to 36 processor cores are unparalleled in performance and flexibility.
Continue reading “Mikrotik Scripting – Function to Split an IP Address into an Array”

Bash Script – Sync a File to an Array of Hosts

#!/bin/bash
# Sync a file to a remote set of servers using scp and check using diff
# NOTE: This requires the use of 'sshpass' and IS insecure in nature
# It also assumes the user credentials are identical on all hosts
# and that they have the necessary permissions on the remote directory
# Author: Nathan Thomas
LOGFILE='/var/log/sync_files.log'
SSH_USER='non-root-user'
SSH_PASS='password'
CONF_FILE='/etc/appdir/myconfig.conf'
SERVERS=('server1.fqdn.com' 'server2.fqdn.com' 'server3.fqdn.com')
for HOST in "${SERVERS[@]}" ; do
        # NOTE: This won't work if the host keys are not already in the ssh cache
        # Flush ssh hosts - Either uncomment these two lines on first run or you could leave it uncommented for hosts that change addresses a lot
 Continue reading "Bash Script – Sync a File to an Array of Hosts"