Freeze your Credit Reports!

I had a friend of mine almost have his identity stolen. They started by retrieving his credit report. Freeze your reports so you control them, its free!

Think about that – your credit report is like a roadmap of your financial life, what a wonderful place to start stealing an identity! It is literally a list of the things you have done financially. You want to control who can see it and when.

The three major credit agencies will allow you to freeze your report once you prove who you are. Keep them frozen and only unfreeze them when you are applying for credit. Yes, its a pain to have to unfreeze your report, but is very easy to do. Now, each agency will try to get you to upgrade to this or that plan to “lock” your report. That is up to you – you don’t have to pay anything however to freeze your report.

When you register at the credit agency sites below, please make sure you use a different password for each profile. A great way to do this is to use a password manager. I recommend 1Password https://1password.com myself. Having very long and random passwords for everything is easy to do with 1Password and you can access it from any of your devices. There is no better security, its easy and keeps you safe.

Here is a list of the three major agencies and the links where you can start your freeze. Each may have different requirements, so have a place to track PIN numbers, passwords and usernames (oh my). A password manager is a great place for that!

Equifaxhttps://www.freeze.equifax.com

Experianhttps://www.experian.com/freeze/center.html

TransUnionhttps://service.transunion.com/dss/dashboard.page

Good luck and be safe!

White Rabbit

Have you ever wanted to be able to know when someone other than you has logged into your Mac? I wanted something that went beyond “Find my Mac”. I mean, that is nice functionality but I want to be notified when someone logs in, where they are geographically, and even what they look like!

So why “White Rabbit”? Because a Mac is a man’s cave and mine is protected by the Rabbit of Caerbannog. Google it, then giggle. I have had many digital white rabbits over the years.

The solution below is not perfect but it works well enough and can be improved. With some modifications, it might be made to work on a Linux box.

Requirements:

  • Automatically trigger upon login
  • Be as hidden as possible as not to attract attention
  • Send a text message to my phone with the current location and a picture taken from the Mac camera

What you need to know / have:

  • Basic terminal commands
  • shell scripting
  • cloud server

As this isn’t a tutorial, I won’t bore you with the logic of how the solution came to be, just how to get it working. This also serves as sort of self documentation for me. I can do that, it’s my blog.

I used an app on the Mac called “Automator”. It has the nice capability to be able to take a bunch of actions, string them together, and package them as a macOS application. This application can then be set to run on login.

Prepare – Get the following items taken care of first:

  1. Download and install LocateMe. This is a command-line utility that uses geolocation to return the location of your Mac. It has some nifty parameters too, which we will explain. It can be found here: https://sourceforge.net/projects/iharder/files/locateme/
  2. Sign up for textbelt.com, which allows you to send text messages, for a fee, from the command line. https://textbelt.com. They have different plans even for cheap guys like me. You will get a ket, which is a text string unique to you. Make sure you put it someplace handy and don’t loose it.
  3. Make sure you have a place to put the picture. I simply copy it to my server in the cloud. You should configure yours with a secure key like I did. All the cool kids do it that way. Again – this isn’t school so google it. It’s not that difficult.

Now, lets put everything together within the Automator app.

1 – Open Automator and start a new “application”.

2 – Add the action “Set Computer Volume” and configure it so that it mutes the volume. We don’t want the baddies to hear the camera, do we?

3 – Add the action “Take a video snapshot”. Configure it to place the picture it takes somewhere you will remember, I chose Downloads:

4 – Add the action “Run Shell Script”. Copy the script I provide later into it. In a bit I will explain what each line does for you:

5 – Then add the action “Set Computer Volume” again, this time to un-mute the volume. We don’t want them wondering why the volume went away and start investigating!

Ok, that’s the structure of the Automator app, 5 simple steps. All the fun happens in the shell script so lets take a look at it. First, before you rush and just copy and paste and go on your merry way, this WON’T WORK by just copying it into your app. You need to change stuff. So keep reading.

Code.

I am going to explain just the executable lines below one at a time, and then provide the entire script. My mom is reading this and she would want it that way.

First, we capture the current time into a variable using the date function. Here we captured the year, month, day and then the hour, minute and second. You know, for legal purposes. We will use this for a unique picture name here in a bit.

current_time=$(date "+%Y.%m.%d-%H.%M.%S")

Then we capture the name of the computer into another variable:

host=$(hostname)

Next, we rename the picture that we took so that they wont overwrite each other if multiple logins are triggered.

mv ~/Downloads/snapshot.tiff ~/Downloads/$host-snapshot-$current_time.tiff

Now upload the freshly renamed file. Replace the key, usernames and directories to make it work. I would test it as well…

scp -i ~/.ssh/white_rabbit.key ~/Downloads/*.tiff username@someserver.com:/somedirectory

Delete the file once you upload it. It is always good to clean up after yourselves children. Now, this is a bit of an aggressive approach below but I like scaring people with rm -rf and a bunch of asterisks… You know who you are.

rm -rf ~/Downloads/*.tiff

So now we have taken a picture and uploaded it to our online lair. Ok server. Whatever. Now we need to tell somebody what has happened!

Using the nifty LocateMe command, lets capture just that Latitude and Longitude. Lets capture it in a format that we can use in a URL for Apple Maps too, cause that will be handy!

LOCATION=$(~/LocateMe-v0.2.1/LocateMe -f "{LAT},{LON}")

Next, let us write the message to be contained in the text message we will send. Oh this is the fun part. Go wild. But lets keep it short. Ours will say what has happened and then provide two URL’s. The first will be the URL for Apple Maps to show the location. The second will be the URL to the photo that was uploaded.

message="Login performed from Brad's Mac: http://maps.apple.com/?ll=$LOCATION pictures: https://someserver.com:/somedirectory/$host-snapshot-$current_time.tiff"

AND finally, lets send ourselves a text with the results! curl is a handy command line utility that is basically a web browser for the command line. You can point it at sites and it does stuff. Yeah. It’s that cool.

curl -X POST https://textbelt.com/text --data-urlencode phone='5208675309' --data-urlencode message="$message" -d key=<yourkeyhere>

That’s it! Here is the whole script. Remember, you will need to change the important bits!

#upload the picture taken by automator
current_time=$(date "+%Y.%m.%d-%H.%M.%S")
host=$(hostname)
mv ~/Downloads/snapshot.tiff ~/Downloads/$host-snapshot-$current_time.tiff
scp -i ~/.ssh/white_rabbit.key ~/Downloads/*.tiff username@someserver.com:/somedirectory
rm -rf ~/Downloads/*.tiff
#phone home
LOCATION=$(~/LocateMe-v0.2.1/LocateMe -f "{LAT},{LON}")
message="Login performed from Brad's Mac: http://maps.apple.com/?ll=$LOCATION pictures: https://someserver.com:/somedirectory/$host-snapshot-$current_time.tiff"
curl -X POST https://textbelt.com/text --data-urlencode phone='5208675309' --data-urlencode message="$message" -d key=<yourkeyhere>

So, once deployed on login, the only thing a person sitting at the computer would notice is that the screen will flash on the Mac. That is the side effect of the “Take Video Snapshot” action. You will get a text message with clickable URL’s showing the location of the Mac as well as a picture of whatever happens to be sitting in front of the computer.

Some additional things I was thinking of doing with this:

  • Use the “say” command to have the Mac express some indignation to the person who logged in. You can even use different voices! Imagine their surprise when it says “Well, that’s no ordinary rabbit! That’s the most foul, cruel, and bad-tempered rodent you ever set eyes on!”
  • Have this trigger on other events, such as when someone wakes up the screen using “screenwatcher”, which would need to be installed. In fact, I may already have done this. Who knows. Just don’t come around my Mac without the Holy Hand Grenade of Antioch.

What other ideas do you have to extend this? Leave them in the comments!

America, Coronavirus and Socialism

This isn’t my post, found it on the inter-web.

I try not to live under a rock, however, I also try my best to pay attention to my surroundings. Our Government is under attack from within. If you don’t believe so, then you probably also believe that this is the first time the Corona virus has been identified.

Think about what’s transpired over the last few months. The government has presented every possible demographic including a self proclaimed socialist as a democratic candidate because they fear something they can’t control.

The impeachment hoax failed and immediately Pelosi vowed to exhaust efforts in overthrowing Trump. If you currently can see this post then until last week you were living in the most thriving economy this nation has ever seen in my lifetime. Only due to the fact that the person in control couldn’t be bought.

If you think for one second this “pandemic” is not media driven, and controlled by the radical people in powerful places….well…go back to sleep under the rock you crawled out from. And you really aren’t going to like this.

This thing has killed less people in the same time frame then cigarettes, cancer, drunk driving, domestic violence, car crashes, cross stitching accidents (j/k on the last one but probably close), stabbings, overdoses, and please don’t get me started on abortion.

Wake up!!! This is what the beginning of socialism looks like! They are controlling what you buy…bc it’s what you think you need, where you go…bc it’s where they tell you not to go, and how to live…bc you now fear the very existence of anything outside of your home and control.

They are leading with fear. Causing you to panic like sheep.

They are crashing the stock market to run on a failing economy, because it’s all they have left. What is this saying to all of the countries that have opposed us for decades but, couldn’t defeat us?

It’s saying…biological war fare will make these idiots glued to CNN and every other liberal news source panic and run for the hills.

You don’t need hand sanitizer, toilet paper, and Lysol. You need common sense, a sense of direction, faith, a will to fight, and of course guns!

Now wash your hands and live the life they don’t want you to have!

Schauf Expedition(ish)

Most of you know that in 2018 I was able to go on a trip of a lifetime with my friend Jim Newmann to help him drive a Mercedes G-Wagon back home. It was spectacular to say the least and something neither of us will ever forget.

Time for another expedition(ish). Let me explain.

In 2020, I will be visiting the IBM Tucson office a bit more than usual. I think I have been to the office twice, because for the last 20 years with IBM I have worked from home. The round trip from Indecision Ranch to IBM Tucson and back home is just over 80 miles. As we know from Linda commuting the the Tucson Fire Academy, miles can add up on a vehicle.

We don’t want to put any more miles on Linda’s vehicle (“Pearl”, a Land Rover Supercharged) nor my vehicle (“Earl”, an F250 Super Duty) because we tow the Airstream with it. So – I have been searching for a new daily driver. Given the Guatemala trip, to say that I am impressed with Mercedes diesel engines would be an understatement. So I started the search.

I was geeking out with Jim today on the phone, talking cars. He has been helping me keep an eye out for a good one in California and putting up with my stupid questions. Craigslist has a saved search function so we had been sending listings back and forth. Today, he mentioned I should keep my eye’s out for a “w124 car”, which is a Mercedes chassis designation. Jim knows these cars very well so I took that to heart. We finished our conversation and hung up the phone.

2 minutes later my personal Mac dinged. It was a new Craigslist listing, for a w124 car in Los Angeles. I sent it immediately to Jim who stated “Wow nice car and low miles..”. Hook set. I spoke with the gentleman on the phone and a cash price was set.

I fly tomorrow morning to San Diego, where my brother Jim will pick me up at the airport and we will expedision(ish) to Los Angeles to look at the vehicle. Much shorter than the trip home from Guatemala!

IF all goes well, this will be in the driveway by the weekend!!

1995 Mercedes E300 Diesel

Germany 2019

We are finally preparing for our long awaited trip to Germany!

Linda and I will be traveling with her brother Mark, his wife Lisa and her other brother Mike. Unfortunately Linda’s other siblings were not able to make it. Linda has been working very hard since last Christmas to learn the German language, I am sure she will put her new knowledge to good use!

The main goal is drinking beer to visit the town of Wekenborg and learn a bit more about her families ancestry. While we are there – going to try and learn a bit more about the Schauf heritage as well and maybe visit a castle or two, some fairy tale towns, and a concentration camp. 

We will be staying in a windmill that was built in 1871! You can learn more about it here:

http://www.windmill-schneeren.com/

I will try to update this site when we get going and I have something interesting to say. Or something to bore you with. Thanks to my wonderful team at IBM for backing me up on the many initiatives while I am gone. I really appreciate it!!!

I look forward to trying out some of my German jokes while I am there:

Q: What do you call a pissed off German? A: Sauerkraut.

Q: What do you call a Blind German? A: a Not see

Q: If your American in the living room what are you in the bathroom? A: European

I know you laughed…

Airtug Trailer Tug HD

I am lucky enough to have a 28ft RV garage connected to our home in Arizona. The only issue is that there is not enough room in front of the garage to allow me to simply back the AS into the garage due to a 90 degree turn required and the lack of space for the AS and TV while connected.

So I started the search for a way to move the AS into the garage.

I initially considered the Purpleline trailer mover. It connects directly to your frame and engages the wheels to move your trailer. Research was difficult. I could find no reliable instance of these being used on an AS due to belly pan issues. Two dealers were willing to give it a try (Tampa and Scottsdale) but I did not want to be the first to try something like this, so we ruled it out.

http://www.purplelineusa.com/video-introducing-power-trailer-movers.php

Next I looked at the Parkit 360 and the Trax 6000.

https://parkit360.ca/products/traile…-capacity-base

https://traxpowerdolly.com/products/product/31-tx6000

I decided to go with the Parkit360 because I could power it using my AS batteries. I really didn’t want to maintain another set of batteries. The Trax required its own batteries.

We got the Parkit 360 and used it a few times with no issues. We then began to notice that the coupler to the trailer would move around when moving the trailer. Finally, it failed on me. I won’t go into details here but it was bad enough that I decided that my life and limbs were worth whatever a safer mover would cost. 😉

Parkit, however initially reticent, did take my Parkit 360 back, minus restocking and shipping fees. I was glad to pay them and kudos to Parkit 360 for doing the right thing for my self (and at least one other member of Airforums).

I was able to connect and commiserate with others through Airforums.com and found out about the Airtug. I heard from airforum.com users Kittmaster that Lewster uses them in his shop. Lewster apparently is moving Airstreams around quite a bit, so I decided to investigate more. Thanks to Kittmaster and Silvertwinkie I made the decision to purchase the Airtug.

Link to the Airtug Trailer Tug HD which I purchased:

As of July 2019, I have only used it once, but WOW. It is a very solid machine and handles the 27FB much much better than the Parkit 360. More importantly, I feel SAFE using it.

It couples to the Airstream in the same way a TV would – no special adapters that require special implementation. It does have its own batteries but also comes in a gas powered version. I think the best feature is that is has multiple wheels to make sure everything stays safe. The two main drive wheels, a steerage wheel under the handle and then two forward “wheely bar” wheels (their term, not mine) that are there to keep things in order should something go wrong.

I purchased mine (inadvertently) without a trailer brake controller. This actually works fine as I move the AS around on flat ground and itself is able to stop the AS. If you have any incline at all, you may want to consider the addition of the brake controller. I know that Kittmaster and Sivertwinkie both have brake controllers on their units.

My Airtug did not come with instructions on how to put it together, but there is this online assembly and operations PDF. Thanks to Kittmaster for taking my call and walking me through the assembly, it is very simple if your the handy type.

Here is my link to the instructions. Note this is a copy of what they sent me, it may not be the latest:

Here are some photos of the Airtug as it arrived and a movie of me using it the first time:

Video of very first use – just moved the AS a bit.

First Use
Approaching the garage
Final Result!

NOTE:
To those who may have the Parkit 360, the Trax or other movers – if they are working for you – GREAT! This thread is not intended to “put down” other movers, but rather to gather knowledge and discuss the Airtug.

I have cross-posted this on airforums.com as well:

http://www.airforums.com/forums/f238/airtug-trailer-tug-198908.html

Also check out my Airstream Links for other items we have purchased and find very useful for the Airstream!!!

Airstream Links

Quest for the Holy Grill

We now have over 10k miles on our 2018 Airstream. Up to this point we have used it mainly for traveling, visiting friends, family and working from the road. The camping we have done has been very short trips and we cooked inside.

We knew at some point we would want a grill. My requirements were to keep it as simple as possible:

  1. Small and simple to carry around and store
  2. Should have a built in table or available table
  3. Run on propane and be convertible to use our low pressure propane port on the AS.
  4. Trusted brand

We looked at the Weber grills and the Airstream branded grill. It comes out of the box with the ability to use the AS propane port. It is small and easy to deal with. However it does not come with a table. They are available but are extra. Grill cost is $269.

Airstream branded Weber Q

Then I found a Stok grill that came with its own table that it collapsed onto for storage. Nice! You could also replace part of the grill surface with over available grilling surfaces, like a flat surface, veggie basket, etc. However, I had never heard of Stok nor had I been able to find a way to convert it to use the low pressure propane port. Cost is $189 at Home Depot.

https://www.homedepot.com/p/STOK-Gridiron-348-sq-in-Single-Burner-Portable-Propane-Gas-Grill-in-Black-with-Insert-Compatibility-STG1150HD/206467951

Then it hit me. My father had a grill a while back, a Coleman Roadtrip. It met all the requirements, small, built in table with wheels, trusted brand, but I did not know if it could be converted to use the low pressure propane port.

A little web search later (use DuckDuckGo NOT Google, but that is another post) and I found a purpose made connector!

Sturgi-Safe Low Pressure Quick Disconnect – $18

https://amzn.to/2JP6WNk

So we went and found a Coleman Roadtrip X-Cursion grill. It looked the same as the on my Dad had. Should work. Not!

Coleman changed the propane connector on the X-Cursion grill. It has a built in propane regulator and the LGB (little green bottle) connects on the front and would not work with the Sturgi-Safe connector. So I took the grill back.

I needed to find a RoadTrip LXE and resorted to the 80’s method, thus the quest. I actually used a telephone and called around to those stores I thought would possibly have them and didn’t do online stock queries. I found 5 of them at the Dick’s Sporting Goods store at Tucson Mall of all places. I guess the LXE is the “old” style and it was on sale for $179. Score!

Here is an Amazon link to the LXE grill so you can see what we needed up with.

https://amzn.to/2LroWkd

So with the Sturgi-Safe and the Roadtrip LXE we have found a grill that meets all the requirements and with the local purchase also happened to be the least expensive. We will be able to use it with the Airstream and the little green bottles of propane, as the Sturgi-Safe is simple to remove and basically just replaces the Coleman connector to the grill for the LGB’s.

We will update this post over the weekend with pictures of it in action!

Sorry, could not resist with the title…