Latest Entries »

I decided since I have been reading a lot of books that I should start writing them down so I can point people to my blog when they are curious as to what books I have read.  We can start with one I did a while ago and then read the followup just recently.  Now that I am done with grad school I might actually be able to read again, especially with my Kindle it makes things so much easier.  And yes in case you are wondering a Kindle is much better than my iPad for reading, much clearer and easier on the eyes plus it works outside.  So back to the book reviews:

The first book I read on my Kindle was Daemon by Daniel Suarez.  This was an awesome book.  The author wrote it was a computer programmer for a number of years so he writes it from a very technical point of view which is great for me.  Also I felt that you didn’t need to be a techie to understand this book but it does help!  Basically the long and short of this one is that a computer gaming genius wrote this program to execute after his death.  This program reeks havoc on everything that is connected to data.  The character development is great and you really get into the story line.  The only issue I had with this book is that it had an abrupt ending, but that is when I found out that there was a sequel out there which is called Freedom that I read as well.

Freedom did a great job picking up where Daemon left off.  I did read a few books in between which made it a little difficult to keep the story line correct as if you read a lot all the books start to blend together or you forget the names.  This book along with Daemon kind of made me worry about how much of my life is online and available for this type of attack.  I really enjoyed the way this book and the series ended and would recommend this to anyone who like a high action book with a great developed plot.  Expect to be blown away with technology in this one which was great again for me!

Must Have iPad Apps

Well I have been using my company issued iPad for a while now and there are a few apps that I think are great that I want to mention:

Productivity:

  • Evernote – Great for taking notes and syncs across all my devices
  • DropBox – the only way to move files around and keep things in sync
  • FlightTracker – this little app works with Tripit and is perfect for those of us who travel a lot
  • NetNewsWire – This is a Google Reader application for reading your blogs
  • AppsFire – This is a streaming list of all the apps that are being searched for on iTunes, great for keeping up with what is cool
  • SparkRadio – The end all app for music streaming, 1,000′s of channels available at your fingertips
  • VNC Viewer – Control other computers on your network that are running VNC, very handy for your living room media center
  • Atomic Web – A web browser with a adblocker built into it
  • Kindle – So I can read my Kindle purchases.  Although I believe that a Kindle is still the better medium for reading than an iPad due to the glare and back-lighting that can cause a headache after a while
  • GoodReader – allows you to read any type of file on your iPad and can also make it easier to put files on your iPad without tethering it
  • Speedtest X HD – great for finding out how fast your internet connection really is
  • SportsTap – Gives you the scores and updates on all sporting events
  • Pandora – Great for streaming music to your iPad
  • Keynote – app for creating PowerPoint type presentations
  • Numbers – app for creating spreadsheets
  • Pages – app for creating documents

Games

  • Chopper 2 – a helicopter game that is very entertaining
  • Real Solitaire – what gadget is complete without solitaire?
  • Monkey Island – an RPG game that can destroy all your free time

For those who have had to move wordpress you probably have found it a little tedious as there is no quick way to pick it up and move to another server.  Well I have moved a bunch of sites from my development server to their respective production environments so I have the process down.  Below is a checklist of how to move from server to server.

  1. Move all the files from the WordPress directory to the main server (I find it easier to zip everything the transfer that one file and then unzip on the server)
  2. Edit the wp-config.php file in the root folder to have the correct connection information on the new server
  3. Dump the database to a file using the mysqldump command (See Post)
  4. Re-import the dumped data file to the new server using the mysql command (See Post)
  5. Log into the production server and run the following two SQL lines:
    1. update wp_posts set post_content = replace(post_content,’DEVSERVERURL‘,’PRODSERVERURL‘);
    2. update wp_options set option_value = replace(option_value,’DEVSERVERURL‘,’PRODSERVERURL‘);
  6. Log into WordPress Admin and double check all the general settings (if you use nextgen you have to re-input everything manually)
  7. Turn off your Dev server (This one is key so you know that you can see if you have any image or anything references pointed back to your old server)

Add iFrame to WordPress

Wow I finally figured out how to get an iframe into a wordpress post:

First edit your functions.php file for your theme and add this code snippet:

function field_func($atts) {
   global $post;
   $name = $atts['name'];
   if (empty($name)) return;
   return get_post_meta($post->ID, $name, true);
}
add_shortcode('field', 'field_func');

Then when writing your post put a custom field in with the title of iframe and for the value put the whole iframe code! This will save me tons of headaches

iTunes Backup Disable

Alright with my new iPad there are some syncing issues with iTunes.  It likes to pull a full backup of your device which can make syncing take hours!  This simple little app allows you to turn it on and off for iTunes.  Works great! Also saves me a ton of time.

Backoff

Every try to delete a windows folder only to find out that its path is too long and Windows NTFS doesn’t understand how to delete it?  Well I just had this happen to me as I was unzipping the latest backup of my site to test some stuff out.  What I ended up doing was opening a command prompt window and going to the parent directory and then typing:

rmdir /s “really long folder path name”

This will securely delete all sub folders and files and delete the directories regardless of what ISO standards you make have broken with how long the path ends up getting.  I was afraid I was going to have to jump to Linux and use that to delete the folder but this was much easier

I have spent many hours dealing with this on my own so I figured I would write down the solution so I wouldn’t have to research everything again.  If you are running a 64 bit system and need to use *.MDB drivers you need to make sure the following is set:

run: “regsvr32 odbcconf.dll” from c:\windows\Syswow64\

Edit ODBC using: C:\WINDOWS\SysWOW64\odbcad32.exe

That will save you many hours of frustration with x64 systems

PicPick Image Capture Software

Will with our new work laptops running 64-bit software sometimes the old 32-bit software doesn’t work as expected.  In this case it was effecting my screen capture program I typically use, Faststone.  So this is another alternative that works just as well (some features are actually better) This is also free software to use and download

PicPick Website

PicPick 2.2.1 Download

Install Linux on Bootable USB

I needed a way to install Linux quickly and easily on a USB drive and make it bootable.  I found this software which makes it really easy you just choose the distro, pick what drive you want to install it into and let it rip.  This makes testing Linux even easier then using live CD’s.  You can also choose which distro you would like to install or you can choose your own ISO image to install.

Website

Download here

Ever needed to connect to a computer for a second to show something really quick but were having trouble walking anyone in your family through the screens.  I typically use VNC to connect and manage the computer but the biggest problem with VNC is that you need to go to the router tables and bounce the correct ports to the correct computer.  If you know anyone i my family that is almost impossible to explain.  That is where this tool comes in handy.

This is great you just have them go to the ShowMyPC website click the first file to download, have them open the file accept any firewall changes and have them share out the PC.  Then take the password and put it into your copy as view remote PC and you are in.  It is not the fastest or prettiest connection to remote machine but easy to get going and gets a long discussion over quickly.  And it is free.  I have also attached the file to this post.

ShowMyPC Download