enrii.blog

A passionate programmer’s findings in the world of internet.

Archive for July, 2008

Restore My Bluetooth Places Link

Saturday, July 19th, 2008

I was unable to open or explore My Bluetooth Places for a while. Every time when I try to do so, I get the following error:

The path '::{6af09ec9-b429-11d4-a1fb-0090960218cb}' does not exist or is not a directory.

A forum thread at Tech Support Guy was very helpful. If you are facing the same problem, all you have to do is to add the following key to registry:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{6af09ec9-b429-11d4-a1fb-0090960218cb}

Set the value as 'My Bluetooth Places', without the quotes. I am able to explore my bluetooth devices again.

I believe the key could have been removed by certain cleanup programs which are supposed to be doing good to your system but this is certainly a false negative.

Maxis Will Bring Apple iPhone 3G to Malaysia?

Friday, July 18th, 2008

Contrary to what I found earlier, The Malaysian Insider reported that:

Its understood that Maxis will offer the iPhone 3G in Malaysia at a competitive price below RM1,000.

It's a nice offer, since I have been using Maxis for years. Changing the plan will get me the new Apple iPhone 3G. However, The Edge Daily got a different response from Maxis:

When asked by The Edge Financial Daily in April if the telco planned to bring the iPhone here, Maxis chief executive officer Sandip Das had said Maxis had no plan at that time to bring in the phone as Apple had not decided on its Asian distribution policy.

Anyhow, Bernice certainly has a good point saying that it's not a good idea to get first generation products from Apple, especially the company is new in mobile phone business. On top of that, 3G services are still very expensive in Malaysia.

But, it is really very tempting. I'm not sure I could wait any longer once it reaches Malaysia.

Programming Brain Teaser

Wednesday, July 9th, 2008

I joined the fun to work on a programming brain teaser by Dustin Diaz (read the original post for details). The general rule is as follows:

Group together all duplicate items that occur anytime beyond twice by wrapping them with a tag, naturally "bookending" them.

Here's my solution in PHP:

$arr = array ('a', 'b', 'c', 'c', 'd', 'e', 'e',
'e', 'e', 'e', 'f', 'e', 'f', 'e',
'f', 'a', 'a', 'a', 'f', 'f', 'f');

$count = 0;
$prev = '';
foreach ($arr as $item) {
	if ($prev == $item) $count ++;
	if ($count == 2 && $prev == $item) echo '<strong>';
	if ($count >= 2 && $prev != $item) echo '</strong>';
	echo $item;
	if ($prev != $item) $count = 0;
	$prev = $item;
}
if ($count >= 2) echo '</strong>';

Give your comments, if any.

Update: After pointed out by gbyeow in the comment, I agree that it could be optimized. I was too overwhelmed by achieving the result that I forgot to optimize after I completed the code.

The optimized version:

$arr = array ('a', 'b', 'c', 'c', 'd', 'e', 'e',
'e', 'e', 'e', 'f', 'e', 'f', 'e',
'f', 'a', 'a', 'a', 'f', 'f', 'f');

$count = 0;
$prev = '';
foreach ($arr as $item) {
	if ($prev == $item) {
		$count ++;
		if ($count == 2) echo '<strong>';
	}
	if ($prev != $item) {
		if ($count >= 2) echo '</strong>';
		$count = 0;
	}
	echo $item;
	$prev = $item;
}
if ($count >= 2) echo '</strong>';

Troubleshooting Window XP c000021a Error (Blue Screen)

Sunday, July 6th, 2008

I found some problems with the built-in bluetooth device in my HP laptop. So, I reinstalled the driver. I reboot the machine after installation completed. When the computer boot up, it failed to enter Windows. It only managed to reach the Windows XP boot up screen, then it restart again itself.

After a few rounds of self reboot, I think I could put it into safe mode then use system restore to restore the system back to the time before I install the new driver.

To put a Windows XP machine into safe mode, all you have to do is to keep pressing F8 button when the computer boots up. Then you will be displayed with an "Windows Advanced Options Menu", which you need to select "Safe Mode".

Unfortunately, safe mode didn't work for me. It has the same fate as before. It reboots before it can enter Windows. The next option I tried was Last Known Good Configuration, but still no luck.

Then, I tried Disable automatic restart on system failure in the "Windows Advanced Options Menu", initiated with the same F8 way.

The Windows XP loading screen showed up. Then, I get a blue screen with the following error:

STOP: c000021a {Fatal System Error}
The Windows Logon Process system process terminated unexpectedly with a status of 0xc0000139 (0x00000000 0x00000000).
The system has been shut down.

Now, I got the error code. I start another computer to search for a solution and I found a Microsoft Knowledge Base article titled How to troubleshoot a "STOP 0xC000021A" error. I thought I found the solution, but it asked me to use a command prompt to enable Dr. Watson. Is the guide silly or I'm the one stupid? How do I do it when I can't start anything, even safe mode in command prompt failed.

Another search result points me to this thread: Blue screen after installation on Win XP. The user mentioned:

Turned out that the problem was caused by the installer overwriting msvcrt.dll in System32, causing the crash.

So, my next attempt will try to replace the file using Recovery Console. Copy the file from another computer and put it into a USB drive. Plug it into the failed computer.

Then, start Recovery Console to copy the file.

  1. Put the Windows XP setup CD into the failed machine.
  2. Start/Reboot the computer.
  3. Press any key to boot from CD.
  4. You will get yourself into Windows Setup.
  5. When the "Welcome to Setup" screen appears, press R to start the Recovery Console.
  6. Press number to select the correct Windows XP installation, then enter the administrator password.

Now, I'm in the recovery console. These are what I did:

  1. Check the date and size of the msvcrt.dll. For my case, it is different from what I can find in another computer. The correct size is at around 335KB.
  2. Backup the original DLL in C:\windows\system32.
  3. Copy the file in USB drive to c:\windows\system32\msvcrt.DLL (Note: you may need to try a few drive letters to find your USB drive.)
  4. Enter "exit" to reboot the computer.
  5. Remove the Windows XP CD and USB drive.

And... my HP laptop is working!

Did Twitter Spam Your Mobile Phone?

Wednesday, July 2nd, 2008

Yesterday I received an sms from Unidentified Sender, with the following content:

Keep your friends up to date on what you are doing with Twitter, the micro-blogging site, now on your mobile! Normal data rates apply.

http://m.twitter.com/

The message certainly looks like it really came from twitter.

I have been using twitter for a while, still trying on it. I find that the service is not reliable enough, sometimes slow, sometimes down.

Are they spamming text messages to all mobile numbers in the world? I don't receive much sms like this from US. Is everybody receiving it?

If any of you are using twitter, please let me know.