I recently got an iPod Touch 16GB 2G/G2. It is a fantastic device. You can do so much from the palm of your hand. Unfortunately, the first time I took it out on the road it shut itself off 30 seconds into playing music. I could reset it (DFU mode I think it's called?) but it kept happening. I tried restoring, removing all apps, switching off WIFI, and everything else I could think of, but nothing fixed the seemingly random shut-off behaviour.
Finally I went to the Apple Store Genius Bar and explained it to them. They couldn't reproduce the issue but they kindly provided me with a brand new iPod. [Clue: they tested it OUT of the case.] Kudos to Apple. So I got home, charged it for 3 hours as recommended, put it BACK in the case and started to listen to music. It shut off right on cue! OK, I thought, it's just a coincidence. I reset it and started playing music again. This time it worked all the way to work on the bus and then shut down when I put it in my pocket to walk up to work. I had had a suspicion that something to do with shutting the (magnetic) case lid was to blame but had never properly tested it. So I removed the iPod Touch from the case and put it in my pocket just like that. The music kept playing all the way on the rest of my walk to work. Now we're getting somewhere!
Very frustrating! I googled for the problem (why didn't I think of this before? Who knows!) and found somone on MacRumors who had the exact same problem! And furthermore, they had a case with a magnet for keeping the lid shut. I got one of these Cygnett cases when I bought the device and had it in there the whole time. This morning I have been testing the device with the case FAR, far away and no problems at all. I will keep testing when I walk home tonight, but I feel that it is solved. It's a shame as the case is quite nice, although now that I think about it, the fit is not great and typing on the keyboard at the edge of the screen is irritating.
Next step: buy a nice NON-MAGNETIC ipod touch case and screen protector from Amazon. Or maybe i'll get one of these leather folio ipod cases
with a clip instead of a magnet.
Moral of the Story: do not buy an iPod Touch case containing a magnet!
iPod Touch and Case Magnets Do Not Mix!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Thursday, April 23, 2009 0 comments
Labels: ipod touch, ipod touch 2g, ipod touch freeze, ipod touch magnet case, ipod touch magnet case problem, ipod touch problem
How to install Google Chrome version 2.0
1. Download Google Chrome if you don't have it - http://www.google.com/chrome/ and install it.
2. Download the Google Chrome Channel Changer - http://dev.chromium.org/getting-involved/dev-channel from the Chromium Dev site.
3. Run the Channel Changed and select Dev.
4. Open Chrome, click on the little spanner icon and choose About Google Chrome. You will see a button in the bottom left saying Update. Click it.
5. Restart Chrome - now you have the latest Dev version - 2.0!
6. To check that it's working - hit F11 - you will have a frameless browser window!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Thursday, March 19, 2009 0 comments
Labels: google browser, google chrome, google chrome 2.0, google chrome dev
How to get a list of directory sizes in Linux
In Windows, when I need a list of directories, showing their size, I use Total Commander. In the shell on Linux how do we do this?
Say you need a list of all the home directories and the total size of each.
Do the following:
cd /home
du -sck * | sort +0nr
du is the utility for showing file sizes
-s means summarise - so don't show the subdirectories - just show the total size of each directory
-c means give a grand total
-k means show the numbers as counts of kilobytes, so for example, a 186MB directory, will show up as 186000
* means show everything
We then pipe to the sort utility, which sorts the directory list by size.
Remove r to list in ascending order.
If you want to see the sizes in MB, the command is:
du -sc --block-size=M * | sort +0nr
Finally, if you don't want to see some directories, you can exclude them by name or pattern:
Exclude directory called 'dir1': du -sck --exclude=dir1 * | sort +0nr
Exclude directories with names that start with 'abc': du -sck --exclude=abc* * | sort +0nr
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Saturday, February 14, 2009 0 comments
Labels: directory size, linux, linux commands, shell
My escape key doesn't work in Vista!
Do you have Photoshop CSx open?
Yes?
Close it!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Thursday, January 29, 2009 1 comments
Labels: photoshop, windows, windows vista
When Gmail insists on switching to the low bandwidth version
Today, for some reason, gmail all of a sudden insisted on using the low bandwidth version of the app because it said my browser (Firefox 3) was not supported. This was happening on Google Apps Mail and regular Gmail.
I found that changing the language setting to English US did not help.
What did help is using this URL:
Regular Gmail
https://mail.google.com/mail/?nocheckbrowser#inbox
Google Apps
https://mail.google.com/a/yourdomain.com/?nocheckbrowser#inbox
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Monday, January 19, 2009 0 comments
Labels: gmail, gmail error, nocheckbrowser
How to delete files in Windows Vista
Sometimes it can seem impossible to delete a file/directory in Vista.
This is because of the way security is implemented.
The easiest way to get around this is to first make your account the owner of the file/directory in question. It will help if you have an Administrator account.
You can do this in the Windows file/folder properties but this is quite confusing, so try it in the command line.
Click on the start menu, and type cmd in the Search Box, then hit Enter.
In the command prompt type:
takeown /f [path to file/directory]
The /f switch means that we're taking ownership the specified file in the path.
Now you should see a message like:
SUCCESS: The file (or folder): "[path]" now owned by user "[computer name]\[user name]".
The next step is to give yourself permission to delete the file. This is achieved with:
cacls [path] /G [your user name]:F
/G means we are granting permissions to a user.
And the F means Full Control
Now you should be allowed to delete it. So just do so with:
del [path]
That's it!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Thursday, January 08, 2009 0 comments
Labels: delete file windows vista, windows, windows vista
Using wget to accomplish great downloading feats!
Instead of using DownThemAll and then ftping, sometimes you need to leech directly to your web host.
The perfect tool for this is wget.
Here's how to use wget to download all the zip files linked to from a given web page:
wget -A.zip -e robots=off -E -H -p -Dexample.com --random-wait -r -l inf http://www.example.com/great-files.php
The command above looks for all the links to .zip files found on the page http://www.example.com/great-files.php.
You can ignore most of the options apart from -A (file type).
-D is used to tell wget not to download files from external links, so it will only download .zip files with a path on example.com
Useful tools for today's modern webmaster!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Saturday, December 20, 2008 0 comments
Labels: leeching, webmaster tips, wget
Fixing Issues With The Wordpress Super Cache Plugin
In theory WP Super Cache is an awesome plugin, and used to work great. Since about version 0.84 I started to have problems on all of my sites. Basically it got 'stuck' and stopped caching and deleting expired cache files. This caused a bunch of cached files to remain cached indefinitely! Not great when showing live auction results.
Today I found a solution which seems to work from Quick Online Tips. It involves manually deleting the cache contents and the plugin, and then deactivating and reactivating it. Only takes a minute per blog, and seems to have fixed my issues so far!
Receive posts as soon as they are written:
Subscribe in a reader
Posted by randomtech at Monday, December 15, 2008 0 comments
Labels: wordpress, wordpress plugin, wp super cache
Labels
- google chrome (5)
- microsoft (5)
- google (4)
- google browser (4)
- windows (4)
- wordpress (3)
- .net (2)
- css (2)
- database (2)
- development (2)
- firefox (2)
- gmail (2)
- mysql (2)
- rss (2)
- seo tips (2)
- wget (2)
- windows vista (2)
- .net 3.5 (1)
- 404 (1)
- JungleDisk (1)
- access (1)
- addons (1)
- adp (1)
- adsense (1)
- adtoll (1)
- adwords (1)
- amazon (1)
- asp.net (1)
- back links (1)
- backlinks (1)
- bacula (1)
- blogging (1)
- box (1)
- browser exploits (1)
- category rss (1)
- cell phone (1)
- cell phone comparison (1)
- cheap cell phones (1)
- chrome (1)
- chrome.manifest (1)
- cloud (1)
- code (1)
- color chart (1)
- colour chart (1)
- conditional formatting (1)
- copy (1)
- corrupt (1)
- cross-reference (1)
- debian (1)
- delete file windows vista (1)
- directory size (1)
- div (1)
- dotnet (1)
- dreamhost coupon (1)
- dreamhost promo (1)
- dreamhost promo code (1)
- duplicate content (1)
- error (1)
- excel (1)
- exception (1)
- firefox 3 rc1 (1)
- firefox 3.1 (1)
- firewall (1)
- firewall script (1)
- fix (1)
- get all wordpress images (1)
- gmail 2.0 (1)
- gmail error (1)
- google chrome 2.0 (1)
- google chrome dev (1)
- google chrome exploit (1)
- google docs (1)
- google reader (1)
- google reader tags (1)
- gtdinbox (1)
- hex color (1)
- hex colour (1)
- htaccess (1)
- html (1)
- iis6 (1)
- installation (1)
- internet explorer (1)
- ipod touch (1)
- ipod touch 2g (1)
- ipod touch freeze (1)
- ipod touch magnet case (1)
- ipod touch magnet case problem (1)
- ipod touch problem (1)
- itunes (1)
- javascript (1)
- joomla (1)
- latex (1)
- leeching (1)
- link checker (1)
- linkbacks (1)
- linux (1)
- linux commands (1)
- making money online (1)
- mega cheap phones (1)
- microsoft excel (1)
- microsoft word (1)
- mozy (1)
- ms word (1)
- msdtc (1)
- mssql (1)
- network issue (1)
- network path not found (1)
- network path was not found (1)
- network problem (1)
- networking (1)
- new movies (1)
- nintendo (1)
- nocheckbrowser (1)
- number (1)
- online backups (1)
- open source browser (1)
- photoshop (1)
- phpmyadmin (1)
- podcast (1)
- pr checker (1)
- productivity (1)
- recover (1)
- repair (1)
- reset joomla admin password (1)
- rewrite (1)
- seo tools (1)
- sequence (1)
- shell (1)
- spreadsheet (1)
- spreadsheet formula (1)
- sql (1)
- sql server (1)
- sqlclient (1)
- ssis (1)
- ssl (1)
- trust (1)
- videos (1)
- web dev (1)
- web security (1)
- webdev (1)
- webmail (1)
- webmaster tips (1)
- wii (1)
- windows live toolbar (1)
- windows xp (1)
- winxp (1)
- word tips (1)
- wordpress 2.7 (1)
- wordpress plugin (1)
- wp super cache (1)
