Powered by Squarespace

Get yourself extra space on Dropbox

 

Entries in Windows (5)

Friday
May112012

Send to Kindle

Send To KindleI have just installed this application on both my Mac and my Windows laptop.  It's a great way to get your own documents etc onto your kindle device, or in my case the kindle application on the iPad.

It's incredibly simple to use, on the windows side you just select your file or files, then right click and select "Send to Kindle".  You also can use the print dialog box, all you need to so is select the printer "Send to Kindle"

On the Mac version you can open the applications and drag your files into it or just drag the files to the dock icon.  Also on the Mac side you have the option to use select the printer "Send to Kindle" from the print dialog box.

So now you can store your documents in evernote and/or you can keep them on your kindle, you can just scan to pdf and send it away.

You can download the application from the following link from Amazon : Send-to-Kindle.

Mac Application - Send To Kindle

I am always interested in your thoughts so if you have any comments or feedback then please feel free to add any comments, or you can mail me  here

Friday
Dec092011

Windows Phone 7.5 Mango review 

Previously I added a link to a friend and fellow blogger who had described his top applications for windows phone 7, if you have not read that yet, then I suggest you head over and read that here.

Well now he has posted an excellent review of Windows Phone 7.5 Mango.  You can read the full review here : http://jonchoo.blogspot.com/2011/12/windows-phone-75-mango-review.html.

I am always interested in your thoughts so if you have any comments or feedback then please feel free to add any comments, or you can mail me  here.

 

Friday
Nov252011

Top applications for Windows Phone 7

Up until now I have not had a good go of a device running Windows Phone 7, so I can't give a good opinion on the OS or the handsets the OS is running on.

However a friend and fellow blogger has put together a list of his top 10 apps available for the OS, so head over to his site to see what applications he recommends.

http://jonchoo.blogspot.com/2011/11/my-top-10-apps-for-windows-phone-7.html

I am always interested in your thoughts so if you have any comments or feedback then please feel free to add any comments, or you can mail me  here. 

Tuesday
Oct182011

Windows logoff script (logoff.bat)

This is just a quick post to let you see a simple batch script I have written that I run everytime I log out of my work PC.  It's very simple, just cleans up a few things, the script is fully documented, but if anything isn't clear then please feel free to ask.

There a python script that is called, this is a new addition which goes through and compresses all of my putty session logs, I have a seperate log for each of my PuTTY server connections, depending on what I am doing they can grow quite large, so the script compresses and date stamps them.  I can post the python script if you would like to see it.

You can download the batch file here.

 

@echo off
REM The above command turns off the output for the script
REM Name : logoff.bat
REM Author : Craig Richards
REM Created : 15th-April-2011
REM Version : 1.2
REM Modified : 1.1 - Changed hard coded path from C:\Documents and Settings\my name to %USERPROFILE%
REM : 1.1 - Changed the hard coded path for drive to %HOMEDRIVE%
REM : 1.2 - Added the section to call my python script to compress my puttylogs when I log off the machine
REM Instructions : From the command line, just type logoff.bat, or double click on the file in windows explorer
REM Clear all Temporary Internet Files
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
REM Clear IE History
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
REM Remove all files from %TEMP% - You can get a copy of sdelete here http://technet.microsoft.com/en-us/sysinternals/bb897443
sdelete -s %TEMP%/*.*
REM Remove list of Recently opened documents - You can get a copy of sdelete here http://technet.microsoft.com/en-us/sysinternals/bb897443
sdelete "%USERPROFILE%\Recent\*.*"
REM Compress the days puttylogs - 1.2 
python puttylogs.py
REM Log the date/time 
echo %DATE% %TIME% >> %HOMEDRIVE%\logoff.txt
REM Log off my machine
shutdown -l -f 

 

As always I am always interested in your thoughts so if you have any comments or feedback then please feel free to add any comments, or you can mail me  here. 

Wednesday
Jul132011

My Backup Plan

This is the backup plan I use currently to backup both my Mac and Windows machines....

Click to read more ...