<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8167147753712254189</id><updated>2011-04-22T01:58:36.497+07:00</updated><category term='Symbian Freeware'/><category term='Cheap Laptops'/><category term='Tips'/><category term='Mobile Phones'/><category term='Free Download'/><title type='text'>" T.A.N.A.L.E.K "</title><subtitle type='html'>"It's about Computer Tips, Cheap Laptops, Freeware, Symbian Freeware, Mobile Phones"</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-964776997847761431</id><published>2009-02-01T13:20:00.000+07:00</published><updated>2009-02-01T13:20:00.300+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Setting Up a DHCP Server for your Organization</title><content type='html'>&lt;div align="justify"&gt;One of the most basic processes on a network is that of assigning IP addresses to network clients. Although there are many different types of DHCP servers that can do the job, you can configure Windows Server 2003 to act as a DHCP server. In this article, I will show you how.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Years ago, I used to be a network administrator for an organization that had some rather odd security policies in place. One of the existing policies when I got there was that all computers had to be assigned a static IP address. DHCP servers were forbidden for security reasons. The result was a maintenance nightmare. Obviously, some servers have a legitimate need for static IP addresses, but usually it is perfectly acceptable for workstations to use dynamic IP addresses. Generally speaking, using static IP addresses on workstations is only truly feasible on small networks. Unfortunately, the network that I spoke of a moment ago was anything but small. It had 25,000 workstations.&lt;br /&gt;&lt;br /&gt;This network was a logistical nightmare for several reasons. For starters, any time that a PC’s hard disk crashed, someone had to figure out which IP address had been assigned to that PC before Windows could be reloaded. You can imagine what it was like to try to figure out which of the 25,000 IP addresses was supposed to be assigned to the machine that was being rebuilt. There was no central list of addresses. Each building had their own address block to manage, and consequently, there was no standard for managing addresses. Quite frequently, someone would assign a PC an address that had already been used, resulting in an IP address conflict that forced someone else’s PC off of the network.&lt;br /&gt;&lt;br /&gt;Hopefully, this story shows you why it is a good idea to assign dynamic IP addresses to the workstations on your network. Fortunately, the process of configuring a Windows 2003 Server to act as a DHCP server is simple. Furthermore, in most cases, the DHCP services place such a small burden on the server that the DHCP services can often be run on one of your existing servers rather than you having to invest in a dedicated machine. In this article, I will show you how to install the DHCP services on a Windows 2003 Server. I will also take the opportunity to discuss some common DHCP configuration issues.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Avoiding DHCP Conflicts&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As you will see later on, the Active Directory is designed to prevent rogue DHCP servers from being placed onto your network. The idea is that you don’t want to have an unauthorized DHCP server assigning an invalid block of IP addresses to the computers on your network. However, this protective mechanism is only effective if the rogue DHCP server is running a Windows operating system and is attempting to interact with the Active Directory.&lt;br /&gt;&lt;br /&gt;Microsoft didn’t invent DHCP and DHCP servers are certainly not unique to Windows networks. In fact, it’s very possible that you might have a DHCP server on your network right now and not even know it.&lt;br /&gt;&lt;br /&gt;When most people think of a DHCP server, they tend to think of a Windows, UNIX, Linux, or perhaps a NetWare or Macintosh server that is configured to assign IP addresses to clients. While these are certainly types of DHCP servers, you would probably notice it if someone brought one of these types of servers online on your network (at least I hope you would notice it). The most common type of rogue DHCP server is a router with a built in DHCP service. For example, wireless access points are available at any electronics store for a ridiculously low price. The vast majority of wireless access points have a built in DHCP server that is enabled by default. Typically, these devices are set up to assign an address in the 192.168.x.x range to any client (wireless or wired) that requests it. The DHCP services aren’t just limited to wireless access points though. You’ve probably seen low budget routers that are designed to connect a small network to a broadband Internet connection. These devices almost always have a built in firewall and a built in DHCP server.&lt;br /&gt;&lt;br /&gt;A DHCP server can also be software based. For example, most of the Windows operating systems that have been released in the last decade offer a service called Internet Connection Sharing (ICS). The idea behind ICS is that one computer’s internet connection can be shared with other computers on the network. The ICS service implements its own mini DHCP service. Just for the record, ICS and the DHCP services that are a part of the Windows Server have trouble co-existing on a network.&lt;br /&gt;&lt;br /&gt;The biggest trick to making the DHCP services work well on your network is to make sure that the IP address range that the server is handing out does not overlap with the addresses being handed out by another DHCP server on your network. If there are other DHCP servers present, you must make sure that they are configured to assign appropriate addresses to your workstations. It’s perfectly OK to use multiple DHCP servers on your network. In fact, doing so provides you with a degree of fault tolerance. You must however make sure that each DHCP server is assigned a block of IP addresses that does not overlap with an address block managed by another DHCP server. These blocks of addresses are known as scopes.&lt;br /&gt;&lt;br /&gt;If you aren’t aware of any DHCP servers on your network, then I recommend performing a quick test prior to deploying a Windows based DHCP server just to verify the absence of DHCP servers on your network. The easiest way to confirm that no DHCP servers are presently active is to configure a workstation’s TCP/IP settings so that the workstation acquires an IP address automatically. After doing so, simply reboot the computer and see if it is assigned an IP address. You can determine whether or not an IP address has been assigned by opening a Command Prompt window and entering the IPCONFIG /ALL command.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Installing a DHCP Server&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now that I have talked about how you can avoid DHCP conflicts, let’s talk about how to install and configure a Windows Server 2003 based DHCP server. Before I get started, I should mention that the server itself must be configured to use a static IP address.&lt;br /&gt;&lt;br /&gt;Begin the process by selecting the Add / Remove Programs option in the Control Panel. When the Add / Remove Programs dialog box opens, click the Add / Remove Windows Components button. After a brief delay, Windows will open the Windows Components Wizard. Scroll through the list of available components until you find the Networking Services option. Select Networking Services and then click the Details button. You will now see a list of the various Windows network services. Select the check box next to Dynamic Host Configuration Protocol and click OK, followed by Next. Windows will now begin to copy the necessary files. During this operation, you may be prompted to insert your Windows Server installation CD. When the file copy operation completes, click Finish to close the wizard.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Configuring a DHCP Server&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The process of configuring the DHCP services is almost as simple as the installation was.  Before you begin the configuration process though, you will need to come up with at least one scope. Remember that a scope is a range of IP addresses that the DHCP server can lease to clients.&lt;br /&gt;&lt;br /&gt;Begin by opening the DHCP console. You can access the DHCP console by selecting the DHCP command from the server’s Administrative Tools menu. When the console opens, the first thing that you will want to do is to create a new scope. To do so, right click on your server and select the New Scope command from the resulting shortcut menu. This will cause Windows to launch the New Scope wizard. Click Next to bypass the wizard’s Welcome screen and you will be prompted to enter a name and a description for the scope. After doing so, click Next and you will see a screen prompting you to enter the beginning and ending addresses of the scope range. After doing so, you must also enter the subnet mask to be used by the addresses (or the number of bits to use for a subnet) before clicking next.&lt;br /&gt;&lt;br /&gt;The next screen gives you a chance to enter any necessary exclusions. Exclusions are addresses within the scope that are already in use. Entering an exclusion address prevents the DHCP server from leasing that address. Enter any exclusions that you might have and click Next. You will now be prompted to enter a lease duration. The lease duration is the length of time that a workstation can use an IP address before having to either give the address up or renew it. The default lease period is eight days, which works fine in most cases.&lt;br /&gt;&lt;br /&gt;Click Next and you will see a screen asking if you want to configure extra DHCP options. Select the Yes option and click Next. You are now given the opportunity to enter the address for a default gateway. Click Next and you are presented with a screen that allows you to enter the IP address of one or more DNS servers. Click next one more time and you will be allowed to enter the addresses of any WINS servers that may exist on your network (newer networks do not usually use WINS servers). Click Next once more and you will be asked whether or not you wish to activate the scope. Select the yes option and click Next followed by Finish.&lt;br /&gt;&lt;br /&gt;Although the newly created scope has been activated it won’t be used just yet because the DHCP server has not been authorized to issue addresses for your network. To solve this situation, right click on the server’s listing within the DHCP console and select the Authorize command from the shortcut menu. Assuming that you are logged in as a domain administrator, the server will be authorized to start servicing requests.&lt;br /&gt;Conclusion&lt;br /&gt;&lt;br /&gt;In this article, I explained that setting up a DHCP server provides you with an easy way of assigning IP addresses to workstations on your network. I then went on to show you how to install and configure a DHCP Server and how to avoid overlapping scopes.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-964776997847761431?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/964776997847761431/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=964776997847761431&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/964776997847761431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/964776997847761431'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/02/setting-up-dhcp-server-for-your.html' title='Setting Up a DHCP Server for your Organization'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-9203329080823115280</id><published>2009-01-31T11:52:00.000+07:00</published><updated>2009-01-30T13:00:41.883+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Configuring Windows Server 2003 to act as a NAT router</title><content type='html'>&lt;div align="justify"&gt;More years ago than I care to think about, IP addresses were handed out to companies on an indiscriminant basis. As the popularity of the Internet increased, IP addresses soon grew to be a scarce commodity. Internet service providers began to strictly limit the number of IP addresses that they would lease to companies. This presented an interesting challenge. A PC has to have an IP address in order to communicate with the Internet, but there weren’t enough IP addresses left for every PC to be given one. The solution to this problem was a technology called Network Address Translation (NAT). Today, NAT is alive and well, and more popular than ever. In this article, I will explain what NAT is and how you can configure Windows Server 2003 to act as a NAT router.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;What is NAT?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So what is NAT? Network Address Translation, or NAT, is a technology that uses a router to share an Internet connection among the PCs on your private network, even though those PCs do not have a valid public IP address. There are both hardware and software NAT routers. In this particular situation, we will be configuring a Windows Server 2003 machine to act as a software based NAT router.&lt;br /&gt;&lt;br /&gt;As you probably know, a router’s primary purpose is to regulate traffic flow between two networks, and a NAT router is no exception. The server that you will use as a NAT router must have two network interface cards (NICs) installed. One of these NICs will connect to the Internet and the other will connect to the private network. PCs on the private network will then send HTTP requests to the NAT server via the server’s private network connection. The server will then retransmit the request over the Internet on behalf of the client. When the requested Web site responds, the response is sent to the NAT server, which in turn forwards it to the client who made the original request. The client never communicates across the Internet directly.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;IP Addressing Considerations&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As I explained in the section above, a NAT router acts as a gateway between your private network and the Internet. The server that is acting as the NAT router must have two NICs. One of the NICs is connected to the Internet. This NIC must be assigned the IP address that was given to you by your Internet Service Provider.&lt;br /&gt;&lt;br /&gt;The other NIC connects to your private network. As I mentioned, NAT does not expect you to have valid IP addresses on your private network. Instead, you are basically free to pick an address range at random. There is the off chance that the range that you pick might already be in use by a popular Web site, but I have only seen someone pick an address range that caused problems once. If you want to use an address range that is guaranteed not to interfere with anything on the Internet, you can use the 192.168.x.x address range.&lt;br /&gt;&lt;br /&gt;After you pick an address range, I recommend setting up a DHCP server so that it will assign addresses from your chosen address range (the DHCP term for an address range is a scope) to the workstations on your network. You must however statically assign an address to the NIC on the NAT server that connects to your private network. For example, if you chose to use the address range 192.168.1.0 to 192.168.1.99, then you might consider assigning the address 192.168.1.0 to the NAT server. You could then use the 192.168.1.1 to 192.168.1.99 address block as your DHCP scope.&lt;br /&gt;&lt;br /&gt;While you are configuring your DHCP server, there are a couple of other considerations that you need to make. As you may know, DHCP allows you to optionally assign a default gateway and a DNS server to workstations along with an IP address. When doing so, you must set the default gateway address to match the private network address that you assigned to your NAT server.&lt;br /&gt;&lt;br /&gt;You have a few different options when choosing which DNS server address the DHCP server should assign to the workstations on your network. If you don’t have your own DNS server, then the best thing that you can do is to just use the IP address of your Internet service provider’s DNS server. If your network is running Active Directory though, then you already have a DNS server and you should use its address. It doesn’t matter if your DNS server is authoritative for your domain or not. Simply point the workstations to it. You can then set up a forwarder on the DNS Server so that any unresolved queries get forwarded to your ISP’s DNS server.&lt;br /&gt;&lt;br /&gt;The advantage to pointing clients to your own DNS server rather than to your ISP’s DNS server is that doing so will provide your users with better performance. Your DNS server is local, so queries reach the server more quickly than they would reach a remote server. Furthermore, your DNS server has a built in cache so that popular Web sites do not have to be resolved each time a user visits them.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Setting Up NAT&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Begin by selecting the Routing and Remote Access command from Windows’ Administrative Tools menu. When you do, Windows will display the Routing and Remote Access console. Locate your server (just below the Server Status). There should be a big red dot to the left of the server, indicating that the server is currently inactive. Now, right click on the server and select the Configure and Enable Routing and Remote Access command from the resulting shortcut menu. When you do, Windows will launch the Routing and Remote Access Server Setup Wizard.&lt;br /&gt;&lt;br /&gt;Click Next to bypass the wizard’s Welcome screen. You will now see a screen , this screen allows you to select various configurations for Routing and Remote Access (RRAS). RRAS can be configured to do just about anything that you want, but Microsoft has included several templates to make the configuration process easier for common deployment types. Select the Network Address Translation (NAT) option and click Next. &lt;br /&gt;&lt;br /&gt;The next screen that you will see is a rather important one to pay attention to. The screen gives you the choice of selecting a network interface that is connected to the external network (usually the Internet) or to select a demand dial interface. In case you are wondering, demand dial is a feature that allows Windows to establish a dial-up connection when ever external connectivity is needed. For the purpose of this article, I am assuming that you have a broadband connection to the Internet. Additionally, I am assuming that the NIC that the broadband connection comes in through has a static IP address assigned to it. You will have to select that network interface.&lt;br /&gt;&lt;br /&gt;Before you click Next, you should notice that there is a check box that allows you to enable a firewall for the connection. I recommend always selecting this option. The firewall will keep unwanted traffic out of your network. If you need to grant external users access to some service on your network, you have the option of configuring port forwarding to pass packets through the firewall to the desired network resource.&lt;br /&gt;&lt;br /&gt;After you enable the RRAS firewall, click Next and you will see a screen asking you to select the network that will have shared Internet access. Although the dialog box uses some weird wording, it is basically just asking you to select the NIC that is attached to your private network. Make your selection, and click Next, followed by Finish to complete the process.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Conclusion&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In this article, I have explained how you can use a NAT server as a way of sharing an Internet connection among the users on your network. I then went on to explain how IP addressing should be configured and how to configure RRAS to act as a NAT router.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-9203329080823115280?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/9203329080823115280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=9203329080823115280&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/9203329080823115280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/9203329080823115280'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/configuring-windows-server-2003-to-act.html' title='Configuring Windows Server 2003 to act as a NAT router'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-4253251689467590483</id><published>2009-01-30T11:45:00.002+07:00</published><updated>2009-01-30T11:49:33.903+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Protecting Your Network Against Spoofed IP Packets</title><content type='html'>&lt;div align="justify"&gt;&lt;span style="font-weight:bold;"&gt;&lt;/span&gt;&lt;br /&gt;These days, the vast majority of administrators go to great lengths to protect the files on their network. Typically, elaborate firewalls are used to keep outsiders away from file servers. The files residing on those servers often lie behind an intricate permissions scheme and are often encrypted. Complex auditing mechanisms might even monitor access to files. The point is that in this day and age, most administrators take security very seriously. What you might not realize though is that all of this security can be easily undone through the simple action of a user accessing a file through legitimate means. In this article, I will show you how this is possible and what you can do to fight back.&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Encrypted Files on the Network&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Let’s pretend for a moment that you use the Encryptable File System (EFS) to encrypt all of the files residing on a particular server. Now let’s pretend that a user with legitimate access needs to open one of those files from their workstation. When the user opens the file, security is briefly compromised. The reason for this is that the file must travel over the network. This is a problem because when a user accesses an encrypted file, the file is decrypted at the server level, not at the workstation level. This means that the file has been decrypted before it ever arrives at the user’s PC. Anyone on the network with a little bit of know-how can use a protocol analyzer to intercept the file in transit and gain access to the information contained in the file.&lt;br /&gt;&lt;br /&gt;The reason that this type of exploit works has to do with the way that networking works at the most basic level. On many types of networks, all of the computers on a network segment share a common connection medium. When a computer transmits a packet to another computer, all of the computers on the segment receive the packet. Each computer checks the packet’s destination address to see if it is the intended recipient of the packet. If the destination address doesn’t match the computer’s address, then the computer assumes that the packet is intended for someone else and ignores the packet.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Protocol Analyzers&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When a computer runs a protocol analyzer though, the protocol analyzer places the computer’s network card into promiscuous mode. This means that the computer does not ignore packets, regardless of the intended destination. The protocol analyzer then displays the contents of each packet on the screen. Every protocol analyzer is different, but most of the time protocol analyzers will allow users to filter out unwanted packets and reconstruct packet streams. The result is that a user who is running a protocol analyzer can get their own copy of a file that is being transmitted, they can read E-mail messages, and do just about anything else that they want.&lt;br /&gt;&lt;br /&gt;Obviously, the idea that a user on your network can use a protocol analyzer to snoop the contents of packets that are flowing across the network isn’t exactly a comforting thought. In reality though, the damage that a user can do with a protocol analyzer is a whole lot worse than what I have already told you about. Yes, a user who’s equipped with a protocol analyzer can steal files in transit, read E-mails, see the contents of the Web page that you are looking at and things like that, but they can also steal your online identity.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Identity Theft&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Think about it for a moment. Files, E-mail messages, and Web pages aren’t the only things that flow across the network. Authentication credentials are also transmitted across a network. Imagine for a moment that you are logging on to a FTP site. As you type your password, the password is not displayed on the screen. You see a dot or an asterisk in place of each character. As soon as you press enter though, your password is transmitted to the FTP server. If someone is watching the login process with a protocol analyzer, they won’t see your password represented as dots or as asterisks. They will see your password spelled out in plain text. &lt;br /&gt;&lt;br /&gt;OK, in all fairness, it isn’t always that easy to steal a password. A generic FTP session transmits the password in clear text, but most modern authentication mechanisms encrypt the password prior to transmission. When the server receives the password, it is decrypted and checked for accuracy. If you were to watch an encrypted password be transmitted, the protocol analyzer wouldn’t show you anything but a long string of hieroglyphics. &lt;br /&gt;&lt;br /&gt;The good news is that having the password encrypted makes it difficult, if not impossible, for someone with a protocol analyzer to steal the password. The bad news is that the user doesn’t have to steal the password. The user can steal your identity through the use of a replay attack.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Replay attack&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Here’s how it works. The person with the protocol analyzer recognizes an authentication packet, but can’t read the password contained within it because the password is encrypted. Just because the password is encrypted though, it doesn’t mean that the password isn’t there. The packet still contains a password and that password exists in a form that is perfectly acceptable to the server that authenticates the password. That being the case, the user makes a copy of the authentication packet and changes the packet’s source address to match the address of the computer that they are using. They then use the protocol analyzer to transmit the modified authentication packet to the server that handles authentication for the network. The server receives the packet and sees that it contains a valid set of authentication credentials. The server therefore assumes that the user whose identity was just stolen is logged in at the hacker’s machine. To put it simply, the hacker is logged in as the user whose identity they stole, and they never even had to figure out the victim’s password to do it.&lt;br /&gt;&lt;br /&gt;Since the hacker is impersonating a legitimate user, there is always the chance that the user whose identity was stolen could log in while the hacker is logged in as them. Sometimes, the hacker will launch a denial of service attack against the user that they are impersonating. This keeps the victim from logging on until the hacker is finished with what ever it is that they are doing.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;How do I Protect the Network?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So I guess the million dollar question is how can you protect your network against this type of attack? There are a couple of different things that you can do. The first thing that you need to do is to have a system in place to catch anyone who is using a protocol analyzer on your network. At first it might seem impossible to catch someone using a protocol analyzer since a protocol analyzer passively listens to network traffic.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;The Bait&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The key to catching someone using a protocol analyzer is to watch DNS name resolutions. You can setup a bait machine on your network. The machine doesn’t actually have to do anything other than run Windows. The catch is that you must not tell anyone of this machine’s existence. Since nobody knows that the machine exists, and the machine isn’t doing anything, then nobody should have any reason to communicate with the machine. However, because the machine is running Windows, it will send out the occasional packet. Normally, the machines on your network will be completely oblivious to this packet. However, a protocol analyzer will notice that traffic is coming from an unknown host on the network. The protocol analyzer will then perform a DNS query to try to determine the machine’s identity. Normally, nobody should have any reason to be making DNS queries regarding your bait machine, so these types of queries are almost always indicative of someone running a protocol analyzer or other hacking tool.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;IPSec&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Another way that you can defend your network against these types of attacks is to use IPSec to encrypt network traffic. I’ve already shown you how encryption can be circumvented, so you might be wondering what makes IPSec any different.&lt;br /&gt;&lt;br /&gt;The difference is that IPSec’s whole job is to secure data flowing over the network. Before a session can even be encrypted, IPSec insists on mutual authentication. What this means is that if Computer A wanted to securely transmit a packet to Computer B, IPSec would require both machines to prove their identities before it would permit the session. &lt;br /&gt;&lt;br /&gt;IPSec also takes measures to insure that packets are not tampered with in transit. Earlier I explained how the source address of a packet could be modified by a hacker. A hacker can change much more than a packet’s address though. For example, imagine that a hacker knew that Computer A was going to be sending an important E-mail message to Computer B. The hacker could run a denial of service attack against Computer B to prevent them from receiving the message. Meanwhile, the hacker intercepts the message and changes it to make it look like the guy at Computer A said something completely different than what the original message said. The hacker then ends the denial of service attack against Computer B and sends the modified packets. The result is that the person at Computer B receives a fraudulent E-Mail message that looks authentic.&lt;br /&gt;&lt;br /&gt;IPSec can protect against packet modification. IPSec calculates a check sum value based on the packet’s original contents. If the packet is modified, then the checksum value becomes invalid and IPSec knows that the packet has been tampered with.&lt;br /&gt;&lt;br /&gt;IPSec even protects against replay attacks. Each IPSec packet is assigned a sequence number. If a hacker attempts to replay an IPSec encrypted packet, then the sequence number will not fit into the current packet sequence and IPSec will know that the packets are invalid.&lt;br /&gt;&lt;br /&gt;As you can see, deploying IPSec on your network can greatly enhance your network’s security. Before you deicide to deploy IPSec though, there are a few things that you need to know. First, IPSec requires your network to have a certificate server in place. Windows Server 2003 can be configured to act as a certificate authority, but you will need a dedicated server. Technically, a dedicated server isn’t an absolute requirement for a certificate authority, but running any other services on a certificate server is an extremely bad idea from a security standpoint.&lt;br /&gt;&lt;br /&gt;Another thing that you will need to know is that IPSec does place an additional burden on your network. Extra CPU cycles are necessary to perform the encryption and decryption process, and IPSec encryption usually increases the volume of traffic that’s flowing across your network. One way of easing this additional burden though is to use IPSec enabled NIC cards. These NICs offload the encryption and decryption process from the machine’s CPU.&lt;br /&gt;&lt;br /&gt;One last thing that you need to know about IPSec is that not every operating system supports it. IPSec was first introduced in Windows 2000. Older Windows operating systems do not support IPSec.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Conclusion&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In this article, I have explained some different ways that hackers can exploit the traffic that’s flowing across your network. I then went on to explain how you can use bait machines and IPSec encryption to counter these techniques.&lt;br /&gt;About Brien M. Posey&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-4253251689467590483?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/4253251689467590483/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=4253251689467590483&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4253251689467590483'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4253251689467590483'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/protecting-your-network-against-spoofed.html' title='Protecting Your Network Against Spoofed IP Packets'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-161624916815947769</id><published>2009-01-23T10:51:00.002+07:00</published><updated>2009-01-23T10:56:43.967+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>Flip and Swivel Combo Cell Phone - Multimedia Bluetooth Dualband</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://eu.chinavasion.com/images/Chinavasion-CVSCE-7300-1-xx.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 300px;" src="http://eu.chinavasion.com/images/Chinavasion-CVSCE-7300-1-xx.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Dual Band GSM/GPRS flip and swivel combo multimedia cell phone with Bluetooth, Dual SIM, TV and FM radio as it signature features. This is a truly video friendly multimedia mobile phone with its rotating vertical and horizontal wide screen. Not only does the screen rotate, but the images/videos on the screen change from portrait to landscape mode. This is a one of a kind feature that is sure to dazzle your friends as well as your own eyes as you see the pictures automatically change with the orientation of the screen.&lt;br /&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Contained within the user friendly software interface are a bevy of multimedia features such as analog TV, FM Radio, MP3/MP4 player, digital camera, digital video recorder, image viewer, sound recorder, and Ebook reader. The phone is pre-loaded with a 1GB TF (microSD) memory card, so the phone comes out of the box ready to start taking pictures and loading up audio files. Unlike competing multimedia phones, this one is not locked into any particular network carrier, so feel free to use your unlocked cell phone with whatever carrier you prefer.&lt;br /&gt;&lt;br /&gt;This is not your grandmothers cell phone. The CVSCD-7300 not only has robust multimedia features, but also includes native dual-band GSM to keep you connected in more than 100 countries and contains a large 2000mAh capacity li-ion battery for plenty of work and play time between charges. The handy dual SIM slots allow you to keep in touch with business and personal contacts from the same phone.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;At a Glance...&lt;/span&gt;&lt;br /&gt;Flip and swivel screen multimedia cell phone.&lt;br /&gt;Dual SIM interactive mobile phone with a large selection of easy to use pre-loaded software tools.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Prices&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1 or more  for $146.25 each&lt;br /&gt;3 or more  for $140.40 each&lt;br /&gt;7 or more  for $134.55 each&lt;br /&gt;15 or more  for $132.21 each&lt;br /&gt;25 or more  for $131.63 each&lt;br /&gt;50 or more  for $128.70 each&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.chinavasion.com/product_info.php?ref=6755&amp;products_id=3571&amp;channel_id=16253"&gt;BUY NOW&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-161624916815947769?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/161624916815947769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=161624916815947769&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/161624916815947769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/161624916815947769'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/flip-and-swivel-combo-cell-phone.html' title='Flip and Swivel Combo Cell Phone - Multimedia Bluetooth Dualband'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-7394873754019411930</id><published>2009-01-22T13:10:00.002+07:00</published><updated>2009-01-22T13:16:16.704+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>Mobile Phone Watch with Back Lit Keypad Strap</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://eu.chinavasion.com/images/chinavasion-CVSL-105-1-main2.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 300px;" src="http://eu.chinavasion.com/images/chinavasion-CVSL-105-1-main2.JPG" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;Just when you thought our selection of cell phone watches couldn't get any cooler, we've out done ourselves by securing this awesome model with a back lit keypad built into the strap.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;You can simply make quick calls by dialing the number on the keypad strap, and when you need to do some more serious activity like using the organiser you can take out the handy mini stylus. All the media features you've come to expect are here too, with A2DP Bluetooth, video camera MP3 player and high resolution still camera.&lt;br /&gt;NOTE: This product is compatible with GSM at 900MHz, 1800MHz, 1900MHz only, please check with your local provider if you are unsure.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Buy More... Get Lower Prices&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;1     or more  for $166.88  each&lt;br /&gt;3     or more  for $160.20 each&lt;br /&gt;7     or more  for $153.52  each&lt;br /&gt;15   or more  for $150.85  each&lt;br /&gt;25   or more  for $150.19  each&lt;br /&gt;50   or more  for $146.85  each&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.chinavasion.com/product_info.php?ref=6755&amp;amp;products_id=3391&amp;amp;channel_id=16253"&gt;BUY NOW&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-7394873754019411930?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/7394873754019411930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=7394873754019411930&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7394873754019411930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7394873754019411930'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/mobile-phone-watch-with-back-lit-keypad.html' title='Mobile Phone Watch with Back Lit Keypad Strap'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-1814502014003762379</id><published>2009-01-21T09:51:00.002+07:00</published><updated>2009-01-22T10:00:31.084+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to repair a damaged boot sector by replacing the master boot record (MBR) in Windows XP</title><content type='html'>&lt;div align="justify"&gt;Your computer may continually restart, sometimes load the Windows logo screen, or even just have a black screen. There are a number of symptoms that occur when you have a damaged boot sector such as the master boot record.&lt;br /&gt;&lt;br /&gt;What is a boot sector of a hard drive?&lt;br /&gt;&lt;br /&gt;Your hard drive is split into small sectors and the first of these is the boot sector.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;It is the most important and is obviously accessed first when the computer first boots up. If your hard drive is not partitioned it will have a Volume Boot Record.&lt;br /&gt;&lt;br /&gt;What is the master boot record (MBR)?&lt;br /&gt;&lt;br /&gt;The Bios looks for a boot sector of your hard drive. If the hard drive has a partition it will go to the Master Boot Record. This tells BIOS about your partition table and where the operating system is that you want to boot up.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What can damage the Master Boot Record in the Boot Sector?&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Having problems when installing Operating Systems can damaged the master boot record. Stopping half way through installation is the most common cause.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Changing the Windows Registry entries.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Getting a virus that infects the MBR. Many viruses are built to attack the MBR.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;What you will need to Repair the master boot record (MBR) of a hard drive?&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;An original Full Version Windows XP. The one you used to originally put Windows on your computer. An OEM version may not have this option, it depends on the company it came from. ( Dell, Acer, HP, etc)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;You will need to know the administrator password for your Windows installation.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;How to repair the master boot record (MBR of a hard drive manually (quicker)?&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Put your original Windows XP CD into the cd drive of your computer.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Restart your computer and hopefully it will come up and say press any key to boot from the cd.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;So therefore you must press any key on your keyboard to start from the cd.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;If this does not come up you need to enter your bios and change the boot order or sequence. See How to get into Your BIOS and change settings.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;A blue screen will appear and you are on your way.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;You may need to press F8 to agree to the Windows Setup agreement.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;After that the setup options will appear (see screen shot below).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Do not press ENTER as it will start installing Windows from scratch and you will loose all of your data on your hard drive.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Press the letter R on your keyboard to enter the Recovery Console.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;When Recovery Console starts you will have to enter the number that corresponds with the installation you want to repair. For example if you have only one Windows installed on your computer then you would press the number one key. If you have two operating systems on your computer and you want to repair the second one then press 2.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Enter your Administrator password for that windows installation. You must enter an admin password here and if you do not, you cannot continue.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;At the Recovery Console command prompt, type fixmbr.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;You will be asked to confirm that you want to do this by pressing the Y key for yes.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Now your Master Boot record will be fixed.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span class="fullpost"&gt;Now if that did not work you can also repair the Boot sector by following the same steps but typing fixboot instead of fixmbr.&lt;br /&gt;&lt;br /&gt;Notes:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;For earlier versions of Windows you can type in Fdisk /mbr at the command prompt.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Before typing fixmbr or fixboot you can type chkdsk and this will check your hard drive disk for bad sectors and offer to repair them.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;A hard disk only has a MBR if it has been partitioned. If it is a new hard disk drive it will have a Volume Boot Record (VBR). When it has been partitioned it will have a MBR instead.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-1814502014003762379?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/1814502014003762379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=1814502014003762379&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/1814502014003762379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/1814502014003762379'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/your-computer-may-continually-restart.html' title='How to repair a damaged boot sector by replacing the master boot record (MBR) in Windows XP'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8499093317162051453</id><published>2009-01-20T08:24:00.001+07:00</published><updated>2009-01-20T08:31:49.832+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>Special Edition Cellphone Watch</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://usa.chinavasion.com/images/Chinavasion-CVSC-207-4-opera.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 300px;" src="http://usa.chinavasion.com/images/Chinavasion-CVSC-207-4-opera.JPG" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;p&gt;Due to popular demand for our previous cell phone watch we have been able to source a limited run of a new improved model complete with better features including a cleaner look and higher resolution camera. Get the new Special Edition cell phone watch and always be ready with a tri-band Mobile phone, and mobile entertainment system strapped to your wrist.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Stand out features include a great organizer, responsive touchscreen and cool audio over Bluetooth, so you can listen to all your favorite tunes on your wireless headphones. Great for cyclists, commuters, and anyone who wants to stop carrying round bulky products in their pockets or handbag.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Specifications :&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;GSM Compatibility: 900MHz, 1800MHz, 1900MHz &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Screen: 1.3 inch TFT LCD Touchscreen&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Screen Resolution: 128x160&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Screen Palette : 260,000 Colors&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Bluetooth Profiles: Handsfree, Headset, A2DP, SPP, DUN, OPP, FTP, AVRCP&lt;br /&gt;Built In Microphone and Speaker&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight:bold;"&gt;Multimedia:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Still Camera &lt;/span&gt;&lt;span class="fullpost"&gt;Resolution: Still 640x480, 320x240, 128x160, 160x120, 80x60 Compression Rate: Low, Normal, High Effects: Effects: Normal, Grey scale, Sepia, Sepia Green, Sepia Blue, Negative White Balance: Auto, Daylight, Tungsten, Fluorescent, Cloud, Incandescence Scene Mode: Auto, Night Delay Timer: 5,10,15 secContinuous Shot, 1,3,5 shots &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Video Camera Capture Format: MPEG4 AVI Resolution: 128x104&lt;br /&gt;Quality (Compression Settings): Low, Normal High&lt;br /&gt;EV: -4 to +4 in 8 steps&lt;br /&gt;White Balance: Auto, Daylight, Tungsten, Fluorescent, Cloud, Incandescence&lt;br /&gt;Effects: Effects: Normal, Greyscale, Sepia, Sepia Green, Sepia Blue, Negative&lt;br /&gt;Night Mode&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Banding: 50Hz, 60Hz&lt;br /&gt;- Voice Recording: AMR, WAV&lt;br /&gt;- Movie Formats Playback: MPEG4 (AVI), 3GP with audio&lt;br /&gt;- Music Sound Formats Playback: MP3, WMA, WAV, AMR&lt;br /&gt;- Picture Viewing: JPEG&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Cell Phone Menu: Phonebook, Messages, Call History, Settings, Multimedia, Games, Profiles, Organizer, Services&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight:bold;"&gt;First Level Menu Break Down &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Phonebook: Quick Search, Search Contact, Add New Contact, Copy All, Delete, Caller Groups, Extra Number, Settings, Caller Picture, Caller Ringtone.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Messages: SMS, MMS, Chat, Voice Mail Server &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Call History: Missed Calls, Dialed Calls, Received Calls, Delete Call Log, Call Time, Call      Cost, SMS Counter, GPRS Counter &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Settings: Pen Calibration, Phone Setup, Call Setup, Network Setup, Security Setup, Restore Factory Settings, Sound Effect &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Multimedia: Camera, Image Viewer, Video Recorder, Video Player, Photo Editor, Audio Player, Sound Recorder, File Manager &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Fun &amp;amp; Games: Games, Themes, Stopwatch &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Profiles: General, Meeting, Outdoor, Indoor Headset, Bluetooth &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Organizer: Calendar, To Do, Alarm, Calculator, Unit Converter, Currency Converter, World Clock &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Services: SIM Provided Services, WAP, Data Account, Bluetooth&lt;br /&gt;Support for GPRS and WAP&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Languages: English, French, Spanish, Portuguese, Italian, Turkish, Arabic, Chinese&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Storage: Trans Flash / Micro SD card up to 2GB (1GB included)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Power Source: 3.7 Volt 550mAh Li Ion Battery, USB Charging and Separate Battery Charger&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Dimension: 54mm x 17mm x 48mm (L x D x W) Watch Face, 250mm Length Strap&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Bluetooth Headset -&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Support: Version 1.2, Class 2 (10 Meters)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Profiles: Headset, Handsfree, A2DP&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Battery Life:&lt;br /&gt;- Talk Time: Up to 6 hrs&lt;br /&gt;- Music Play: Up to 6 hrs&lt;br /&gt;- Stand By: Up to 150 hrs&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Dimensions: 53.6x25.5x23.6mm (Main Body)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Manufacturer Ref.: 473BMUCEK1CG&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight:bold;"&gt;Other Features:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Tri Band Operation for Easy Roaming&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Hide Away Stylus for precise navigation&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight:bold;"&gt;Accessories:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Bluetooth Headset&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;1GB Micro SD Card&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Manuals&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;2 x Battery&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;USB Bluetooth Kit Charging Cable&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;USB Watch Charging / Data Transfer Cable&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Power Adapter&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Stand Alone Battery Charger&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;span style="font-weight:bold;"&gt;Don't be the one to miss out: order it before stock runs out.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Prices:&lt;br /&gt;1 or more  for $132.50 each&lt;br /&gt;3 or more  for $127.20 each&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;a href="http://www.chinavasion.com/product_info.php?ref=6755&amp;products_id=3354&amp;channel_id=16253"&gt;BUY NOW&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8499093317162051453?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8499093317162051453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8499093317162051453&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8499093317162051453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8499093317162051453'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/special-edition-cellphone-watch.html' title='Special Edition Cellphone Watch'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-4424293361381594026</id><published>2009-01-19T15:13:00.005+07:00</published><updated>2009-01-20T08:05:44.546+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>PDA Touchscreen Business Cellphone - QWERTY Keyboard + Dual SIM</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://eu.chinavasion.com/images/Chinavasion-CVSDW-9802-1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 300px;" src="http://eu.chinavasion.com/images/Chinavasion-CVSDW-9802-1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;p&gt;Touchscreen PDA cellphone with a built in QWERTY keyboard and two SIM card slots with business as well as fun applications. With a touchscreen that can be either in the closed "bar" position, as well as sliding up and out to reveal the QWERTY keyboard, this phone is easy to take out of your pocket to quickly answer calls and messages or use as a dedicated PDA with a full sized keyboard, additional navigation keys and a widescreen display for easy messaging and viewing media files. Businessmen will love the two SIM card slot feature, which will allow you to have quickly switch to 2 different mobile phone carriers without ever having to open the phone as well as the ability to send/receive SMS, MMS and even EMS (email) messages and internet access via WAP.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Specifications :&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Main function: Large display touchscreen cell phone with full keyboard and rich messaging feature set&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Additional functions: Portable Media Player (PMP) with TV, FM Radio, NES and SNES game player, MP3 and MP4 players, Digital camera and video recorder, Picture viewer, WAP browser&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;GSM Compatibility: Dual Band 900MHz, 1800MHz&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Screen: 2.8 inch TFT LCD QVGA, 240x400/400x240 with 16M colors (display auto changes between portait and landscape modes)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Screen Type: Polarized Touchscreen&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Display: Portrait or Landscape modes&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Memory: 512MB TF Card/micro SD card included&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Bluetooth Profiles: Handsfree, Headset, A2DP, AVRCP, SPP, DUN, OPP, FTP&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;GPRS Support: YES&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;SIM Card Slots: YES - 2&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;SIM Card Mode: Dual SIM, single stand-by&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Messaging: SMS, MMS, Email (EMS), Voice Mail&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Record Capacity: Address Book = 1700, SMS = 1200, MMS = 1500KB&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Mobile internet: Yes - WAP, EMAIL, IPTV (if supported by your data plan)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Languages: English, Spanish, French, Farsi, Arabic, Thai, Vietnamese, Russian, Indonesian, Malaysian&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Battery Type: Rechargeable 3800mAh Li-ion&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Battery Life:&lt;br /&gt;- Talk Time: Up to 6 hours&lt;br /&gt;- Music Play: Up to 12 hours&lt;br /&gt;- Stand By: Up to 400 hours&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Dimensions: 112mm x 60mm x 22mm (L x W x H)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Manufacturer Ref.: JXW7CXJN20R7&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Catalog Ref.: 2.8 inch LCD Mobile Phone, Full Keyboard Cell Phone, cellular phone, two SIM celular phone&lt;br /&gt;&lt;br /&gt;Multimedia:&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Java: YES - preloaded with k-java and java paradise&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;FM Radio: YES&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Analog TV: YES&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Analog TV Area Profiles: USA, Canada, Western Europe, South America, Japan, South Africa, Turkey, Philippines, Korea, Indonesia, Malaysia, Singapore, Thailand, United Arab Emirates, India, China, Taiwan&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Video Player: Yes&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Audio Player: Yes&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Audio Player Extras: lyric display, equalizer, Bluetooth connection, shuffle, repeat, playlist&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Still Cameras&lt;br /&gt;- Resolution: 1280x1024, 640x480, 320x240, 160x120&lt;br /&gt;- Image Quality (compression): High, Normal, Low&lt;br /&gt;- Snapshot Options: Timer, Continuous Shot, Scene Modes&lt;br /&gt;- Picture Settings: Color Effects, Instant Manual Picture Naming&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Video Camera&lt;br /&gt;- Resolution: 352x288, 176x144&lt;br /&gt;- Video Quality (compression): High, Low&lt;br /&gt;- Video Settings: Audio On/OFF, Color Effects, Scene Modes, Instant Manual Picture Naming&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Video Games&lt;br /&gt;- Built in games + NES Game Emulator + Super NES Game Emulator&lt;br /&gt;- Load additional ROM's into phone games folder&lt;br /&gt;- NES and SNES games played in landscape mode&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Viewing and Listening Formats&lt;br /&gt;- Video Formats: MPEG, 3GP, AVI&lt;br /&gt;- Picture Formats: JPEG, GIF, BMP, PNG&lt;br /&gt;- Music and Sound Formats: MP3, WMA, AAC, MIDI, WAV, AMR, AWB&lt;br /&gt;&lt;br /&gt;Other Features:&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Unlocked phone; can be used with any carrier and SIM card(s)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Two digital cameras; one frontside and one backside&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Pre-loaded software tools include; Calendar, Alarm, E-book Reader, Calculator, Java, Audio Recorder, Picture Viewer&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Call Settings include Speed Dial, Black List, Call Waiting, Call Divert, Call Barring (if supported by your network carrier)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Built-in polyphonic 64 chord speaker; hear your calls and media files clearly&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Special Dedicated Function Keys: YES - many&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;PC Camera mode&lt;br /&gt;&lt;br /&gt;Package Contents:&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Model CVSCY-9802 cellphone&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Wired stereo earphones with built-in MIC and clip&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;x1 512MB micro SD/T-Flash card (pre-installed)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;x2 rechargeable Li-ion 3800mAh battery&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Phone-to-USB cable&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Power adapter (100-240V 50/60Hz)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;Stylus&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="fullpost"&gt;User manual - English&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span class="fullpost"&gt;&lt;strong&gt;Prices:&lt;/strong&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;strong&gt;&lt;span class="fullpost"&gt;1 or more  for $131.00 each&lt;br /&gt;3 or more  for $125.76 each&lt;/span&gt;&lt;/strong&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.chinavasion.com/product_info.php?ref=6755&amp;products_id=3700&amp;channel_id=16253"&gt;BUY NOW&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-4424293361381594026?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/4424293361381594026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=4424293361381594026&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4424293361381594026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4424293361381594026'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/touchscreen-pda-cellphone-with-built-in.html' title='PDA Touchscreen Business Cellphone - QWERTY Keyboard + Dual SIM'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8432879012105554420</id><published>2009-01-19T11:25:00.000+07:00</published><updated>2009-01-19T11:25:00.999+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Disable Unnecessary Windows Vista services</title><content type='html'>&lt;div align="justify"&gt;How to Disable Unnecessary Windows Vista services.  Go to Control Panel and double click “Administrative Tools” (in Classic View mode), double click “Services”.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Here you can disable unnecessary services like “Windows Error Reporting service”. Find this service on the list, double click on it. Click “Stop” button to stop the service, then change it’s “Startup type” to “Disabled” and press “Ok” button.&lt;br /&gt;&lt;br /&gt;Other services you can safely disable:&lt;br /&gt;- Offline Files&lt;br /&gt;- Tablet PC Input Service&lt;br /&gt;- Teminal Services&lt;br /&gt;- Windows Search&lt;br /&gt;- Fax&lt;br /&gt;&lt;br /&gt;Note: the information below is for advanced users only, who know what they are doing:&lt;br /&gt;If you don’t want to use the useless “Security Center” - find it on the list of services, stop the service and change it’s startup type to “Disabled” or “Manual”.&lt;br /&gt;If you don’t want to use “Automatic Updates” and have already set “Never check for updates” in the “Windows Update” settings you can change this service startup type to “Manual”. Just find “Automatic Updates” service, stop it and change it’s startup type to “Manual”.&lt;br /&gt;If you want to disable “Windows Defender” running in the background - you can find “Windows Defender” service and set it’s startup type to “Manual” (also make sure that it is removed from autostart list in the Registry - run regedit.exe and go to HKEY_LOCAL_MACHINE-&gt;Software-&gt;Microsoft-&gt;Windows-&gt;Current Version-&gt;Run key and remove “Windows Defender” value).  Source: www.4neurons.com&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8432879012105554420?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8432879012105554420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8432879012105554420&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8432879012105554420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8432879012105554420'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/disable-unnecessary-windows-vista.html' title='Disable Unnecessary Windows Vista services'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-7781906823039760777</id><published>2009-01-18T11:23:00.000+07:00</published><updated>2009-01-18T11:23:00.179+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to Make Windows Vista Faster</title><content type='html'>&lt;div align="justify"&gt;Windows Vista too slow in your laptop?  I will show you how to make windows vista faster.  Windows Vista have features Aero Glass that need high video card memory.  As we know most laptop comes with low memory video card.   The Windows Vista Aero glass interface will only work if you have a high-powered video card.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;We know the Windows Aero Glass Interface is one of the Windows Vista’s cool stuff.  If you need speed you must leave the interface ( Aero Glass ) except you still to be slow and get aero glass.  The act that you need to is disable it.  I have experienced for that, two laptop have the same spec except video card, one of its have external video card and other built-in / shared memory.  In the laptop that have external video card the windows vista run faster and other too slow.&lt;br /&gt;&lt;br /&gt;Step by step to disable it:&lt;br /&gt;&lt;br /&gt;Right-click on the desktop and choose Personalize. Click the “Window Color and Appearance” link&lt;br /&gt;&lt;br /&gt;Then in the next screen, click the link near the bottom for “Open classic appearance properties for more color options”&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now you should be able to disable Aero altogether by choosing Windows Vista Basic.&lt;br /&gt;&lt;br /&gt;Now see the effect with your laptop by disabling windows vista aero glass.  It’s worked too for PC Desktop.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-7781906823039760777?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/7781906823039760777/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=7781906823039760777&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7781906823039760777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7781906823039760777'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-make-windows-vista-faster.html' title='How to Make Windows Vista Faster'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8326108805218071119</id><published>2009-01-17T11:34:00.000+07:00</published><updated>2009-01-17T11:34:00.621+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Downgrade Windows Vista to XP Toshiba Satellite M305-S4822</title><content type='html'>Downgrade Windows Vista to XP on Toshiba Satellite M305-S4822  is not easy because Windows Vista isnot allowed to do that, but there is some option how to do that.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;I have experienced to downgrade Windows Vista to Xp, in vista there is no option to downgrade.&lt;br /&gt;&lt;br /&gt;From MyDigitalLife There’re actually few options available instead of completely uninstall Vista as listed below. But if you decide to downgrade from Vista to install XP, there is also a simple guideline that you can observe to ensure that the migration goes smoothly.&lt;br /&gt;&lt;br /&gt;Option 1 - Dual Boot&lt;br /&gt;&lt;br /&gt;It’s by far the easier and best method to run XP instead of Vista if you have another partition or hard disk. Simply boot up any XP setup media and install XP into different partition or hard drive than the Vista installation. Once completed, you can choose to boot up either XP or Vista, and has the best of both world.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8326108805218071119?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8326108805218071119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8326108805218071119&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8326108805218071119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8326108805218071119'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/downgrade-windows-vista-to-xp-toshiba.html' title='Downgrade Windows Vista to XP Toshiba Satellite M305-S4822'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-6363151626777355143</id><published>2009-01-16T11:33:00.000+07:00</published><updated>2009-01-16T11:33:00.546+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to Convert a numeric value into Words in Excel</title><content type='html'>Microsoft Visual Basic for Applications functions that you can use to convert a numeric value in a Microsoft Excel worksheet cell into its equivalent in English words. I got it from Microsoft website, in the website only convert numeric to english words but we can change it to other languange.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt; According to the microsoft to modify this function you must familar with the programming language.&lt;br /&gt;&lt;br /&gt;From Microsoft statement:&lt;br /&gt;&lt;br /&gt;Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.&lt;br /&gt;&lt;br /&gt;According to me to change this programming function you don’t need must be a programming or understanding programming languange but you just follow or step by the instruction from the microsoft website. Interested to try it..  &lt;br /&gt;&lt;br /&gt;You can visit microsoft website for more details and you can see the source code of the function at&lt;br /&gt;&lt;br /&gt;http://support.microsoft.com/kb/213360&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-6363151626777355143?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/6363151626777355143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=6363151626777355143&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/6363151626777355143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/6363151626777355143'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-convert-numeric-value-into-words.html' title='How to Convert a numeric value into Words in Excel'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8017798202938883670</id><published>2009-01-15T11:21:00.000+07:00</published><updated>2009-01-15T11:21:01.249+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>View previously open Folders after Shutdown or Logoff</title><content type='html'>&lt;div align="justify"&gt;If you need to access lot of folders on your home computer or on the network regularly then you can set them re-open automatically, when you will login, shutdown or restart your computer next time. There is no need to open regularly used folders manually, just configure the simple sitting, your computer will automatically reload all the previously opened windows.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;By default windows XP disables this option to reload automatically all the previously opened windows, when you login on, shutdown or restart your computer.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Follow the given steps to configure your computer to reload previously opened folders automatically after shutdown.&lt;br /&gt;&lt;br /&gt;To edit this feature, you will need to be logged into your computer with administrative rights.&lt;br /&gt;&lt;br /&gt;First click on Start button then go to Control Panel. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open the “Appearance and Themes” option in control panel then click on Folder Options. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A small windows dialog box will appear with the title “Folder options”, click on View tab.&lt;br /&gt;&lt;br /&gt;Under the Advanced setting section, scroll down to bottom and click the “Restore previous folder windows at logon” option and then click Ok button to save sitting.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now when you log off, restart or shutdown, your computer will automatically open the previously opened folders from the same location as before.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8017798202938883670?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8017798202938883670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8017798202938883670&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8017798202938883670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8017798202938883670'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/view-previously-open-folders-after.html' title='View previously open Folders after Shutdown or Logoff'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-2271104884604317316</id><published>2009-01-14T11:32:00.000+07:00</published><updated>2009-01-14T11:32:00.500+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Relevant Google Ads and Profitable with AdSense Section Targeting</title><content type='html'>&lt;div align="justify"&gt;The Adsense publisher maybe confuse why the google ads not relevant with their content.  To resolve this problem we can use Adsense Section Targetting.  We can insert it to the html code or script code.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;For the best place is after title of the post and the end of the post.  When user open your website google ads will looking for the keyword between adsense targeting and then google adsense will send to your page the relevant google ads.&lt;br /&gt;&lt;br /&gt;What the AdSense Section Targeting feature allows you to do (this applies to publishers who use AdSense ads next to their content) is to specify to Google, which parts of the content of your article are the ones that AdSense should take into consideration when deciding which ads to serve on that page.&lt;br /&gt;&lt;br /&gt;Section targeting provides a solution for everyone.&lt;br /&gt;Publishers can finally guarantee relevant ads to the content topic they are publishing to.&lt;br /&gt;Readers get relevant ads that nicely complement the content they are reading.&lt;br /&gt;Google gets greater revenue both from AdSense publishers who are now more effective and better rewarded for their good work, and from readers who finding more relevant ads next to the content they are reading award more clicks to information items of their interest.&lt;br /&gt;&lt;br /&gt;For the complete article and how to put the script in your template you can visit http://www.google.com/support/adsense/bin/answer.py?answer=23168&amp;amp;topic=371&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-2271104884604317316?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/2271104884604317316/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=2271104884604317316&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2271104884604317316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2271104884604317316'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/relevant-google-ads-and-profitable-with.html' title='Relevant Google Ads and Profitable with AdSense Section Targeting'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-3480825998250735310</id><published>2009-01-13T11:30:00.000+07:00</published><updated>2009-01-13T11:30:01.101+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to connect XBOX 360 to PC</title><content type='html'>&lt;div align="justify"&gt;We can connect xbox 360 to pc  we must create a simple network connection between computer and  Xbox. There are three easy ways to do this. We can use a hub/switch, a router, or a crossover cable.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;This tutorial will show you how to configure the hardware. Remember though, You will not actually be able to login to your xbox until you have installed and configured the EvolutionX dashboard.&lt;br /&gt;&lt;br /&gt;1. Xbox Network Connection using Hub&lt;br /&gt;&lt;br /&gt;This is the most common network configuration and is also the easiest to setup.&lt;br /&gt;Step #1: Plug your network cable(RJ-45 cable) that comes from your cable/DSL modem into the uplink port of your hub. (Make sure that your uplink is switched to “on”).&lt;br /&gt;Step #2: Take an RJ-45 cable and run it from one of the ports of the hub, directly to the Network Interface Card (NIC) installed in your computer.&lt;br /&gt;Step #3: Take another RJ-45 cable and run it from a different port of your hub directly to your xbox.&lt;br /&gt;**NOTE** A switch may be used in place of a hub with the same basic setup.**&lt;br /&gt;&lt;br /&gt;That’s it! No other network changes should be needed for this configuration. Your Xbox is now on the same network as your PC.&lt;br /&gt;&lt;br /&gt;2. Xbox Network Connection using Router&lt;br /&gt;&lt;br /&gt;This is another common network configuration.&lt;br /&gt;Step #1: Plug your network cable(RJ-45 cable) that comes from your modem into the WAN port of your router.&lt;br /&gt;Step #2: Take an RJ-45 cable and run it from one of the ports of the router, directly to the Network Interface Card (NIC) installed in your computer.&lt;br /&gt;Step #3: Take another RJ-45 cable and run it from a different port of your router directly to your xbox.&lt;br /&gt;&lt;br /&gt;**NOTE** In steps #2 and #3, you should not use a port that is directly beside the “uplink” port on your router, if your uplink port is being used to connect to another routing device.** If your router has a built in firewall, you will need to forward ports 8602 both incoming and outgoing to the internal ip address of your pc. Consult your device manaul for port forwarding.&lt;br /&gt;&lt;br /&gt;That’s it! Your Xbox is now on the same network as your PC&lt;br /&gt;&lt;br /&gt;3. Xbox Network Connection using Crossover Cable&lt;br /&gt;&lt;br /&gt;This is the last network configuration. For this setup you need at least one NIC card.&lt;br /&gt;Step #1: Plug your USB cable that comes from your modem into your PC’s USB port. This should already be done, if you have a usb modem for your current internet connection.&lt;br /&gt;Step #2: Take an RJ-45 cable and run it from an installed NIC card on your PC, directly to the Xbox.&lt;br /&gt;&lt;br /&gt;**NOTE** A crossover cable is only needed if you are connecting the Xbox directly to the second NIC card. If you have a device such as a switch, hub or router in between you should use a standard RJ-45 cable. This type of network setup also requires “Winroute©”, a program downloadable from the world wide web. Consult the manual for specific instructions on how to set this up. Also if you have a USB ethernet adapter, you may use any of the setups described herein. USB ethernet adapter basically converts a USB cable into an RJ-45 cable.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-3480825998250735310?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/3480825998250735310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=3480825998250735310&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/3480825998250735310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/3480825998250735310'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-connect-xbox-360-to-pc.html' title='How to connect XBOX 360 to PC'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-5625851226714704893</id><published>2009-01-12T11:27:00.000+07:00</published><updated>2009-01-12T11:27:00.322+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to bypass site blocked and network restrictions</title><content type='html'>Your favourite site blocked? Don’t worry you can bypass it and bypass workplace network restrictions. &lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Some school and company admin have blocked some websites.  You can use http://www.proxury.com/ to browse it instead of the website.  Just type the website url that you want to browse in the box url, Bang! you can browse your favorites website now.&lt;br /&gt;&lt;br /&gt;There is a little description about the website but I think the website is very useful.  I have experienced for a years ago some ISP Provider blocked some website ordering from the goverment.  But some ISP have blocked a wrong website.  I come to internet and browsing to find how to bypass the blocked website.  I found this website, after that I don’t worry anymore.&lt;br /&gt;&lt;br /&gt;You are lucky when the admin didn’t know about the website, but if the admin known about the website we have problem and must work again to find other tips how to bypass it  &lt;br /&gt;&lt;br /&gt;Just visit http://www.proxury.com/ and browsing silent becarefully with your boss.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-5625851226714704893?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/5625851226714704893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=5625851226714704893&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/5625851226714704893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/5625851226714704893'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-bypass-site-blocked-and-network.html' title='How to bypass site blocked and network restrictions'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-4828349888627220232</id><published>2009-01-11T11:17:00.000+07:00</published><updated>2009-01-11T11:17:00.371+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to start windows programs quickly with Run Command?</title><content type='html'>&lt;div align="justify"&gt;The run option of Start menu is used to run a program or to open a document directly. If you do not know the exact location of the program or document then click on Start button to open Run and type the programs shortcut name to open it directly.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Run Commands&lt;br /&gt;&lt;br /&gt;appwiz.cpl -- Used to run Add/Remove wizard&lt;br /&gt;&lt;br /&gt;Calc --Calculator&lt;br /&gt;&lt;br /&gt;Cfgwiz32 --ISDN Configuration Wizard&lt;br /&gt;&lt;br /&gt;Charmap --Character Map&lt;br /&gt;&lt;br /&gt;Chkdisk --Repair damaged files&lt;br /&gt;&lt;br /&gt;Cleanmgr --Cleans up hard drives&lt;br /&gt;&lt;br /&gt;Clipbrd --Windows Clipboard viewer&lt;br /&gt;&lt;br /&gt;Control --Displays Control Panel&lt;br /&gt;&lt;br /&gt;Cmd --Opens a new Command Window&lt;br /&gt;&lt;br /&gt;Control mouse --Used to control mouse properties&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Dcomcnfg --DCOM user security&lt;br /&gt;&lt;br /&gt;Debug --Assembly language programming tool&lt;br /&gt;&lt;br /&gt;Defrag --Defragmentation tool&lt;br /&gt;&lt;br /&gt;Drwatson --Records programs crash &amp;amp; snapshots&lt;br /&gt;&lt;br /&gt;Dxdiag --DirectX Diagnostic Utility&lt;br /&gt;&lt;br /&gt;Explorer --Windows Explorer&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Fontview --Graphical font viewer&lt;br /&gt;&lt;br /&gt;Fsmgmt.msc -- Used to open shared folders&lt;br /&gt;&lt;br /&gt;Firewall.cpl  -- Used to configure windows firewall&lt;br /&gt;&lt;br /&gt;Ftp -ftp.exe program&lt;br /&gt;&lt;br /&gt;Hostname --Returns Computer's name&lt;br /&gt;&lt;br /&gt;Hdwwiz.cpl -- Used to run Add Hardware wizard&lt;br /&gt;&lt;br /&gt;Ipconfig --Displays IP configuration for all network adapters&lt;br /&gt;&lt;br /&gt;Logoff -- Used to logoff the computer&lt;br /&gt;&lt;br /&gt;MMC --Microsoft Management Console&lt;br /&gt;&lt;br /&gt;Msconfig --Configuration to edit startup files&lt;br /&gt;&lt;br /&gt;Mstsc -- Used to access remote desktop&lt;br /&gt;&lt;br /&gt;Mrc -- Malicious Software Removal Tool&lt;br /&gt;&lt;br /&gt;Msinfo32 --Microsoft System Information Utility&lt;br /&gt;&lt;br /&gt;Nbtstat --Displays stats and current connections using NetBIOS over TCP/IP&lt;br /&gt;&lt;br /&gt;Netstat --Displays all active network connections&lt;br /&gt;&lt;br /&gt;Nslookup--Returns your local DNS server&lt;br /&gt;&lt;br /&gt;Osk ---Used to access on screen keyboard&lt;br /&gt;&lt;br /&gt;Perfmon.msc -- Used to configure the performance of Monitor.&lt;br /&gt;&lt;br /&gt;Ping --Sends data to a specified host/IP&lt;br /&gt;&lt;br /&gt;Powercfg.cpl -- Used to configure power option&lt;br /&gt;&lt;br /&gt;Regedit --Registry Editor&lt;br /&gt;&lt;br /&gt;Regwiz -- Registration wizard&lt;br /&gt;&lt;br /&gt;Sfc /scannow -- System File Checker&lt;br /&gt;&lt;br /&gt;Sndrec32 --Sound Recorder&lt;br /&gt;&lt;br /&gt;Shutdown -- Used to shutdown the windows&lt;br /&gt;&lt;br /&gt;Spider -- Used to open spider solitaire card game&lt;br /&gt;&lt;br /&gt;Sfc / scannow -- Used to run system file checker utility.&lt;br /&gt;&lt;br /&gt;Sndvol32 --Volume control for soundcard&lt;br /&gt;&lt;br /&gt;Sysedit -- Edit system startup files&lt;br /&gt;&lt;br /&gt;Taskmgr --Task manager&lt;br /&gt;&lt;br /&gt;Telephon.cpl -- Used to configure modem options.&lt;br /&gt;&lt;br /&gt;Telnet --Telnet program&lt;br /&gt;&lt;br /&gt;Tracert --Traces and displays all paths required to reach an internet host&lt;br /&gt;&lt;br /&gt;Winchat -- Used to chat with Microsoft&lt;br /&gt;&lt;br /&gt;Wmplayer -- Used to run Windows Media player&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Wab -- Used to open Windows address Book.&lt;br /&gt;&lt;br /&gt;WinWord -- Used to open Microsoft word&lt;br /&gt;&lt;br /&gt;Winipcfg --Displays IP configuration&lt;br /&gt;&lt;br /&gt;Winver -- Used to check Windows Version&lt;br /&gt;&lt;br /&gt;Wupdmgr --Takes you to Microsoft Windows Update&lt;br /&gt;&lt;br /&gt;Write -- Used to open WordPad&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-4828349888627220232?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/4828349888627220232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=4828349888627220232&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4828349888627220232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4828349888627220232'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-start-windows-programs-quickly.html' title='How to start windows programs quickly with Run Command?'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-1349804774920671391</id><published>2009-01-10T10:34:00.000+07:00</published><updated>2009-01-10T10:34:00.448+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>How to increase the Browsing and Downloading speed in Windows Vista?</title><content type='html'>&lt;div align="justify"&gt;With windows Vista you have noticed the slow internet speed. The web browsing and downloading speed is very slow as compare to previous versions of windows. You can open the same sites in windows XP and server 2003 with the normal speed.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Follow the given steps to increase the Vista browsing speed:&lt;br /&gt;&lt;br /&gt;First go to Advance tab in Internet Explorer and turn off the TLS (Transport Layer Security) encryption option. Here to fix problem with some secure pages turn on the SSL 2.0 (Secure Sockets Layer) feature and click Ok button to close it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Follow the major fix for this problem:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In windows Vista, the TCP autotuning feature is enabled by default. Some web servers do not respond properly to this feature, so it appears that some sites open with very slow speed.&lt;br /&gt;&lt;br /&gt;To use this feature, you will need to be logged into your computer with administrative rights.&lt;br /&gt;&lt;br /&gt;First click on Start button and type CMD in Run option then press Enter.&lt;br /&gt;&lt;br /&gt;At Command Prompt, type the following command and press enter.&lt;br /&gt;&lt;br /&gt;netsh interface tcp set global autotuninglevel= disabled&lt;br /&gt;&lt;br /&gt;This command will disable the TCP autotuning feature. Now close the command Prompt and restart your computer after any changes to go into effect.&lt;br /&gt;&lt;br /&gt;You can easily restore these setting by typing the following command at Command Prompt.&lt;br /&gt;&lt;br /&gt;netsh interface tcp set global autotuninglevel= normal&lt;br /&gt;Now close the command Prompt and again restart your computer after any changes to go into effect.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;These all new file extensions are not compatible with all previous versions of Office applications, that is why Office 2002 and Office 2003 applications cannot open and read the .docx, xlsx and .pptx file extensions.&lt;br /&gt;However, you have an option in Office 2007 to save the files with in older files extensions, But if you are frequently using the older versions of the file and also if the files created by you are to be shared on other computers which have earlier versions of Office, you may want to save all your new documents in the older format, but that would create duplicate files.&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;There is better option in Office 2007 applications to change the default saving file format to the older format and then the new file format in Office 2007 will be changed to .doc, .xls and .ppt for Word, Excel and PowerPoint respectively.&lt;br /&gt;&lt;br /&gt;Today we will set the older file format for Word 2007 and other applications will be discussed in the next tips. Follow the given steps to set the default older file format for Word 2007:&lt;br /&gt;&lt;br /&gt;First click on Start button, go to Program then click on Microsoft Word 2007 to run the word application.&lt;br /&gt;&lt;br /&gt;Now click on File menu in the top left corner then click on Word Options button to change the default word options.&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-1349804774920671391?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/1349804774920671391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=1349804774920671391&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/1349804774920671391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/1349804774920671391'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-increase-browsing-and.html' title='How to increase the Browsing and Downloading speed in Windows Vista?'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-7859134880213543440</id><published>2009-01-10T09:43:00.002+07:00</published><updated>2009-01-10T09:43:00.876+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>The Beautiful Yet Simple G705 From Sony Ericsson</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cellrater.com/images/sony/sony_g705.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 185px; height: 219px;" src="http://www.cellrater.com/images/sony/sony_g705.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;I just came across Sony Ericsson’s G705 via &lt;a href="http://gizmodo.com/"&gt;Gizmodo&lt;/a&gt; earlier today and I have to say that I am drawn to it’s simplicity. At first I scrolled right past it, thinking it was just another lame music player, but upon further inspection I realized it was just another lame phone! No, in all seriousness the Sony Ericsson UI designs are by far the most fluid and beautiful designs I have had the pleasure of working with. &lt;span class="fullpost"&gt;&lt;br /&gt;I like how square this phone is, it doesn’t look like most of the slider phones I have seen simply because of how square it is at the bottom. I will however miss the slight curve at the bottom of the phone (like the s500i for example), it really helped to grip and slide the handset open with one hand. Other than that technical specs seem to stack up fairly nice, with a 2.4 inch TFT that has auto-rotation, A-GPS DLNA, 2.0 Bluetooth, FM radio and 3.2 mp camera with a built in flash! So overall it looks like a fairly well equipped handset for the everyday user. According to Sony, they beefed up the browser for full html (about time), and its packing Exchange ActiveSync for email (although without a full qwerty do I really want all that email on the little phone?) The US version looks to be launching sometime around early 2009 but no word on pricing just yet. If this comes in under 300 I think it would be a good handset to pick up, it looks like it has some higher end features that would bump the price kind of high but for a simple looking slider I don’t know if I would drop more than 300 for something like this when for a little more I could get a phone with the same features and more with a full keypad.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-7859134880213543440?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/7859134880213543440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=7859134880213543440&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7859134880213543440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7859134880213543440'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/beautiful-yet-simple-g705-from-sony.html' title='The Beautiful Yet Simple G705 From Sony Ericsson'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-2988277777095881065</id><published>2009-01-10T09:30:00.000+07:00</published><updated>2009-01-10T09:30:00.950+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Symbian Freeware'/><title type='text'>eReader Pro for Symbian S60</title><content type='html'>eReader application allows you to read your eBooks whenever you want and wherever you go including authors like Stephen King, Dean Koontz and Stephenie Meyer. &lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;You can use eReader to add bookmarks, navigate your eBooks easily, and search for words in your eBook. Here at eReader we have worked hard to ensure that reading eBooks on your handheld is a pleasure! Our latest release includes support for the latest devices!&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Download : &lt;/span&gt;&lt;br /&gt;&lt;a href="http://symbian-freeware.web.id/download/ereader-pro-version-303-beta-for-symbian-60-3rd"&gt;Version: 3.0.3 BETA for Symbian 60 3rd&lt;/a&gt;&lt;br /&gt;&lt;a href="http://symbian-freeware.web.id/download/ereader-pro-version-303-beta-for-symbian-60-3rd-fp1"&gt;Version: 3.0.3 BETA for Symbian 60 3rd FP1&lt;/a&gt;&lt;br /&gt;&lt;a href="http://symbian-freeware.web.id/download/ereader-pro-version-303-beta-for-symbian-series-80"&gt;Version: 3.0.3 BETA for Symbian Series 80&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.ereader.com/ereader/software/product/download/18842/eReader%20Pro%20for%20Symbian%20OS%202.6.2.zip"&gt;Version: 2.6.2 for Symbian 60 v1, Symbian 60 v2, and Symbian UIQ&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-2988277777095881065?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/2988277777095881065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=2988277777095881065&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2988277777095881065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2988277777095881065'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/ereader-pro-for-symbian-s60.html' title='eReader Pro for Symbian S60'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-7406710981616554680</id><published>2009-01-10T08:12:00.000+07:00</published><updated>2009-01-10T08:12:00.353+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cheap Laptops'/><title type='text'>HP dv3 laptop new ultra-portable from HP</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/hp-pavilion-dv3-1ces.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 350px; height: 288px;" src="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/hp-pavilion-dv3-1ces.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;The HP dv3 is without a doubt an ultra-portable laptop, there’s no arguing about that no matter how much anyone would think otherwise as with the Pavilion dv2. The HP dv3 is powered by an ADM processor and is available in an abundance of configurations.&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;CPU configurations that are wide ranging from an Athlon X2 QL-62 2GHz to a Turion X2 Ultra ZM-86 2.4GHz and 160/250/320/400GB hard drive choices.&lt;br /&gt;&lt;br /&gt;Also the HP dv3 has ATI’s Radeon HD 3200 graphics, up to 8GB of DDR2 RAM, dual-layer DVD burner, ExpressCard slot, gigabit Ethernet, WiFi / Bluetooth, 3 USB 2.0 ports, eSATA combo with a third USB port and audio in / out, VGA, and HDMI and a fingerprint reader and all for $799.00 and upwards.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-7406710981616554680?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/7406710981616554680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=7406710981616554680&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7406710981616554680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7406710981616554680'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/hp-dv3-laptop-new-ultra-portable-from.html' title='HP dv3 laptop new ultra-portable from HP'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-2276424310571973136</id><published>2009-01-10T08:05:00.001+07:00</published><updated>2009-01-10T08:05:01.076+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Free Download'/><title type='text'>FBackup</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.freewarezoom.com/wp-content/uploads/2008/12/fbackup.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 315px; height: 240px;" src="http://www.freewarezoom.com/wp-content/uploads/2008/12/fbackup.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;FBackup is a free backup software for both personal and commercial use. It protects your important data by backing it up automatically to any USB/Firewire device, local or network location. The backed up data can be either compressed (using standard zip compression) or an exact copy of the original files.&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;FBackup has a simple interface and guides you through the process of defining a backup job using a friendly wizard that asks you :&lt;br /&gt;Where do you want to store the backup (the destination).&lt;br /&gt;What do you want to backup (the sources).&lt;br /&gt;How do you want to run the backup (using full backup that zips the files, or mirror backup that doesn’t zip them).&lt;br /&gt;When do you want to run the backup (you can schedule it to run automatically or run it manually).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fbackup.com/download/setup/fbsetup.exe"&gt;DOWNLOAD NOW (9.9 MB)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-2276424310571973136?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/2276424310571973136/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=2276424310571973136&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2276424310571973136'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2276424310571973136'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/fbackup.html' title='FBackup'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-191847245984339433</id><published>2009-01-09T08:35:00.000+07:00</published><updated>2009-01-09T08:35:12.557+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Symbian Freeware'/><title type='text'>S60ResourceCleanup - S60 3rd devices.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ph7lab.googlepages.com/Screenshot0007.png/Screenshot0007-medium.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 200px;" src="http://ph7lab.googlepages.com/Screenshot0007.png/Screenshot0007-medium.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ph7lab.googlepages.com/Screenshot0013.png/Screenshot0013-medium.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 200px;" src="http://ph7lab.googlepages.com/Screenshot0013.png/Screenshot0013-medium.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ph7lab.googlepages.com/Screenshot0014.png/Screenshot0014-medium.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 200px;" src="http://ph7lab.googlepages.com/Screenshot0014.png/Screenshot0014-medium.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ph7lab.googlepages.com/Screenshot0015.png/Screenshot0015-medium.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 200px;" src="http://ph7lab.googlepages.com/Screenshot0015.png/Screenshot0015-medium.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;S60ResourceCleanup is a Python script to clean-up drives from unneeded application resource and help files on Series 60 platform.&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Several Symbian applications (especially Nokia’s) install resource and help files for quite many languages even though you never going to use them. This script lets you select the languages that you want to keep and deletes the resource and help files of all the other languages. The deleted files have the extensions .r[dd] and.h[dd] where dd is the language code and they are deleted from C:\Resource and/or E:\Resource and their sub-directories.&lt;br /&gt;As a result a lot of free space (several MB depending on your apps) can be freed from the disk drives. The script can take a backup of the removed files, on memory card (E:\ResourceBackup). You can also restore the files from the backup. Or you can transfer them in your pc and free space from the memory card.&lt;br /&gt;&lt;br /&gt;Requirements:&lt;br /&gt;- An S60 phone with patches to disable capabilities.&lt;br /&gt;- Python for S60 installed on the phone.&lt;br /&gt;- Python script shell installed on the phone.&lt;br /&gt;&lt;br /&gt;Usage:&lt;br /&gt;- Download rescleanup.py and copy it to c:\python (or e:\python).&lt;br /&gt;- Disable capabilities on the phone (please don’t ask me how, there are many sources for that).&lt;br /&gt;- Open Python shell and from menu select “Run script” and select the script.&lt;br /&gt;- Follow the menu to perform cleanup/restore.&lt;br /&gt;- Enable capabilities on the phone, as some apps require it to function properly (like ngage).&lt;br /&gt;&lt;br /&gt;&lt;a href="http://ph7lab.googlepages.com/rescleanup.py"&gt;Download rescleanup.py&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-191847245984339433?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/191847245984339433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=191847245984339433&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/191847245984339433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/191847245984339433'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/s60resourcecleanup-s60-3rd-devices.html' title='S60ResourceCleanup - S60 3rd devices.'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-2549825390539213629</id><published>2009-01-09T08:24:00.000+07:00</published><updated>2009-01-09T08:24:00.639+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>A Unique and Stylish QWERTY Clamshell Device</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mobile-phone-blog.com/images/blogs/9-2008/sprint-lg-lotus-a-unique-and-stylish.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 267px;" src="http://www.mobile-phone-blog.com/images/blogs/9-2008/sprint-lg-lotus-a-unique-and-stylish.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;Sprint will be launching the unique LG Lotus in October, which is a stylish and unique QWERTY clamshell device inspired by ladies makeup accessories. Due to its unique and chic form factor it also recieved he prestigious Red Dot Design Award. It will be available in Textured Purple and Satin Black colours for $149.99 on a two-year contract. All in all a perfect fashion device for all the messaging freaks out there.&lt;br /&gt;&lt;br /&gt;Here are the specifications:&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Network: CDMA 800/1900&lt;br /&gt;Size: 84 x 61 x 18 mm, Weight: 105 g&lt;br /&gt;Display: Main Screen 262k TFT colors (240 x 320 pixels), External Screen 65K TFT colors (176 x 220 pixels)&lt;br /&gt;Camera: 2 MP with Zoom and Video Recorder&lt;br /&gt;Connectivity: GPRS, Bluetooth 2.0,&lt;br /&gt;Memory: microSD / TransFlash&lt;br /&gt;Applications: Sprint Music, Sprint TV, Sprint Radio, Sprint Navigation, Email (POP3 / IMAP4 / SMTP), IM(AOL / Windows Live / Yahoo!), Wireless Backup&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-2549825390539213629?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/2549825390539213629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=2549825390539213629&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2549825390539213629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2549825390539213629'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/unique-and-stylish-qwerty-clamshell.html' title='A Unique and Stylish QWERTY Clamshell Device'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-2712255877217448831</id><published>2009-01-09T08:08:00.001+07:00</published><updated>2009-01-09T08:08:00.715+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cheap Laptops'/><title type='text'>ADM Pavilion dv2 ultra-portable not a netbook</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/hp-pavilion-dv2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 350px; height: 273px;" src="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/hp-pavilion-dv2.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;The sleek new ADM Neo platform the Pavilion dv2 series are a range of entertainment laptops whit a weight of about 3.8 pounds and has a keyboard that is eight percent smaller than full size. The dv2 Pavilion is an ultra-portable laptop with a 12.1 inch display.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;The Pavilion dv2 is powered by a 1.6GHz Athlon Neo MV-40 processor, with up to 4GB of RAM combined with a 500GB hard drive, ATI Mobility Radeon HD3410 discrete graphics and external Blu-ray player, Bluetooth, HDMI-out, an integrated webcam.&lt;br /&gt;&lt;br /&gt;Furthermore the Pavilion dv2 has optional 802.11n WiFi, and WWAN Gobi support, apparently runs on 64-bit Vista Home Premium and is less than an inch in thickness, and will be available in March at a start price of $699.00.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-2712255877217448831?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/2712255877217448831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=2712255877217448831&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2712255877217448831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/2712255877217448831'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/adm-pavilion-dv2-ultra-portable-not.html' title='ADM Pavilion dv2 ultra-portable not a netbook'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-202628906196646759</id><published>2009-01-09T07:26:00.001+07:00</published><updated>2009-01-09T07:26:00.687+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Free Download'/><title type='text'>ISO Image Burner</title><content type='html'>&lt;div align="justify"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.freewarezoom.com/wp-content/uploads/2009/01/iso-image-burner.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 315px; height: 282px;" src="http://www.freewarezoom.com/wp-content/uploads/2009/01/iso-image-burner.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;ISO Image Burner is Free ISO image CD/DVD Burning Software, it can help you to burn your ISO image files to CD/DVD Disc, support CD-R, DVD-R, DVD+R, CD-RW, DVD-RW, DL DVD+RW, HD DVD and Blu-ray Disc. It has ability to make bootable CD/DVD image file, process the boot information for CD/DVD image file, and have many other burning options, include test write, finalize disc and more. this program support standard ISO9660 and Joliet File System.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;ISO Image Burner support to erase the files from a CD-RW (re-writable disc) if your computer is equipped with a CD recorder, Before you can reuse a CD-RW or DVD-RW disc, you must erase it. You can use ISO Image Burner to erase CD-RW and DVD-RW discs.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.isoimageburner.com/iso_image_burner_setup.exe"&gt;DOWNLOAD NOW (610 KB)&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-202628906196646759?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/202628906196646759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=202628906196646759&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/202628906196646759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/202628906196646759'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/iso-image-burner.html' title='ISO Image Burner'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-397102129057808278</id><published>2009-01-08T11:17:00.003+07:00</published><updated>2009-01-08T11:17:00.518+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cheap Laptops'/><title type='text'>Lenovo announces 3 new IdeaPad Y series laptops</title><content type='html'>&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/yseries.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 350px; height: 121px;" src="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/yseries.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;Lenovo is to offer up three new IdeaPad Y series laptops to the computing world, these will be the Lenovo Y450 a 14 inch laptop, the Lenovo Y550 a 15.6 inch laptop and the Lenovo&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Y650 16 inch laptop, all of these three will feature 16:9 aspect ratio widescreen screens.&lt;br /&gt;&lt;br /&gt;The Lenovo Y Series laptops incorporate up to 500GB of storage along with up to 4GB of memory, optional NVIDIA GFX graphics, multi-touch touchpad, facial recognition tech and surround sound.&lt;br /&gt;&lt;br /&gt;The Lenovo Y650 laptop features JBL speakers and incorporates an ambient light sensor which will auto-adjust screen brightness. All of these Lenovo laptops weigh around 5.6 pounds and will become available in March with the Y650 costing $1199, the Y550 and Y450 costing $829.00.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-397102129057808278?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/397102129057808278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=397102129057808278&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/397102129057808278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/397102129057808278'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/lenovo-is-to-offer-up-three-new-ideapad.html' title='Lenovo announces 3 new IdeaPad Y series laptops'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-4839646146035579143</id><published>2009-01-08T09:15:00.000+07:00</published><updated>2009-01-08T09:15:00.320+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Symbian Freeware'/><title type='text'>Jbak TaskMan 1.0 for Series 60</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i98.photobucket.com/albums/l247/ziwo4u/jbaktaskman2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 210px; height: 280px;" src="http://i98.photobucket.com/albums/l247/ziwo4u/jbaktaskman2.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i98.photobucket.com/albums/l247/ziwo4u/jbaktaskman.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 210px; height: 280px;" src="http://i98.photobucket.com/albums/l247/ziwo4u/jbaktaskman.jpg" border="0" alt="" /&gt;&lt;/a&gt;is is powerfull task manager with many possibilities.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Features&lt;br /&gt;Ultimate replacement of standard task list, which called by menu-key long press.&lt;br /&gt;&lt;br /&gt;Customisable quick launch, where you can add program, document, phone number, SMS and e-mail.&lt;br /&gt;List of all programs in your phone with quick search by name or UID.&lt;br /&gt;List of processes, threads, chunks with quick search.&lt;br /&gt;Quick and stable termination of busy tasks.&lt;br /&gt;Autorun of programms.&lt;br /&gt;Phone reboot.&lt;br /&gt;Uninstalling of sis-applications.&lt;br /&gt;Info about free memory.&lt;br /&gt;Clocks with seconds and date with day of week.&lt;br /&gt;Detailed information about runned task, which you can copy to clipboard.&lt;br /&gt;Quick task switch by pressing and holding menu-key (Smooth task switch)&lt;br /&gt;Remember last-visited position in system phone menu.&lt;br /&gt;Detailed setting of menu-key&lt;br /&gt;Powerfull possibilities for power and memory saving&lt;br /&gt;&lt;br /&gt;&lt;a href="http://symbian-freeware.web.id/download/jbak-taskman-v10"&gt;Download Jbak TaskMan 1.0&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-4839646146035579143?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/4839646146035579143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=4839646146035579143&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4839646146035579143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4839646146035579143'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/jbak-taskman-10-for-series-60.html' title='Jbak TaskMan 1.0 for Series 60'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8249313440527537133</id><published>2009-01-08T08:22:00.000+07:00</published><updated>2009-01-08T08:22:00.680+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>Blackberry Storm 9530 ready to take the world by Storm</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mobile-phone-blog.com/images/blogs/10-2008/blackberry-storm-9530-ready-to-take.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 267px;" src="http://www.mobile-phone-blog.com/images/blogs/10-2008/blackberry-storm-9530-ready-to-take.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;Recently we have witnessed leaked images, docs and specifications of the Blackberry Storm and all the leaked information points towards a device that might prove to be a huge hit amongst business and consumer users alike. The device also looks quite impressive in the leaked images. Here are the latest technical specifications of the Verizon Blackberry Storm 9530.&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Network: EVDO Rev A: (1900/800 MHz),&lt;br /&gt;GSM/GPRS/EDGE: (850/900/1800/1900 MHz)&lt;br /&gt;UTMS/HSDPA/HSUPA: 2100MHZ&lt;br /&gt;Size: 112.52 x 62.2 x 13.95 mm&lt;br /&gt;Display: 3.25 inches HVGA+ with Multi-touch and Gesture Touch (480x360)&lt;br /&gt;Camera: 3.2 MP camera with vanity mirror&lt;br /&gt;Memory: 1GB flash for media, 192 MB Ram&lt;br /&gt;Browser: Full HTML browser&lt;br /&gt;Multimedia: 3.5mm jack, bluetooth stereo, Rhapsody OTA purchase and tethered subscription capable&lt;br /&gt;Battery: 1400mAh&lt;br /&gt;Expected Release date: Mid November&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8249313440527537133?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8249313440527537133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8249313440527537133&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8249313440527537133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8249313440527537133'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/blackberry-storm-9530-ready-to-take.html' title='Blackberry Storm 9530 ready to take the world by Storm'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-5972565340347382656</id><published>2009-01-08T08:02:00.001+07:00</published><updated>2009-01-08T08:02:00.364+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Free Download'/><title type='text'>PCWin Speaker Record</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.freewarezoom.com/wp-content/uploads/2008/12/pcwin-speaker-record.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 315px; height: 242px;" src="http://www.freewarezoom.com/wp-content/uploads/2008/12/pcwin-speaker-record.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;PCWin Speaker Record can records everything you hear from your speakers. Save as mp3 or wav files. Records at 128 Kbps CD quality. Now you can enjoy your music and podcast anytime.&lt;br /&gt;&lt;br /&gt;Record from Internet radio stations. Grab audio from any web site, podcast, Internet Radio, DVD or CD as it plays.&lt;br /&gt;&lt;br /&gt;Easy to use. Select mp3 or wav file format. Click ‘Start Recording’ and when you are ready to stop recording press ‘Stop Recording’ button. Then save your newly created mp3 or wav file and play it anytime.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Play your saved recording with Microsoft media player, Video Lan, WinAmp or any media player! It so easy, no complicated settings, just great CD quality 128 Kbps mp3 or wav files everytime.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.frontierdg.com/dl/pcwinsr.msi"&gt;DOWNLOAD NOW (765 KB)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-5972565340347382656?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/5972565340347382656/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=5972565340347382656&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/5972565340347382656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/5972565340347382656'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/pcwin-speaker-record.html' title='PCWin Speaker Record'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-4277105207048253357</id><published>2009-01-07T12:38:00.007+07:00</published><updated>2009-01-09T11:44:35.498+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips'/><title type='text'>Edit Your Windows Registry</title><content type='html'>&lt;div align="justify"&gt;Here are some tips to edit your windows registry.&lt;br /&gt;I suggest you to back the registry before.&lt;br /&gt;Enjoy...&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;How to remove recycle bin from your desktop Tip:&lt;br /&gt;&lt;br /&gt;Open Regedit by going to START - RUN and type Regedit and hit enter. Then you should navigate to following entry in registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\&lt;br /&gt;Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E} and delete it. This action should remove recycle bin from your desktop.&lt;br /&gt;====================================================================&lt;br /&gt;How to stop new programs installed balloon from coming up tip:&lt;br /&gt;&lt;br /&gt;Right click on START button and select properties. Click on Customize and go to Advanced tab and deselect check box saying "Highlight newly installed programs". This would help you stop this annoying feature from popping up every now and then.&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Unlock Toolbars to Customize Them Tip:&lt;br /&gt;&lt;br /&gt;The new Windows XP now features locking toolbars, and you can adjust them. You may customize a lot of the Windows XP features such as the Taskbar, Start Menu, and even toolbar icons in Internet Explorer and Outlook Express. Remember your right-click:&lt;br /&gt;* Right-click on a toolbar, and then click Lock the Toolbars to remove the check mark.&lt;br /&gt;* Right-click on the toolbar again, and then click Customize.&lt;br /&gt;&lt;br /&gt;You may add or remove toolbar buttons, change text options and icon options. When you've got the toolbar customized, click Close. Now right-click on the toolbar and then click Lock the Toolbars to lock them in place. com&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Want to remove shared documents folder from My Computer window tip:&lt;br /&gt;&lt;br /&gt;Some don't like my shared documents folder option. If you are one of that, here is a trick to remove it.Open registry editor by going to START-RUN and entering regedit.&lt;br /&gt;Once in registry, navigate to key HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Explorer \ My Computer \ NameSpace \ DelegateFolders You must see a sub-key named {59031a47-3f72-44a7-89c5-5595fe6b30ee}. If you delete this key, you have effectively removed the my shared documents folder.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;How to improve on shutdown time ? Close apps automatically &amp;amp; quickly at shutdown tip:&lt;br /&gt;&lt;br /&gt;Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_CURRENT_USER\CONTROL PANEL\DESKTOP and look for AutoEndTasks. On my computer default value is 0. Change it to 1. Thats all. Further more you can reduce the time it takes for Windows to issue kill directive to all active/hung applications.&lt;br /&gt;In doing this only constraint that you should make sure exists is that HungAppTimeout is greater than WaitToKillAppTimeout. Change the values of WaitToKillAppTimeout to say 3500 (since default value for HungAppTimeout 5000 and for WaitToKillAppTimeout is 20000)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Are you missing icons Tip:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Are you missing icons? You may be wondering where all the icons from your desktop are in Windows XP? Well if you're like me, you like to have at least My Computer, My Network Places, and My Documents on the your desktop.&lt;br /&gt;You need to:&lt;br /&gt;* Right-click on the desktop, and then click Properties.&lt;br /&gt;* Click the Desktop tab and then click on Customize Desktop.&lt;br /&gt;* Put a check mark in the box next to My Document, My Computer, My Network Places, or Internet Explorer, to add those familiar icons to your desktop. Easy yes!&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;span class="fullpost"&gt;How to login as administrator if you don't see it available tip:&lt;br /&gt;&lt;br /&gt;Unless and until you have run into issues and fixing XP (under which case you have to go to Safe Mode to login as Administrator), you can get to administrator screen by simply pressing CTRL+ALT+DELETE twice at the main screen.&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Speedup boot up sequence by defragmenting all key boot files tip:&lt;br /&gt;&lt;br /&gt;Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction. In right hand panel look for Enable. Right click on it and set it 'Y' for enable. This is the way I have it set on my computer. This will help speedup boot time.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Use a Shortcut to Local Area Network Connection Information:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Use a Shortcut to Local Area Network Connection Information Tip:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here's something new in Windows XP, instead of using the command line program and typing ipconfig to get local area network information, you can try using the following shortcut:&lt;br /&gt;* Click on Start, point to Connect to, and then click Show All Connections.&lt;br /&gt;* Right–click the connection you want information about, and then click Status.&lt;br /&gt;* In the connection Properties dialog box, click the Support tab.&lt;br /&gt;* For more information, click on the Advanced tab.&lt;br /&gt;&lt;br /&gt;To automatically enable the status monitor each time the connection is active, in the connection Properties dialog box, select the Show icon in taskbar notification area when connected check box.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Do you know you can have Virtual Desktops (like in Linux) with PowerToys ?&lt;br /&gt;&lt;br /&gt;If you have powertoys installed on Windows XP Its available for free at Microsoft download webpage. It is very easy to enable Microsoft Virtual Desktop Feature. Simply right click on the Start Panel Bar also called TaskBar, Click on Tool Bar and select Desktop manager.&lt;br /&gt;You would see a set of 5 icons placed on the right portion of the TAskBar. Click on number 1 to 4 to go to any of the desktops. Now you have have four different Active Desktops.&lt;br /&gt;IMPORTANT NOTE: You may see a little degradation in performance.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Customize Internet. Explorer Title bar tip:&lt;br /&gt;&lt;br /&gt;This tip won't make your computer any faster but may help personalize your computer experience. Open Registry by going to START-RUN and typing REGEDIT. Navigate to HKEY_CURRENT_USER\Software\Microsoft\Internet. Explorer\Main. In right hand panel look for string "Window Title" and change its value to whatever custom text you want to see.&lt;br /&gt;&lt;br /&gt;Easy Text Size Change in Help &amp;amp; IE Tip:&lt;br /&gt;I mentioned a way that you can change the size of the text that is display in the Help file and in Internet Explorer. As it turns out if you have a "wheel mouse," there is an even easier way to change the text size. In Internet Explorer or when viewing a Help file, simply hold the ctrl key while you spin the mouse wheel up to increase text size, or down to decrease text size.&lt;br /&gt;Java VM: Java applets run in Internet Explorer 6 (a component of Windows XP) just as they run in older versions of Internet Explorer. The Java VM is not installed as part of the typical installation, but is installed on demand when a user encounters a page that uses a Java Applet. For more information see the Microsoft Technologies for Java Web site.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Windows XP Shutdown and Power Off Tip:&lt;br /&gt;&lt;br /&gt;On some computers, by default, Windows XP doesn't power off the computer when you tell it to shut down. However, if your computer is relatively new, it can probably by shut completely off by WinXP. To configure your computer for this behavior, simply open the Control Panel, open Performance and Maintenance, then Power Options. On the APM tab, check next to "Enable Advanced Power Management support," then click OK. The next time you choose "Shut Down" from the Start Menu, your computer should shut down completely and then power off.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Customize Explorer Toolbar Tip:&lt;br /&gt;&lt;br /&gt;In Windows Explorer, you can customize the toolbar to make Explorer even more handy. The Toolbar is the bar of icons directly underneath the menu bar. It contains icons for going back, up one level, displaying folders or search, etc. You can right-click an open area of this Toolbar and choose Customize to change the order of these icons, and even to add new icons to it. For instance, I like to add the Map Drive and Disconnect buttons. In Windows XP, you may have to unlock the Taskbar before you can make changes in Windows Explorer.&lt;br /&gt;Lock the Taskba - If you find that your Windows XP Taskbar keeps being changed, or moved to one side or the top of your screen, and you didn't mean to have it do that, this tip is for you. Once you have your Task Bar arranged the way you like it, in the right location on the screen, and with all the right toolbars and icons, you can lock it, so that it won't get changed accidentally. To lock the Taskbar, simply right click it and choose Properties. In the window that appears, check the box (click) next to "Lock the Taskbar." Now you won't accidentally bump the mouse and have your Task bar end up on another side of the screen.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Check Personal Firewall Status Tip:&lt;br /&gt;&lt;br /&gt;In the previous tip, I mention how to turn on Windows XP's Personal Firewall feature. But once you turn it on, your connection looks just the same as it did before. How can you check the status of the connection and the firewall? Simply open Control Panel from the Start Menu, open Internet and Network Connections, then Network Connections. By default the view is of large icons.&lt;br /&gt;Click the View Menu, and choose "details" in order to reveal several more columns of information about the connections that your computer has. Check the Status column to see if your connection is currently connected, and whether or not it is "firewalled." You can even drag the column headings around (I like to slide the Status column right next to the Name column. You can even remove entire columns by right-clicking the column heading and unchecking it.&lt;br /&gt;&lt;br /&gt;Where does Window's Product Id get stored Tip:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There are two places at least where ProductId gets stored. To see the first place, open Registry by going to START-RUN and entering REGEDIT and Navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]. In right pane, look for key by the name "ProductId". This is your Windows Product Id. Alternatively you can navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion] and still find same field with the name ProductId.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can Keep Your Favorite Programs on Top of the Start Menu tip:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Do you have a favorite program that you frequently use? Elevate its priority on the Start menu by putting it at the top of the list. This ensures that the program will remain on the Start menu and cannot be bumped by other programs, even if you use the others more frequently.&lt;br /&gt;Right-click the link to your favorite program on the Start menu and select Pin to Start Menu.&lt;br /&gt;Your program will be moved permanently to the top part of the list, just below your browser and e-mail programs.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Having problems with Outlook Express ? Does it ask for password every time you connect tip:&lt;br /&gt;&lt;br /&gt;If this is problem for you. Sometimes no matter what you do, Outlook Express forgets your password and asks you to enter it again each and every time you connect to your mail server.I have a solution that may work for you. Open Registry by going to START-RUN and entering REGEDIT and Navigate to HKEY_CURRRENT USER\Software\Microsoft and look for "Protected Storage System Provider". There is a good chance that you will see this folder. If you have it. Simply delete it. More than likely, you have solved your problem.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to avoid auto play of CD ? Way I like best tip.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hey this time no registry trick even though there are ways in registry to do it. In earlier operating systems only those CD that had autorun.inf file in their root directory were able to execute on its own but with advent of WINDOWS XP it has become possible with just about anything. Well sometimes it is good but there are other times when you want to avoid this part of automation. What would I do. Simply press SHIFT key when you enter a CD in your CD drive. It won't Auto play. For those of you, who do want a registry hack. Here it is:&lt;br /&gt;Open Registry and navigate to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer] and look for key "NoDriveTypeAutoRun" and set its value to 185 (decimal). This would stop autoplay.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;This tip to speed up the Start Menu in Windows XP.&lt;br /&gt;Did you know you can customize the speed of the Start Menu by editing a Registry Key.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;* Click Start, and then click Run.&lt;br /&gt;* Type Regedit in the box, and then click OK.&lt;br /&gt;* Expand the menu in the left panel and select the HKEY_CURRENT_USER\Control Panel\Desktop folder.&lt;br /&gt;* Scroll down in the right panel and double click on the MenuShowDelay file.&lt;br /&gt;* In the Value Data box, change to default value for the menu speed from 400 to a lesser number, such as 1.&lt;br /&gt;*Click OK.&lt;br /&gt;Caution: Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you may want to back up any valued data on your computer.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="fullpost"&gt;====================================================================&lt;/span&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;Customizing Windows Explorer Context menu (right click menu in windows explorer)&lt;br /&gt;&lt;br /&gt;Ever wondered how does the right click menu (which is actually a context menu) work ? For example, when I right click in windows explorer, I see an option which says "open command window here". Do You know why I see this ? Well I see this because I have following entries in my registry.&lt;br /&gt;&lt;br /&gt;[HKEY_CLASSES_ROOT\Drive\shell\cmd]&lt;br /&gt;@="Open Command Window Here"&lt;br /&gt;[HKEY_CLASSES_ROOT\Drive\shell\cmd\command]&lt;br /&gt;@="C:\WINDOWS\System32\cmd.exe /k cd "%1""&lt;br /&gt;If You have never used a tweaking utility and have newly installed Windows XP, You would not see this option. You would have to navigate to [[HKEY_CLASSES_ROOT\Drive] go and create two subkeys ("cmd" and within that "command" and would have to put the text "Open Command Window Here" without quotes in default string value of "cmd" key and the text "C:\WINDOWS\System32\cmd.exe /k CD"%1"" without quotes in default string value of command key). After this You need to "LOG OFF" for these changes to take effect.&lt;br /&gt;Trick is in adding similar entries for other applications as well even though its much harder to come with ideas about what to put in the context menu!!!! .&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-4277105207048253357?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/4277105207048253357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=4277105207048253357&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4277105207048253357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/4277105207048253357'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/how-to-remove-recycle-bin-from-your.html' title='Edit Your Windows Registry'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-6575857558609121199</id><published>2009-01-07T11:27:00.001+07:00</published><updated>2009-01-07T07:57:22.937+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Cheap Laptops'/><title type='text'>Lenovo confirm ThinkPad W770ds dual-screen laptop as available</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/w700ds.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 271px;" src="http://www.cheaplaptops.org.uk/wp-content/laptopimg/2009/01/w700ds.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;Lenovo has at long last made their ThinkPad W700ds official, the dual screen W700ds has now been confirmed and is offering workstation performance with a 17 inch main display and a&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;10 inch secondary slide display.&lt;br /&gt;&lt;br /&gt;Details are still somewhat vague but the word is any perspective purchaser will more than likely be able to equip the Lenovo W700ds with optional RAID HDD / SSD set ups, NVIDIA Quadro FX graphics, and high-end Intel CPUs.&lt;br /&gt;&lt;br /&gt;Furthermore the Lenovo W700ds will carry up to 8GB of DDR3 RAM, 7-in-1 card reader, 5 USB ports, dual-link DVI / Display Port / VGA support, optional WiMAX, WiFi, dual thermal solution for cooling, a smartcard reader, and is available as of today for the price of $3,663.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-6575857558609121199?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/6575857558609121199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=6575857558609121199&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/6575857558609121199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/6575857558609121199'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/lenovo-confirm-thinkpad-w770ds-dual.html' title='Lenovo confirm ThinkPad W770ds dual-screen laptop as available'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-3222360475975142195</id><published>2009-01-07T08:32:00.003+07:00</published><updated>2009-01-07T09:00:13.326+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Symbian Freeware'/><title type='text'>ZooZBeat Lite</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://thumbnails.imajr.com/zoozbeat00-1323757.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 175px; height: 281px;" src="http://thumbnails.imajr.com/zoozbeat00-1323757.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;ZooZBeat is a gesture-based mobile musical studio, simple enough for non-musicians to immediately become musically expressive but rich enough for experienced musicians to push the envelope of mobile music creation.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Start playing with just a click or select among background beats in a variety of styles. Use shake and tilt movements, tap the screen, or press the keypads to create and modify rhythmic and melodic lines. Based on years of research, our propriety musical engine will interpret your actions into beautiful music that fits your style.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.zoozmobile.com/zoozbeatnokia.php"&gt;Download ZooZBeat Lite&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;*The free version (”Lite” mode) features individual play on a single phone, 2 beats and 10 instrument sounds.&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-3222360475975142195?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/3222360475975142195/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=3222360475975142195&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/3222360475975142195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/3222360475975142195'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/zoozbeat-lite.html' title='ZooZBeat Lite'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-7929311411892227791</id><published>2009-01-07T08:20:00.001+07:00</published><updated>2009-01-07T08:21:39.472+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Phones'/><title type='text'>Introducing the Nokia 8800 Gold Arte</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mobile-phone-blog.com/images/blogs/12-2008/introducing-the-nokia-8800-gold-arte.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 357px; height: 300px;" src="http://www.mobile-phone-blog.com/images/blogs/12-2008/introducing-the-nokia-8800-gold-arte.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;After the Carbon Arte 8800, Nokia has announced the shiny Gold Arte 8800 luxury device for the fashion conscious folks. The device features a slider form factor and comes with 18-carat gold plating and luxurious white leather on the front and back. The specifications of the device are similar to the Carbon Arte 8800, which are listed below:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Network: GSM (900/1800?1900Mhz), UMTS 2100Mhz&lt;br /&gt;Dimensions: 109 x 45.6 x 14.6 mm&lt;br /&gt;Weight: 150g&lt;br /&gt;Display: 2 inches 16 million OLED Display (240 x 320 pixels)&lt;br /&gt;Camera: 3.2 MP Camera with Autofocus, Digital Zoom and Video Recording&lt;br /&gt;Connectivity: GPRS, EDGE, 3G, Bluetooth, USB&lt;br /&gt;Memory: 4GB&lt;br /&gt;Multimedia: Audio/Video player&lt;br /&gt;Others: Full HTML Browser (Opera Mobile), Email, Accelerometer&lt;br /&gt;Battery: 1000 mAh Li-Ion (3.33 hours talktime, 300 hours standby time)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-7929311411892227791?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/7929311411892227791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=7929311411892227791&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7929311411892227791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/7929311411892227791'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/introducing-nokia-8800-gold-arte.html' title='Introducing the Nokia 8800 Gold Arte'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8167147753712254189.post-8611102630076529604</id><published>2009-01-07T07:58:00.005+07:00</published><updated>2009-01-07T08:58:08.117+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Free Download'/><title type='text'>Data Sweeper Pro</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.freewarezoom.com/wp-content/uploads/2008/12/datasweeperpro.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 315px; height: 244px;" src="http://www.freewarezoom.com/wp-content/uploads/2008/12/datasweeperpro.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;Data Sweeper Pro is a lightweight, fast and easy to use file shredder which provides you a safe way to dispose of any file for good. If you need to get rid of sensitive private information such as bank statements, ID papers, credit card information then Data Sweeper Pro is a must have.&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;Once you delete a file, the content of the file is not destroyed and it is very common for data scavenging software to reconstruct the original file. Files can be restored even if you empty the Windows Recycle Bin and in order to make sure your file will never be recovered, you need to physically “shred” the disk contents by filling it up with random data.&lt;br /&gt;&lt;br /&gt;Features such as : active list of files to be shredded, shred method (random char fill or zero overwrite which is faster, by the way) and one final important parameter : the number of passes in the shredding process. Yes, it is possible to define a custom level of data security by repeatedly overwriting the file until no data can be restored , not even by manually examining the hard disk’ structure.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.bestsecuritytips.com/downloads/Data-Sweeper-Pro-setup.exe"&gt;DOWNLOAD NOW (5.9 MB)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8167147753712254189-8611102630076529604?l=tanalek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanalek.blogspot.com/feeds/8611102630076529604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8167147753712254189&amp;postID=8611102630076529604&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8611102630076529604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8167147753712254189/posts/default/8611102630076529604'/><link rel='alternate' type='text/html' href='http://tanalek.blogspot.com/2009/01/data-sweeper-pro.html' title='Data Sweeper Pro'/><author><name>alek</name><uri>http://www.blogger.com/profile/00969710768645586286</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
