Memoirs Of An IT Guy

Recommended Highlights

Posted by: dv4u on: May 18, 2009

Review on Holux 6210 GPS navigator

Posted by: dv4u on: November 6, 2009

I had meant to do this review earlier but never got down to it. But I must say I’m pretty happy with the Holux 6210+ GPS navigator ( suitable for navigation by car and by foot ).

The Holux 6210+ GPS comes with a 5-inch lcd screen that is visually quite comfortable when mounted in the car. For the Singapore map, it uses the map provided by the Singapore Land Authority (SLA) which is rather accurate for navigation. It is also easily updateable from the website (which I will update later).

Besides an impressive navigation map, it also provides a micro-SD slot up to 4GB which you can use to store images, movies (WMV format) and even MP3. Note that the play-back for wmv movies is not really fantastic though.

One problem (not a major one) is that its database on Points-of-Interests are very limited for search. However, it works excellently if you are able to provide the Postal Code to the GPS Navigator.

I mainly use the GPS Navigator for navigation, so I don’t really care much about the bells and whistles offered. As far as navigation is concerned, I like the visual experience as well as the accuracy of the navigation.

holux-6210-gps-navigator_320x240

Kudos to IntelliAdmin website for this extremely useful tip.

To remove the keyboard first get to a command line

Now type:

regsvr32 /u “C:\Program Files\Common Files\Microsoft Shared\Ink\loginkey.dll”

For Tablet PC 2005

regsvr32 /u “C:\Windows\System32\loginkey.dll”

If you want it back, you can simply type this on the command line:

regsvr32 “C:\Program Files\Common Files\Microsoft Shared\Ink\loginkey.dll”

For Tablet PC 2005

regsvr32 “C:\Windows\System32\loginkey.dll”

 

Convert youtube flv movies to mp4 and other formats

Posted by: dv4u on: November 3, 2009

Youtube website contains a great wealth of useful and entertaining movies for the home and corporate consumers. However, it is not easy to download and play FLV movies directly without a FLV player installed on your desktop computer. Moreover, you may not be allowed to install such a player in your corporate computers.

One good way around this is to convert the FLV movie into another movie format like WMV or MOV. These formats are quite native to most computers running Windows or MAC OS.

There is a free online service at http://vixy.net where you can enter a youtube URL and convert to WMV or MOV formats.

Another offline commercial alternative is the Youtube Video Converter. Designed for YouTube video fans, this is a great tool for downloading and converting FLV videos from YouTube to a vast array of popular formats such as AVI, MPEG, H.264/AVC, MOV, RM, many others. The ”downloading + converting” one-step solution lets you easily download YouTube FLV videos and convert FLV videos for playback on your iPod, iPhone, Apple TV, PSP, Zune, 3GP mobile phone, and other multimedia devices.

Q-Mar The Drag Queen

Posted by: dv4u on: October 19, 2009

Very funny in local context.

Handling TCP Windows Scaling

Posted by: dv4u on: October 7, 2009

I’m backing up this useful information obtained from http://www.ecr6.ohio-state.edu/window-scaling.html 

Background
The Transmission Control Protocol (TCP) is one of the primary protocols used on the Internet. As part of its operation, it moves data in pieces called “packets.” Originally, the packet size was limited to 65536 bytes (i.e. 64K). RFC 1323 specifies mechanisms for extending the TCP protocol and includes a mechanism for handling larger sized packets with a concept known as window scaling.

The firewall which protects the local network (i.e. in the Koffolt- Fontana- MacQuigg- Watts building complex) does not support window scaling. In order to operate properly, local systems transferring files between the local network and the outside world need to disable this feature. The following details how to handle this configuration on common systems. If the operating system of the computer you’re using is not cited, you should consult your system’s documentation.

Note: So long as one end of a connection refuses to handle window scaling, neither end will try to use it. Any changes outlined here should only be applied to systems attached to the local network.
Mac OS X
You need to use an account with administrative privilege to employ these changes.

Permanent Setting
First, check to make sure you need to apply this work-around. The default setting for Mac OS X is to have window scaling (and other features related to RFC 1323) enabled. Open Applications/Utilities/Terminal.app (which may be listed in the Finder as only “Terminal”). Use the following sequence of commands to determine if further action is required:

 $ cd /etc
 $ sudo grep rfc1323 sysctl.conf

(The “$” represents the system prompt and should not be typed. The best way to enter these commands is to use copy-and-paste and omit the leading “$”.) After entering the “sudo…” command, the system will prompt you for your password, which you should supply. If the sysctl.conf file exists, it may only be readable by the root account, and using the “sudo…” command in this manner allows you to run the “grep…” command as if you were logged into the root account. We are looking for a result that looks something like this:
net.inet.tcp.rfc1323=0

If you see this, your system already has the necessary permanent setting and you can stop here. If the “sudo…” command merely returns you to the command prompt (after you enter your password), enter the following commands:
 $ sudo sh -c ‘echo “# Disable RFC 1323 options” >> sysctl.conf’
 $ sudo sh -c ‘echo “net.inet.tcp.rfc1323=0″ >> sysctl.conf’

This will append the necessary setting to the sysctl.conf file. If you encountered a “No such file or directory” message with the “sudo grep…” command, use this form of the “sudo echo…” commmand, instead:
 $ sudo sh -c ‘echo “# Disable RFC 1323 options” > sysctl.conf’
 $ sudo sh -c ‘echo “net.inet.tcp.rfc1323=0″ >> sysctl.conf’

This will create the sysctl.conf file and populate it with the necessary data.
Working Setting
If you applied any changes to the system to effect the computer’s permanent setting to control TCP window scaling, you still need to change the system’s working configuration. Often the easiest way to handle this is to merely restart the computer. If this is not convenient, though, you can use the following command to effect the change for the running system:

 $ sudo sysctl -w net.inet.tcp.rfc1323=0
Linux
The following changes need to be performed “as root.” Ideally, you should be leveraging “sudo” to handle root account access (see “sudo(8)” and “sudoers(5)”). Of course, you may also have access to the “su” command, or even direct access to the root account.

Permanent Setting
Different versions of Linux may or may not enable TCP window scaling by default. The best approach is to assume it’s enabled. The following assumes you are accessing the system “as root.” From a command line, issue the following commands:

 $ cd /etc
 $ grep tcp_window_scaling sysctl.conf

(The “$” represents the system prompt and should not be typed. The best way to enter these commands is to use copy-and-paste and omit the leading “$”.) If, after entering the “grep…” command, you merely return to the command prompt, enter the following commands:
 $ echo ‘”# Disable TCP window scaling” >> sysctl.conf’
 $ echo ‘”net.ipv4.tcp_window_scaling=0″ >> sysctl.conf’

If you encountered a “No such file or directory” message with the “grep…” command, use these commmands, instead:
 $ echo ‘”# Disable TCP window scaling” > sysctl.conf’
 $ echo ‘”net.ipv4.tcp_window_scaling=0″ >> sysctl.conf’

If the “grep…” command reports…
net.ipv4.tcp_window_scaling=0

…then the permanent kernel settings have already been completed.
Working Setting
If you changed the permanent kernel setting for TCP window scaling, you still need to change the running kernel. Often the most direct way is to merely restart the system. If this is not possible, you can use this command (running as root):

 $ sysctl -w net.ipv4.tcp_window_scaling=0

Alternatively, if you have the “proc” file system (see “proc(5)”) loaded, you can modify the running kernel with a simple “echo” command:
 $ echo 0 > /proc/sys/net/ipv4/tcp_window_scaling
Windows 2000/XP/2003
By default, TCP window scaling isn’t enabled, but may be used if the remote end (i.e. system outside the firewall in this context) requests it. To ensure TCP window scaling won’t be used, navigate to the following path in the registry on the local computer (with REGEDIT):

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters

Look to see if there’s a value named “Tcp1323Opts.” If there is, make sure the value is “even” (i.e. ends with “0″, “2″, “4″, “6″, or “8″). To make an odd value even, just modify the value to substract one (1) from it. If the “Tcp1323Opts” doesn’t exist, create it as a “REG_DWORD” value and assign it the value of zero (0).
To complete the change, you must restart the system.
Windows Vista/2008
The newer implementation of TCP/IP in Windows Vista (and Windows Server 2008) refer to TCP window scaling as “auto-tuning.” It is enabled by default. To disable it, access the command line as an administrator and enter the following command:

C:\> netsh interface tcp set global autotuninglevel=disabled

(The “C:\>” represents the system prompt and should not be typed.) To complete the change, restart the system.

Adobe Acrobat Alternative at less than half of Acrobat price

Posted by: dv4u on: September 22, 2009

Portable Document Format (PDF) had undoubtably become the de-facto portable document format used world-wide. Although there are freewares on the Internet that can do basic conversion of documents into PDF formats, most people would still rely on the traditional Adobe Acrobat software for more complex functions like PDF editing, anotations, document merging, document splitting, form creation, etc.

Unfortunately, not all of us can afford the pricey Adobe Acrobat software. A copy of standard Adobe Acrobat costs around US$299 (excluding tax).

Then comes the strongest contender – Nitro PDF® Professional.

Nitro PDF® Professional enables you to do more with PDF using powerful tools to create, convert, edit, combine, secure, annotate, form-fill, review, and save 100% industry-standard PDF files. Recipient of multiple best product awards, Nitro PDF® Professional is specifically designed for the business user and makes working with PDF faster and easier than ever before!”

Enough of the advert selling… what’s more important to me is that the Nitro PDF® Professional costs only around US$99… that is more than 50% discount for most PDF creation needs. I find it a great tool for PDF manipulation with great quality at a much more affordable price.

If you are looking for a complete PDF solution at a reasonable price, check out the Nitro PDF® Professional.

For your convenience, the features of Nitro PDF® Professional are listed below:

nitro_vs_acrobat
 Subscribe to Memoirs Of An IT Guy by Email

English phonics learning in a fun and economical way

Posted by: dv4u on: September 14, 2009

Learning English phonics need not be boring and repetitive.  The phonics programme offered by ClickN Read is fun and economical, ideal for home accounts or home schooling purposes. This programme is unique (refer to their FAQ section) because

  1. Home accounts are for a LIFE-TIME subscription for a ONE-TIME payment. You may use the programs for as many years as you desire and run each lesson as many times as needed. When a child completes a program you may delete that child and add a next child that may then complete the entire program again. (This saves you quite a bit if you have more than a child growing up through the same development stages.)
     
  2. Home Accounts are also transferable. When you are done with the programs you may transfer your subscription to anyone you wish to give it to. They can then use the program for as many years as they wish. There is NO additional charge to transfer a subscription.
     
  3. Online service means that you can access the phonics programme from any browser on any computer from anywhere where there is a computer and an internet connection. Your child can continue to learn and have fun even while you are on holiday!

The ClickN READ Phonics is a complete PreK  - Grade 3 phonics curriculum. They teach letter sounds; beginning, middle and ending letter sounds in words; word blending; sight words; spelling sight words; word families; word endings, silent E Rule; spelling silent E words; making sentences; sentence Dictation, prefixes; suffixes; story reading; letter sound review; word recognition review. ClickN READ Phonics also reinforces listening skills and teaches basic keyboarding and mouse computing skills.

From a child as young as 3 years old who can comfortably operate a mouse to adults learning to read and spell English as a second language. ClickN Read school and home customers had proven that the programs were effective not only for first time readers and spellers but with failing students and children with a wide range of learning disabilities.

Check out their website for more information or try out the free sample lessons.

Subscribe to Memoirs Of An IT Guy by Email

Customized friendship wristbands for all occasions

Posted by: dv4u on: September 12, 2009

Silicone bracelets were made popular by Lance Armstrong and have since become one of the best ways to raise funds and increase awareness of cancer and many other diseases. The neat thing about silicone bracelets is that while some can be ordered already designed like the “Livestrong” bracelets, others can be customized to look and feel anyway you want. This means that you can place you company logo and or message on a custom designed silicone bracelet and can even go a step further by using your company colors on the bracelets.

customized silicone wristbands with messages

customized silicone wristbands with messages

In the past people have used rubber bracelets also known as silicone wristbands for fundraising, awareness campaigns, military support, promoting values, sports teams, school activities and trips, businesses, and social clubs.

Silicone wristbands are a fun, easy and profitable way to raise money in a short period of time. People have tried car washes, bake sales, cookies sales, lemonade sales, and just about anything else you can imagine when it comes to fundraising strategies. However, people get tired of the above, once they realize the amount of hard work needed and the small ROI.

It’s been clear for many years that there was a need for a new and unique idea when it came to raising money for events and charities. And it was and has been the reason for the great success of silicone wristbands.

Unlike car washes, bake sales, cookies sales and lemonade sales there is no need to get your hands dirty with silicone wristbands. The ordering process is as simple as one would expect when ordering from a major company like Wristbands with a Message.

It’s quick, easy and fast and for a small fee you can have the production part of your wristbands completed in 24 hours.

No matter if you are raising money for a charity or a football team, silicone wristbands has become the easiest, best and fastest way to raise those funds. They have been used for just about any purpose you can imagine.

Rubber bracelets are available in many colors, can be embossed, debossed, screen printed and color filled. The most popular is the debossed bracelet. This bracelet usually comes in a single color. There are other styles such as glow-in-the-dark, fluorescent, marble, and swirled colors. No matter which rubber bracelets you choose they are all made of 100% silicon.

Glow-in-the-dark bracelets are usually preferred by children and teenagers. This bracelet is ideal for special events such as school dances, block parties, and any kind of event that gathers young People. These bracelets are perfect to be used in the dark of a party.

Some bracelets display two or more colors mixed into the rubber band. They are called swirl wristbands. They are great for introducing a new product or promoting an awareness campaign.

There is also a green camouflaged bracelet that is designed to support the American troops in Afghanistan and Iraq. This Bracelet is very popular among families and friends of the army. Profits taken from the sales of these wristbands are normally used to support the US troops.

Get started by designing your own customized wristband today.

Subscribe to Memoirs Of An IT Guy by Email

Speeding :

Exceeding 01 – 20km/h = $130 Fine + 4 Demerit Points.

Exceeding 21 – 30km/h = $150 Fine + 6 Demerit Points.

Exceeding 31 – 40km/h = $180 Fine + 8 Demerit Points.

Exceeding 41 – 50km/h = more than $200 Fine + 12 Demerit Points + Court

Exceeding 51 – 60km/h = more than $200 Fine + 18 Demerit Points + Court

Exceeding More Than 61km/h = more than $200 Fine + 24 Demerit Points + Court.

Driving Offences :

Failing to Put On Seat Belt = $120 Fine + 3 Demerit points

Crossing Double White Lines = $130 Fine + 4 Demerit Points

Careless Driving = $150 Fine + 6 Demerit Points

Inconsiderate Driving! = $170 Fine + 9 Demerit Points + Court

Dangerous Driving = more than $200 Fine + 24 Demerit Points + Court + Vehicle Compounded

Illegal Racing = more than $200 Fine + Vehicle Confiscate + Court

Mobile Phones :

Phone/Text and Drive = $200 Fine + 12 Demerit Points + Phone Confiscated

You cannot hold your phone in your hand when you drive, even with loud speaker and/or ear piece

Drink Driving :

For First Offence = Up to $5,000 Fine and/or Jail Term + License Suspended + CourtFor Second Offence = Jail Term + Fine + License Su spended + Court

Other Offences :

Fail to signal when changing lanes = $70 Fine

Making! an illegal U-Turn when no U-Turn sign = $70 Fine

Driving after 7pm without headlights or taillights = $30 Fine

No number plate = $70 Fine

Obstructed or obscured number plate = $70 Fine

Number plate of unapproved type = $70 Fine.

Court Cases :

If you want to be a hero and fight the court case yourself, and you lose, you pay the court charges yourself, which will add to your fine.

Court charges are at least $200 and above.

Demerit Point System :

Let’s say you have 0 points on 1st January 2009, and you committed the offence of ‘Failing to Put On Seat Belt’.

So now, you will have 3 demerit points and this will last for one Year.

If during this one year you have no demerit point offences at all, your 3 demerit points will be gone on 1/1/2010.

But, if during this one year, from 1/1/2009 to 1/1/2010, you commit another offence with demerit points, your very first offence will be extended for another year until 1/1/2011.

singapore-traffic-police-hotspots

Unlock your iPods maximum potential

Posted by: dv4u on: September 1, 2009

Did you know that it was impossible to move all your music from your iPod™ back to your PC. Impossible to copy anyone’s iPod. Impossible to stop iTunes from deleting your valuable music collection. Do it all and more starting now with Podmaxx™.
By combining iTunes and the power of Podmaxx, you’ll unlock your iPods™ maximum potential
  • Copy music from any iPod
  • Copy any DVD movies to your iPod
  • Create free ring tones from any mp3 or CD
Do check out this cool software Podmaxx™ and unlock the maximum potential of your iPods.

  • alwayslovely: dv4u: Thanks for the review! I'm currently looking for a really simple handphone for my dad. This phone fits the requirements just that he commented
  • Online Stock Trading: There's good info here. I did a search on the topic and found most people will agree with your blog. Keep up the good work mate!
  • JimmyBean: I don't know If I said it already but ...Great site...keep up the good work. :) I read a lot of blogs on a daily basis and for the most part, people l

Bookmark and Share This Blog

Bookmark and Share

Categories

Archives