Categories
Fixing Stuff Samuel Technology

Fixing Nest Thermostate In 20 Degree Weather

We woke up today with a nest thermostat was showing “dead battery”. After some googling around we realized we could take it off the wall and plug it into a USB cable to charge it. So we did that and 10 minutes later it was showing the message “connect to base”. So we put it back on and still no luck, it showed wiring error E74. After some more searching around we came across a nest support page that explained when the weather gets cold there is sometimes a safty shut off switch on your AC that activates preventing the nest from getting power. The solution is to simply unplug the Y1 power and plug the nest back into the base. The Unit should instantly kick on and start heating again:

Link to nest support page documenting how to remove the Y1 wire: https://nest.com/support/article/Troubleshooting-Nest-Thermostat-power-errors-when-it-gets-cold-outside

If you keep running into this issue, you can change the ground wire into a commmon wire buy following the instructions on this video: https://www.youtube.com/watch?v=R039DH7HASg

Categories
Samuel Technology

Backing up P90x3 into ISO disk image files

We just bought the new P90X3 DVD’s and so far they are very solid. Like I’ve done with the past P90’s I wanted to burn these to ISO files for safe keeping, and also its just much easier to mount them virtually on any computer in my house and run them without the disks. These CD’s had a little bit different encryption on them, so just wanted to post a note about converting them to ISO files.

First, what programs will not work to convert them:

PowerISO
CloneDVD
Handbrake

Program that did work:
WinX DVD Ripper Platinum: (http://www.winxdvd.com/dvd-ripper-platinum/)

Notes about saving:

1.) You can save the image files without all of the intro content, so that it will auto start right at the beginning of each workout. To do this you just have to open up the CD’s, watch all the way through till where you select the workout, and take note of the track title. (Most of the CD’s start on track title 4 or 5). When you are looking in Winx DVD you can also take note of the time, since the workouts are all exactly 30 mins you can find the titles that are close to 30 mins and get a good idea of the content.

You can save the files in whatever format you want, but I chose to convert them to MP4 files so that they are smaller and I can play them without having to mount them as Disk Images. In terms of a “backup” this is not really a full backup, however in terms of ease of daily use having the MP4 file is a lot easier/more useful than having the full .iso backup.

–update–
When choosing the titles to copy, look for the titles with 40:06 listed as their time. There will be 2 on each DVD, those are just the workouts without the filler ads or any other content

Categories
Fixing Stuff Samuel Technology

quick note on setting up offsite sftp backups

So this is just a quick post, essentially notes from setting up offsite backups using SFTP (formally FTP, but upgrading for security).

1.) Open a port in your rourter to all SSH connections to pass through (Wan > virtual server/port forwarding)
2.) Pick a non standard SSH port to limit your networks exposure to unwanted connection requests
3.) Connection to your local machine, in my case a Freenas machine and turn on SSH and allow tcp port forwarding (this option allows for the FTP connection to piggy back on your SSH connection, allowing the SFTP connection)
4.) If FTP connections are not turned on yet on your Freenas machine, turn those on
5.) Test your SSH connection using putty on your local network (use your ip, and port # then connect with your username/password)
6.) Test your SFTP connection using flash fxp or filezilla (again enter in your IP/hostname and proper port then user/pass)

If everything goes as follows locally, the next step is to test the connections from an external network. Again if all goes according to plan then the last step is to connect manually from the host machine you will be downloading files from.

**This last step is important. You need to do this in order to “save the keys” from the external machine. If you notice when you first made the SFTP connection through flash fxp it asked if you wanted to “save the key” for the server as it was new.

Categories
Technology

Somewhat Creepy Google account history

So I stumbled upon a setting in my Google account today that I’m almost slightly embarrassed to say I didn’t know about before.  Its the “account history” tab.  To find this tab follow the steps below:

 

1.) go to google.com

2.) find the account tab in the upper right  hand corner by clicking on your icon (you must be signed in to see this).

account

3.) scroll down on the page until you get to “account history”

account-history

From here you can see a list of a whole bunch of creepy stuff. “Your searches” is every search you perform on google (including ones on your cell phone). Places you go is everywhere you travel. If you have Google maps installed on your phone you are being tracked in this section. “Voice searches and commands” is any voice command you input into your phone…. The list goes on but the only thing that I left checked on this page “was information from your devices” so that my google contacts would still be synced from my phone.

Categories
Fixing Stuff Samuel Technology

quick way to limit wp-admin logins on wordpress

this is a really helpful little code snippet to limit logins to your wordpress site.  You put this .htaccess file in your /wp-admin/ directory:

 

# Limit logins and admin by IP
<Limit GET POST PUT>
order deny,allow
deny from all
allow from YOUR IP ADDRESS
</Limit>

Categories
Fixing Stuff Samuel Technology

Fixing Windows 8 VPN Remote Resource Discovery

I ran into an issue today where a new laptop could not connect to remote resources even after connecting through a VPN.  This laptop has windows 8, and by default windows 8 and as it turns out by default windows 8 does not look for or load resources from the VPN connected network.  There is an easy fix for this however:

 

1.) Click on the internet connection bars in the lower right hand corner of your screen (the 4 bars in the bottom task bar)

2.) Click view connection settings

3.) Click on the VPN connection you want to edit, then hit “edit”

4.) Turn on the top option “find devices and content”.

 

After you toggle “find devices and content” on then you will be able to discover any shared resources on your remote network 🙂