by Dean | Jul 16, 2016 | Crazy Idea, General IT, IT, Linux, monitoring, Tutorial
It has been a while since I have posted anything. So I thought I would go through the setup of my Solar monitoring. When I got my solar system I noticed that the Inverter had a RS232 connector on it. While it was being installed I was talking with the installers about...
by Dean | Aug 2, 2014 | Backup, Common Sense, General IT, IT, Linux, MySQL, Programming
So now that I have all of the systems setup and running for my websites, I needed a way to back up the data on a regular basis. There are of course many backup applications that you could use but I wanted something easy and cheap. I hunted around the internet for a...
by Dean | Jan 22, 2014 | Crazy Idea, IT
The following can be used in a batch script to check if a system is 64Bit or 32Bit. @echo off :START REM SYSTEM Check IF EXIST %WINDIR%\SysWOW64\NUL GOTO :64BIT goto :32BIT :64BIT REM Run 64bit command goto :END :32BIT REM Run 32bit command goto :END :END Just add the...