- Subscribe to unblock-us.com and following instructions described here: http://support.unblock-us.com/customer/portal/articles/291573
- Power off the WD TV Live using the remote power button (red). Wait 10 secs and power back on again.
- Go to the Setup screen
- Select system->Reset Location, a U.S. based timezone should be selected automatically if unblock-us is setup correctly.
- Once the location has been reset correctly, you can adjust the timezone setting to match your location.
- Go to Services
- Confirm that you have HuluPlus, Netflix etc.
Android – How to send callers directly to voicemail
For the last week or so I have been receiving annoying telemarketing calls. Today a found a real simple way to automatically re-direct these annoying calls to voicemail.
The following steps describe how to set this up in Android 4.1.2 (Jelly Bean).
Script To Clear Event Logs
Awesome script to clear all of your Windows 7 event logs. Wish I remembered where I sourced it from to give them credit.
@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo Event Logs have been cleared! ^
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
echo You must run this script as an Administrator!
echo ^
pause>NUL
TextPad and Excel Slow To Open Files
I recently discovered an issue on my Windows 7 x64 system where double clicking text files (associated with TextPad) and Excel files (associated with Excel) took over 30 seconds to open the file.
A few forums on the Web suggested that the problem was that a program on my system may be blocking DDE messaging. In my case it turned out that Acronis TrueImage 2012 was the issue.
After uninstalling this bad boy I found that my file open timings returned to normal.
Forex News Feed
For those of you that are interested, I just completed and deployed a new Twitter based news feed service that tweets Forex / Currency related news.
To check it out simply follow Circle8FX
Wife’s Store
Some Google love for my wife’s EBay store: www.recircle8.com/
IP4 Internet addresses run out today!
New BlackDog Service
I thought I’d mention a new product that we’ve been working on in our spare time. It is a service that allows iphone and android developers to keep data on the phones in sync with a master database.
It is very easy to use, is free to use, and is hosted on the BlackDog Foundry. The basic gist is that you log on to the BlackDog website and save the baseline data for your database. You then link in some iphone or android libraries on the device, and make a simple one-line call that will fetch new or changed records. It handles both incremental and full replications.
Check out our latest sqlite replication blog post for an example of how to use it.
BTW, the service also has preliminary support for Push Notifications.
HowTo: Boot Your Mac Into 64-bit Mode
For those of you that are running the new version of MacOS – Snow Leopard, it may come as a surprise that by default, the kernal boots into 32-bit mode. However, you can change the OS to boot the kernal into 64-bit mode by running the following:
1. Run:
ioreg -l -p IODeviceTree | awk -F'"' '/firmware-abi/{print $4}'
and make sure it returns EFI64
2. If the above command returns EFI64 then edit the following file:
sudo vi /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
and replace the contents with:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Kernel</key>
<string>mach_kernel</string>
<key>Kernel Flags</key>
<string>arch=x86_64</string>
</dict>
</plist>
3. Save and reboot
HowTo: Change Account Order in Thunderbird
To change the order of the accounts in Thunderbird:
- Shutdown Thunderbird
- Edit ~/.thunderbird/
/prefs.js in GNU/Linux, C:\Documents and Settings\\Application Data\Thunderbird\Profiles\****.default\prefs.js in Microsoft Windows XP, and C:\Users\\App Data\Roaming\Thunderbird\Profiles\****.default\prefs.js in Microsoft Windows Vista and 7. - Edit those the following 2 lines to change the order of the accounts. The default account is always first one.
user_pref("mail.accountmanager.accounts", "account5,account3,account2"); user_pref("mail.accountmanager.defaultaccount", "account5");