Forex News Feed

April 25th, 2012 No comments

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

Categories: forex, fx Tags: , ,

Wife’s Store

March 23rd, 2011 No comments

Some Google love for my wife’s EBay store: www.recircle8.com/

Categories: books Tags:

IP4 Internet addresses run out today!

February 1st, 2011 No comments

Categories: General Tags:

New BlackDog Service

July 18th, 2010 No comments

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.

Categories: Android, iPhone Tags: , , ,

HowTo: Boot Your Mac Into 64-bit Mode

January 22nd, 2010 No comments

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

Citation

Categories: Apple, Mac Tags:

HowTo: Change Account Order in Thunderbird

January 4th, 2010 No comments

To change the order of the accounts in Thunderbird:

  1. Shutdown Thunderbird
  2. 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.
  3. 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");

Categories: Thunderbird Tags:

Xbox 360 – HDMI Audio Problems

December 21st, 2009 No comments

I had an issue the first time I turned on my new Xbox 360 where I was unable to get audio working via HDMI. After many hours of experimentation I discovered that if you go into the Display settings there is an option called “Display Discovery” which is turned on by default. If you’re running your Xbox through an Audio Receiver or similar device it appears that the auto discovery mechanism built in to the Xbox occasionally results in Xbox being set to “DVI Mode” i.e. video only.

The way to resolve this problem is to just turn”Display Discovery” off and restart the Xbox.

Categories: Xbox360 Tags: , , ,

Window 7 – No Internet Access

November 17th, 2009 No comments

For the last few days I have occasionally encountered the problem whereby my local network access worked fine. However, my Internet access was “unavailable”.

In my case, the problem was due to a race condition between the Apple Bonjour service and the DHCP lookup. The easy way to check if you have the same problem is to start a Windows command and run:

C:\>ipconfig

If your Default Gateway has a 0.0.0.0 listed then the is a fair chance that you may have the same problem e.g.

Ethernet adapter Local Area Connection:

   Connection-specific DNS Suffix  . : domain.local
   IPv4 Address. . . . . . . . . . . : 192.168.0.166
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 0.0.0.0
                                       192.168.0.1

The solution is to change the Bonjour service “Startup type” from Automatic to Automatic (Delayed Start)

Categories: Windows 7 Tags:

Windows 7 – The Peer Name Resolution Protocol

November 17th, 2009 No comments

After many ours of googling I finally found the solution to the problem where the “The Peer Name Resolution Protocol” service fails to start. The error displayed in the Windows event viewer is:

The Peer Name Resolution Protocol cloud did not start because the creation of the default identity failed with error code
: 0x80630801

The solution is to delete a corrupt file:

C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\PeerNetworking\idstore.sst

Solution Reference

Categories: Windows 7 Tags:

HowTo: Flash Erase a Dreambox using Telnet

October 16th, 2009 No comments

Should you ever need to flash erase your Dreambox from the command prompt:

  1. Telnet into your Dreambox
  2. If you have a DM500, DM56xx or DM7000….issue the following command:
  3. eraseall /dev/mtd/1 && reboot
  4. If you have a DM600-PVR, DM500+ or DM7020…issue the following command:
  5. rm -R /etc/enigma && killall -9 enigma
Categories: Dreambox Tags: