Google Search

Custom Search

Friday, December 11, 2009

Creating a New Domain Name

When someone wants to create a new domain, he or she has to do two things:
Find a name server for the domain name to live on.
Register the domain name.
Technically, there does not need to be a machine in the domain -- there just needs to be a name server that can handle the requests for the domain name.
There are two ways to get a name server for a domain:

You can create and administer it yourself.
You can pay an ISP or hosting company to handle it for you.
Most larger companies have their own domain name servers. Most smaller companies pay someone.
The history of HowStuffWorks is typical. When howstuffworks.com was first created, it began as a parked domain. This domain lived with a company called www.webhosting.com. Webhosting.com maintained the name server and also maintained a machine that created the single "under construction" page for the domain.

To create a domain, you fill out a form with a company that does domain name registration (examples: register.com, verio.com, networksolutions.com). They create an "under construction page," create an entry in their name server, and submit the form's data into the whois database. Twice a day, the COM, ORG, NET, etc. name servers get updates with the newest IP address information. At that point, a domain exists and people can go see the "under construction" page.

HowStuffWorks then started publishing content under the domain www.howstuffworks.com. We set up a hosting account with Tabnet (now part of Verio, Inc.), and Tabnet ran the DNS for HowStuffWorks as well as the machine that hosted the HowStuffWorks Web pages. This type of machine is called a virtual Web hosting machine and is capable of hosting multiple domains simultaneously. Five-hundred or so different domains all shared the same processor.

As HowStuffWorks became more popular, it outgrew the virtual hosting machine and needed its own server. At that point, we started maintaining our own machines dedicated to HowStuffWorks, and began administering our own DNS. We currently have four servers:

AUTH-NS1.HOWSTUFFWORKS.COM 70.42.150.19
AUTH-NS2.HOWSTUFFWORKS.COM 70.42.150.20
AUTH-NS3.HOWSTUFFWORKS.COM 70.42.251.19
AUTH-NS4.HOWSTUFFWORKS.COM 70.42.251.20
Our primary DNS is auth-ns1.howstuffworks.com. Any changes we make to it propagate automatically to the secondary, which is also maintained by our ISP.

All of these machines run name server software called BIND. BIND knows about all of the machines in our domain through a text file on the main server that looks like this:

@ NS auth-ns1.howstuffworks.com.
@ NS auth-ns2.howstuffworks.com.
@ MX 10 mail

mail A 209.170.137.42

vip1 A 216.183.103.150
www CNAME vip1

Decoding this file from the top, you can see that:
The first two lines point to the primary and secondary name servers.
The next line is called the MX record. When you send e-mail to anyone at howstuffworks.com, the piece of software sending the e-mail contacts the name server to get the MX record so it knows where the SMTP server for HowStuffWorks is (see How E-mail Works for details). Many larger systems have multiple machines handling incoming e-mail, and therefore multiple MX records.
The next line points to the machine that will handle a request to mail.howstuffworks.com.
The next line points to the IP address that will handle a request to oak.howstuffworks.com.
The next line points to the IP address that will handle a request to howstuffworks.com (no host name).
You can see from this file that there are several physical machines at separate IP addresses that make up the HowStuffWorks server infrastructure. There are aliases for hosts like mail and www. There can be aliases for anything. For example, there could be an entry in this file for scoobydoo.howstuffworks.com, and it could point to the physical machine called walnut. There could be an alias for yahoo.howstuffworks.com, and it could point to yahoo. There really is no limit to it. We could also create multiple name servers and segment our domain.

As you can see from this description, DNS is a rather amazing distributed database. It handles billions of requests for billions of names every day through a network of millions of name servers administered by millions of people. Every time you send an e-mail message or view a URL, you are making requests to multiple name servers scattered all over the globe. What's amazing is that the process is usually completely invisible and extremely reliable!

How Domain Name Servers Work

If you spend any time on the Internet sending e-mail or browsing the Web, then you use domain name servers without even realizing it. Domain name servers, or DNS, are an incredibly important but completely hidden part of the Internet, and they are fascinating. The DNS system forms one of the largest and most active distributed databases on the planet. Without DNS, the Internet would shut down very quickly.

When you use the Web or send an e-mail message, you use a domain name to do it. For example, the URL "http://www.howstuffworks.com" contains the domain name howstuffworks.com. So does the e-mail address "iknow@howstuffworks.com."

Human-readable names like "howstuffworks.com" are easy for people to remember, but they don't do machines any good. All of the machines use names called IP addresses to refer to one another. For example, the machine that humans refer to as "www.howstuffworks.com" has the IP address 70.42.251.42. Every time you use a domain name, you use the Internet's domain name servers (DNS) to translate the human-readable domain name into the machine-readable IP address. During a day of browsing and e-mailing, you might access the domain name servers hundreds of times!

In this article, we'll take a look at the DNS system so you can understand how it works and appreciate its amazing capabilities

DNS Servers and IP Addresses
Domain name servers translate domain names to IP addresses. That sounds like a simple task, and it would be -- except for five things:

There are billions of IP addresses currently in use, and most machines have a human-readable name as well.
There are many billions of DNS requests made every day. A single person can easily make a hundred or more DNS requests a day, and there are hundreds of millions of people and machines using the Internet daily.
Domain names and IP addresses change daily.
New domain names get created daily.
Millions of people do the work to change and add domain names and IP addresses every day.
The DNS system is a database, and no other database on the planet gets this many requests. No other database on the planet has millions of people changing it every day, either. That is what makes the DNS system so unique.
IP Addresses
To keep all of the machines on the Internet straight, each machine is assigned a unique address called an IP address. IP stands for Internet protocol, and these addresses are 32-bit numbers normally expressed as four "octets" in a "dotted decimal number." A typical IP address looks like this:


70.42.251.42
The four numbers in an IP address are called octets because they can have values between 0 and 255 (28 possibilities per octet).

Every machine on the Internet has its own IP address. A server has a static IP address that does not change very often. A home machine that is dialing up through a modem often has an IP address that is assigned by the ISP when you dial in. That IP address is unique for your session and may be different the next time you dial in. In this way, an ISP only needs one IP address for each modem it supports, rather than for every customer.

If you are working on a Windows machine, you can view your current IP address with the command WINIPCFG.EXE (IPCONFIG.EXE for Windows 2000/XP). On a UNIX machine, type nslookup along with a machine name (such as "nslookup www.howstuffworks.com") to display the IP address of the machine (use the command hostname to learn the name of your machine).

For more information on IP addresses, see IANA.

As far as the Internet's machines are concerned, an IP address is all that you need to talk to a server. For example, you can type in your browser the URL http://70.42.251.42 and you will arrive at the machine that contains the Web server for HowStuffWorks. Domain names are strictly a human convenience.

Domain Names
If we had to remember the IP addresses of all of the Web sites we visit every day, we would all go nuts. Human beings just are not that good at remembering strings of numbers. We are good at remembering words, however, and that is where domain names come in. You probably have hundreds of domain names stored in your head. For example:

www.howstuffworks.com - a typical name
www.yahoo.com - the world's best-known name
www.mit.edu - a popular EDU name
encarta.msn.com - a Web server that does not start with www
www.bbc.co.uk - a name using four parts rather than three
ftp.microsoft.com - an FTP server rather than a Web server
The COM, EDU and UK portions of these domain names are called the top-level domain or first-level domain. There are several hundred top-level domain names, including COM, EDU, GOV, MIL, NET, ORG and INT, as well as unique two-letter combinations for every country.

Within every top-level domain there is a huge list of second-level domains. For example, in the COM first-level domain, you've got:

howstuffworks
yahoo
msn
microsoft
plus millions of others...
Every name in the COM top-level domain must be unique, but there can be duplication across domains. For example, howstuffworks.com and howstuffworks.org are completely different machines.

In the case of bbc.co.uk, it is a third-level domain. Up to 127 levels are possible, although more than four is rare.

The left-most word, such as www or encarta, is the host name. It specifies the name of a specific machine (with a specific IP address) in a domain. A given domain can potentially contain millions of host names as long as they are all unique within that domain.

Because all of the names in a given domain need to be unique, there has to be a single entity that controls the list and makes sure no duplicates arise. For example, the COM domain cannot contain any duplicate names, and a company called Network Solutions is in charge of maintaining this list. When you register a domain name, it goes through one of several dozen registrars who work with Network Solutions to add names to the list. Network Solutions, in turn, keeps a central database known as the whois database that contains information about the owner and name servers for each domain. If you go to the whois form, you can find information about any domain currently in existence.

While it is important to have a central authority keeping track of the database of names in the COM (and other) top-level domain, you would not want to centralize the database of all of the information in the COM domain. For example, Microsoft has hundreds of thousands of IP addresses and host names. Microsoft wants to maintain its own domain name server for the microsoft.com domain. Similarly, Great Britain probably wants to administrate the uk top-level domain, and Australia probably wants to administrate the au domain, and so on. For this reason, the DNS system is a distributed database. Microsoft is completely responsible for dealing with the name server for microsoft.com -- it maintains the machines that implement its part of the DNS system, and Microsoft can change the database for its domain whenever it wants to because it owns its domain name servers.

Every domain has a domain name server somewhere that handles its requests, and there is a person maintaining the records in that DNS. This is one of the most amazing parts of the DNS system -- it is completely distributed throughout the world on millions of machines administered by millions of people, yet it behaves like a single, integrated database!

Use Dynamic DNS to host websites from home

This article is primarily aimed at people who need to make their local development environment visible to the Internet. If you are interested in developing Facebook applications your ears should be perking up at this point. If you are interested in hosting your own website from home, there are more things to be considered than are covered here, so you should make sure and read some of the more authoritative articles on the topic.

The Facebook dilemma

Most Drupal developers use local copies of Apache, MySQL and PHP to develop their sites on their desktop or laptop machines. They then upload Drupal files and database dumps to a hosted web server when it is time for the site to go live. The model of working on a local site is great and saves a lot of development time because you can use good tools like Komodo, and you don't get bogged down by network lag.

Testing webservices is usually not a problem for the local installation because the vast majority of all Drupal sites are web service consumers. They access APIs from Amazon, Google, EBay, PayPal, Digg and Twitter using any number of HTTP based protocols. In almost every case the Drupal site instigates the web service transaction. Your local website knows how to find Amazon's services, so initiating the exchange isn't a problem.

This last detail is important because it is exactly where things change with Facebook. Facebook and its newly released API represents a new generation of web services in that Facebook is as much a web service consumer as it is a provider. Whereas Amazon's services sit and wait politely for your site to interface with them, Facebook is usually the initiator of any interaction between Facebook and your Drupal site.

Because your Drupal site must be available to Facebook during the entire development cycle of a Facebook application, your localhost environment will be inadequate unless you take some extra steps. The extra steps in this case are to use a service called Dynamic DNS to map a host name to your local development environment, and that is what I'm now going to show how to do.

The rest of this article assumes that you have a local instance of Apache (or some other web server) running on localhost:80. See this Lullabot article for instructions on setting up your local Drupal development environment if this is not the case.

What is Dynamic DNS and how do I get some?

Dynamic DNS is a service that keeps track of the IP address of your local machine and routes traffic for a particular host name to that IP address. This is useful when your internet service provider (ISP) assigns you a new IP address every time you make an Internet connection.

Normally, you map a domain, example.com, to an IP address like 140.211.166.6. This mapping then gets disseminated around the Internet and cached in a myriad DNS servers. The caching and disseminating is great when the mapping stays the same for a long time because it makes lookups fast and distributed. This feature of the system makes changing the mapping a lengthy process because that distributed cache needs to get updated. This can take 20 minutes to two days... not exactly the agility that you'd need if your IP changes once a day or more.

Dynamic DNS services consist of two parts. First, they provide normal DNS service for the host name in question. The difference is that the maximum caching time is set to a very low interval, such as 60 seconds. This prevents the DNS information from being cached in any other DNS servers and forces every lookup to be answered by the primary DNS server itself.

Second, the machine with the variable IP address needs a mechanism for telling the Dynamic DNS service provider what its current IP address is. This is done either by configuring your router to provide the service or by installing a software client on your computer to ping the DNS provider any time your IP changes.

Thus the first step in getting a Dynamic DNS hostname set up is to find a service provider. I chose DynDNS and will use them for the rest of demonstration. There are many other services available, however.

Setting up a DynDNS account

Getting an acount from DynDNS.com is easy. Make sure to remember your password (or if you generate it like I do, write it down), because you will need it later when configuring the router or the software updater. Once you've logged in to DynDNS.com using your new credentials, click New DynDNS Host to pick your hostname. While it is possible to register a domain and have that be managed by DynDNS, I found it more convenient to use one of the hostnames that they make available to you. After all, this is just to simplify my development process, not to host a real website from my laptop. Figure I shows how I configured the host. The IP address turns out to be irrelevant on this form because it is the task of the router or updater to keep DynDNS informed of this number.

Host A Web Server on Your Home PC

If you want to make small site of your own and don’t want to pay for hosting prices, this article and exactly tell you how to do it.I had always wondered if I can host my blog or a small site on my laptop but well looking at traffic and security I can’t.

But if you want to make a website for friends and family this can be a good solution for u . You don’t have to pay any money for this. A friend was going through some magazine ( I am not sure which one ) and he told me about a software that really can help you hosting a web site on your own pc.I gave it a try and its really good

Update : Also check out Opera Unite, advanced option to create a web server on home pc

.A small analysis and experience of this software in just 6 steps and its tested in Windows Xp, Vista you need to check

Step 1: Download and Run The Software
Download the HFS or Http file server.It is free and open source and above all that its a standalone executable that requires no installation.

When you run HFS you might be asked whether or not allow hfs.exe to connect to Internet.Unblock it.
But if you have 3rd party firewall you will have to configure it accordingly.
Step 2: Configure the port
By default HFS uses port 80.if you your firewall is blocking port 80, set HFS to some other port( for example to 8025 or which ever is free, as a precaution keep it above 1024 which is used my operating system itself.)

To change the port number, click on Port Number menu and enter a new one.
Also, if you are behind a router or firewall, you may in some rare cases, need to set up port forwarding. For all the help required for visit portfrward
Port-forward can help you out to set up port forwarding.There you can choose the router type and choose a program you want to set up port forwarding for, which is in our case is HFS.
Step 3: Test HFS
Now you need to test your settings before you start.Click the menu in HFS and choose self test.If the test completes successfully, your settings are correct and you are ready for next step, To point your web browser to your ip address.

Step 4: Register A domain
For setting up a web site, you need to first assign it a domain name.Domain name are aother name for a computer ip address.For this, you will need to a DNS service running on your computer which can be mapped to particular ip address.

Create a Create a new user at No-IP account.
Login to the site with the account you created.On the left-sidebar click on “Hosts/Redirects”
Click on Add.In the page that opens enter domain name of your choice e.g “myfamilypics” and It will create a sub-domain on its own server that will work on your ip.

Your IP is recorded when you add the domain name.If you ISP is blocking port 80, you can choose a redirect given under same page.
Click on “Create host” and you are ready to roll.
Access the same from your own browser.You can add your file In HFS and access the same.
Trust me I have done it and it works.But i cant give the link of my url ( as it is hosted on my computer) here keeping in mind the security issues which I am not aware of. SO you also should share it among your friends.

Step 5. Install The dynamic update Client
Skip this step if yo have a static ip.If you don’t, you will need a client software to take care of of your changing ip address.

Download the No-Ip.com Dynamic DNS update client software.
Install it and provide your login details.This program will sit in the system tray and automatically update your NoIp account when your external ip changes.
Step 6: Launch Your Website
You can now decide what page will appear when someone access your site, like the default page.To change the default page,

Open HFS and click on “You are in Easy Mode ” to turn it to advance mode.
Right click on little house icon on VFS and click on “Bind Root to Real Folder”.
Now you can add files and folder here which you want to make available in your website.
Next is when your site is ready send the address which you created in NO-IP or step 4 to all your friends.
You can even see what others are viewing in advanced mode of hfs

This helped me a lot to understand how things work when my blog is hosted and how do my hosting service works.This was a Small example on low scale basis for you to try and for people who want to run there host on there own system.Do tell me your experience when you try it.I will be glad.

Dell Inspiron 14z Laptop


Mobility Redesigned
Introducing the new InspironTM 14z laptop. It fits perfectly by your side with mobile features that keep you connected wherever life might take you.

Easily travels by your side, starts at 4.4 lbs.1 with a 4-cell battery and is only 1" (1.04" - 1.15") thin.
Get up to 8 hours2 and 25 minutes (preliminary) of battery life3.
Watch your favorite DVDs using the built-in optical drive.
Experience true mobility with Intel’s ultra-low-voltage processors.

DellInspironTM 11z Laptop


Lighten Up
Introducing the InspironTM 11z, Dell’s newest thin and light Inspiron laptop starting at only $399.

Easily travels by your side, weighing approximately 3 lbs.1 and measuring only 1" thin.
Experience true mobility with Intel’s ultra-low-voltage processors.
Store your memories as soon as they unfold up to a 320GB2 hard drive.
Internal optical drive not included; external optical drive optional.

iMac


Apple introduced the first iMac more than a decade ago. And the design philosophy remains the same:
an all-in-one computer that’s as powerful as it is beautiful

Big, beautiful displays.

21.5-inch and 27-inch displays.
The new iMac has come a long way from the first 15-inch iMac. Take one look and you’ll see just how far. A 21.5-inch or 27-inch display with edge-to-edge glass covers nearly the entire front of the enclosure. When all you see is the display, nothing gets between you and what’s onscreen. Movies, TV shows, websites, photos — everything looks stunning on the new 16:9 widescreen iMac display.

LED backlighting.
When a display has more pixels, you need to push more light through them to achieve the best picture possible. LED backlighting in the new iMac does exactly that, with remarkable brightness and efficiency. Because the LED backlight doesn’t take up much space, the iMac enclosure stays thin — even with all the high-performance components inside.

Higher resolution.
The new 21.5-inch iMac features 1920-by-1080 HD resolution. Apple engineers could simply have stretched that resolution up and out for the 27-inch iMac. Instead, they took the display well beyond HD with 2560-by-1440 resolution. That’s 78 percent more pixels than the 21.5-inch iMac.

IPS technology.
The iMac display is designed to look great from almost any angle. A technology called in-plane switching (IPS) makes this possible. Whether you’re sitting in front of the display or standing off to the side, you’ll get a perfect picture with superb color consistency and no loss of detail.

Evolution of iMac.
It was a great idea then, and it’s a great idea now. The all-in-one design of the first flat-panel iMac cleaned up the desktop. It put everything you need — display, processor, graphics card, hard drive, optical drive, memory, and more — inside one simple enclosure. New technology inside and out makes the new iMac a worthy addition to the all-in-one dynasty.



Seamless enclosure.
While you’ll find a collection of ports on the back of iMac, you won’t find much else. A seamless, precision-forged enclosure makes the back one continuous aluminum surface. And there’s only one cord: the power cord.


Wireless keyboard and new Magic Mouse. Standard.

Clutter-free wireless.
iMac embodies simple design that eliminates desktop clutter. So naturally, it’s the first Mac to come standard with the Apple Wireless Keyboard and the new wireless Magic Mouse.

Multi-Touch technology.
Magic Mouse is designed to do all the things a mouse should do — pointing, clicking, and scrolling — but with no scroll wheel, no trackball, and no visible button. Magic Mouse uses Multi-Touch technology to let you click, scroll, or swipe anywhere on its perfectly smooth, seamless top shell. But the real magic of Magic Mouse is how it knows what you want to do. A chip inside Magic Mouse acts as a brain, detecting the difference between a resting hand, a scrolling finger, a two-finger swipe, and a simple click. It’s the smartest mouse we’ve ever made

Tuesday, November 17, 2009

Domain Registration @ Nexus

Domain Registrations @ Nexus
A domain name, signifies your own address on the Internet. As no two parties may ever hold the same domain name at the same time, it is a truly unique identifier of you or your company. It is how your customers will remember you and find you among the millions of other Web sites on the Internet. If you just want a domain name to point your web site to, you can do that at a very competitive prices through Nexus. .pk domain registration (.com.pk, .net.pk, .org.pk) are also available. Please click here for details.

Unlike other registrars, Nexus has much more to offer. At Nexus you get the most out of your domain registration, you get the most versatile and complete feature set at no additional charge, some of them being unique in our business.

No registrar out there has the expandability we offer, at any price.

With each .com, .net, .org, info & .biz domain registration at our $8.99/domain rate you may take advantage of free:
eMail forwarding for up to 100 permanent, personal email addresses
Insertion of your domain name into our geographically disperse name servers where you can make "hosts" (or third-level names under your name), such as "www", "mail", or "ftp".
URL forwarding. Point your names to any IP address or URL on the Internet with two types of URL redirection so you can have your name go to any URL on the net the way you want. We also support the most popular DNS record types such as "A", "MX" and "CNAME"
Name management via a web based account where you can easily and quickly manage your domain names in real-time.
Registration of long domain names is no problem for us: up to 63 characters (not counting ".com").

Free Web Hosting

"Free Webspace" is a directory list of free web hosting providers (free hompage hosting sites), with about 300 of the best free web space hosting sites with reviews, testimonials, and ratings, and is updated daily. To find a free web page hosting service that fits your needs, use the Search box on the left. If you need special web hosting features for your free web space, such as FrontPage server extensions, PHP, CGI, ASP, MySQL databases, etc., try our Advanced Free Web Hosting Search. The web hosting review page for each free website hosting company listed will allow you to read the reviews and ratings by others, or give your own. The newest additions to our searchable database of free webhosting providers are in a list below. The Linux web hosting for this website is now hosted on a fast dedicated server hosting, to serve you better.

How To Find A Perfect Web Host

Take into consideration that there is no perfect web hosting plan out there. We can back that up with the flat out knowledge that any one hosting plan does not fit every requirement, budget and web site, therefore it can’t be perfect. You can however find the perfect web host, that is, at least a perfect web host for YOU.

First do a little smart investigating as to exactly what you need from your hosting provider. Are you looking for cheap web hosting and have a small budget? Does your webhosting provider need to have a datacenter near you and have the ability to let you get your hands on a dedicated or collocated server? Well cheap web space is everywhere, you can find that easy enough, but finding the perfect mesh of the extras beyond just a server plugged into the wall and then into the backbone, is what will get your problems taken care of before you even knew you had them.

Taking price out of the picture for now, since cheap hosting is really available from any web host out there these days, let’s focus on the web site itself. What will you be doing with your site that makes unlimited data storage and transfer a necessity? Is your blog popular enough to require terabytes of bandwidth? Will your company web site be able to stand with one hundred other sites on a shared hosting account, sharing the drive and IP address, and connection for that matter? Your best web hosting plans will not always be the ones with sky-high limits, or no limits on your web site hosting, but will keep their web space and yours at a maintainable level in a catered-to environment.

Once you have determined what your web site will do for you, ask yourself, or your developer HOW it will do those things. Will you need ASP hosting on a Windows or modified Linux server? While most business web hosting accounts are beefy enough to handle hundreds or thousands of simultaneous visitors, will your database or cart that accompanied your ecommerce web hosting be able to take that much pressure? Simultaneous activity is one of the weak points in a cheap host and its ability to deliver reliable website hosting service.

Web Site Hosting (Shared Hosting)

Budget Web Hosting
creativeON Hosting caters for personal and small business clients need with budget web site hosting plans. All budget sitehosting plans are available for on both windows and Linux. All budget web hosting plans are feature rich and come one click installers for famous blogging software, content management systems and image galleries. All the plans come with life time free domain name.

Business Web Hosting
These hosting packages are for the corporate clients who use the email and website as a basic business practice. All the business website hosting plans come with “Backup mail servers” so you never lose a single email. Our manage spam protection (Almost Zero spam service) can also be combined with these package for a little extra cost. Business packages mean Extreme performance in terms of Uptime, website speed and data protection

Reseller Web Hosting
If you are a web developers, or selling web site hosting services our wide range of multi-domain and reseller hosting plans the best choice for you. We offer Linux and windows reseller plans (unlike many other hosts who will offer only Linux based resellers accounts). We offer the reseller packs on Plesk and cpanel control panels.

Cheap Web Hosting

Cheap web hosting is easy to find these days because there is so much competition between webhosting companies. Cheap doesn’t necessarily equate to lower quality. Cheap web hosting is a popular choice for new website owners. If you want to build a small sized website, an affordable webhosting package may be ideal for you.

There are many factors you must consider before choosing an affordable web hosting package. You need to take a look at what kind of features you'll get in your hosting package. Most hosting plans include features such as, Perl, JAVA, PHP, Miva, Shell Access, etc. Ask yourself a few questions first. How much disk space you will need?. How big is your website? How many email account will you need? How many sub-domains will you have? Choosing a cheap web hosting package will depend on how much traffic your site will get. If you expect to have a lot of visitors, cheap web hosting may not be for you. You just have to do research to be sure you are getting what you need.

The obvious benefit of affordable web hosting is you will save money every month. You can find a quality web hosting package for under ten dollars per month. Cheap web hosting is loaded with features to help your web site succeed, all at one affordable price. On this site you can find a list of the top cheap web hosting companies. The companies are rated by their price, reliability, and quality of service.. The cheap web hosting company's price also depends on the features that are provided. Dick space available can be up to 5000MB. Bandwidth can go to 300GB. Most affordable packages offer free set up. This is a big plus for the new webmaster with limited knowledge.

The top web hosting companies reviewed are: Blue Host, HostGator, Start Logic, Easy CGI, iPower Web, Lunar Pages, HostMonster, In Motion Hosting, and DreamHost.. All of these companies offer a quality, affordable web hosting package

Thursday, October 15, 2009

HP PC Touch Screen

HP pc touch screen HP TouchSmart IQ500 Series PC

Touchscreen Computer



Touchscreen Computer Display Floats in Mid-Air

HP Pavilion dv2


Manufacturer: HP Part number: NM325UA#ABA Description: The 12.1-inch HP Pavilion dv2-1000 Entertainment Notebook PC is highly mobile without compromising on performance. General Recommended Use Home use Built-in Devices Stereo speakers, Wireless LAN antenna Width 11.5 in Depth 9.4 in Height 1.3 in Weight 4 lbs Localization English / United States Notebook type Ultraportable (Under 4 lbs.), Budget Screen type Widescreen Wireless capabilities IEEE 802.11b, IEEE 802.11g, IEEE 802.11 n (draft) Processor Processor AMD Athlon Neo MV-40 / 1.6 GHz 64-bit processor Yes Cache Memory Type L2 cache Cache size 512 KB RAM Installed Size 4 GB / 4 GB (max) Technology DDR2 SDRAM RAM form factor SO DIMM 200-pin RAM configuration features 1 x 4 GB Environmental Parameters Environmental standards EPA Energy Star Storage Controller Storage controller type Serial ATA Storage Controller / Serial ATA Interface Serial ATA-150 Storage Floppy Drive None Hard Drive 320 GB - Serial ATA-150 - 5400 rpm Storage Removable None Hard drive type Portable Optical Storage Type DVD±RW (±R DL) / DVD-RAM - External Disc Labeling Technology LightScribe Technology Optical Storage (2nd) 2nd optical storage type None Card Reader Card reader type 5 in 1 card reader Supported flash memory cards Memory Stick, MultiMediaCard, SD Memory Card, xD-Picture Card, Memory Stick Pro Display Display Type 12.1 in TFT active matrix Max Resolution 1280 x 800 ( WXGA ) Widescreen Display Yes Features BrightView Video Graphics Processor / Vendor ATI Mobility Radeon HD 3410 Video Memory 512 MB Total Available Graphics Memory 2302 MB Audio Audio output type Sound card Audio Output Features Altec Lansing speakers Audio Input Microphone Notebook Camera Camera Type Integrated Input Device(s) Input device type Keyboard, Touchpad Telecom Modem None Networking Networking Network adapter Networking / Wireless LAN Supported Yes Data link protocol Ethernet, IEEE 802.11a, IEEE 802.11b, IEEE 802.11g, Fast Ethernet, IEEE 802.11n (draft) Networking standards IEEE 802.11a, IEEE 802.11b, IEEE 802.11g, IEEE 802.11n (draft) Expansion / Connectivity Expansion Slots Total (Free) 2 ( 0 ) x Memory - SO DIMM 200-pin Interfaces 3 x Hi-Speed USB - 4 pin USB Type A, 1 x Display / video - HDMI, 1 x Display / video - VGA - 15 pin HD D-Sub (HD-15), 1 x Network - Ethernet 10Base-T/100Base-TX - RJ-45, 1 x Microphone - Input - Mini-phone 3.5 mm, 1 x Headphones - Mini-phone stereo 3.5 mm Miscellaneous Features Power-on password, Security lock slot (cable lock sold separately) Power Power device form factor External Battery Technology 6-cell Lithium ion Installed Qty 1 Operating System / Software OS Provided Microsoft Windows Vista Home Premium 64-bit Edition Software My HP Games, Muvee Reveal, Microsoft Works, CyberLink DVD Suite, HP Help and Support, HP MediaSmart Suite, HP Recovery Manager, Adobe Acrobat Reader, HP Total Care Advisor, Microsoft Internet Explorer, Norton Internet Security 2009 (60 days subscription), Microsoft Office 2007 Home and Student Edition (60 days trial) Manufacturer Warranty Service & Support 1 year warranty Service & Support Details Limited warranty - Parts and labor - 1 year, Technical support - 1 year Sustainability CNET Labs: Operational power consumption 26.28 Watt CNET Labs: Power consumption Stand by / Sleep 1.2447 Watt CNET Labs: Estimated Annual Energy Cost 8.71 US Dollars EPA Energy Star Compliant Yes Greenpeace policy rating (Sept 2009) 4.5

Website: http://www.hp.com
Address: 3000 Hanover Street, Palo Alto, CA 94304-1185

Dell Adamo


$1,499.00

Manufacturer: Dell, Inc. Part number: DACWAQ1 Bottom Line: Dell's upscale Adamo is a 13-inch laptop for those who value design and finish as much as performance, but its luxury price will limit the potential audience. General Platform Technology Intel Centrino 2 Processor Processor Intel Core 2 Duo SU9400 / 1.2 GHz RAM Installed Size 2 GB Technology DDR3 SDRAM Storage Hard Drive 128 GB Hard drive type Solid state Video Graphics Processor / Vendor Intel GS45 Integrated Graphics with 256MB Memory Video Memory 256 MB Audio Audio Output Features High Definition Audio 2.0 Networking Networking Network adapter Wireless NIC Intel WiFi Link 5300 Data link protocol Gigabit Ethernet Battery Technology Lithium Polymer Battery capacity 40 Wh Operating System / Software OS Provided Microsoft Windows Vista Home Premium Edition Sustainability Greenpeace policy rating (Sept 2009)

Website: http://www.dell.com/ Address: One Dell Way, Round Rock, TX 78682
Phone: (800) 274-3355 Email: LB_Order_Questions@dell.com

Dell Inspiron Mini 10 Netbook


$149.99 - $528.00

Manufacturer: Dell, Inc. Part number: DNDWFA3 Bottom Line: Dell's popular Mini 10 is the most customizable Netbook we've seen. Adding extras such as a higher-resolution display makes it more useful, but also blurs the price line between Netbooks and mainstream laptops. General Notebook type Budget Processor Processor Intel Atom Z530 / 1.6 GHz RAM Installed Size 1 GB Storage Hard Drive 160 GB - 5400 rpm Display Display Type 10.1 Video Graphics Processor / Vendor IntelGraphics Media Accelerator 500 Battery Battery capacity 56 Wh Operating System / Software OS Provided Microsoft Windows XP Home Edition SP3 Sustainability Greenpeace policy rating (Sept 2009) 4.7

Website: http://www.dell.com/ Address: One Dell Way, Round Rock, TX 78682
Phone: (800) 274-3355 Email: LB_Order_Questions@dell.com

HP Mini 5101


$419.00 - $449.99

Intel Atom N280 1.66GHz, 1GB RAM, 160GB HDD, XP Home Basic

Manufacturer: HP Part number: FM978UT#ABA Bottom Line: HP's biz-minded Mini 5101 is a successor to the Mini 2140 (one of our all-time favorite Netbooks). It looks and feels great, but for a premium-price Netbook, we expect to get more features, not fewer. General Width 10.3 in Depth 7.09 in Height 0.91 in Notebook type Budget Processor Processor Intel Atom N280 / 1.66 GHz Operating System / Software OS Provided Windows Vista Home Basic Sustainability Greenpeace policy rating (Sept 2009) 4.5

HP Mini 311


$399.99

Manufacturer: HP Part number: VL838AV Bottom Line: HP's Mini 311 adds a larger, high-definition display and advanced graphics to a basic Netbook, while keeping the price very appealing. Once it starts shipping with Windows 7, this could become our favorite Netbook. General Notebook type Budget Processor Processor Intel 1.60 GHz RAM Installed Size 1 GB Technology DDR3 SDRAM Storage Hard Drive 160 GB - 5400 rpm Hard drive type Standard Operating System / Software OS Provided Windows XP Home Sustainability Greenpeace policy rating (Sept 2009) 4.5

Website: http://www.hp.com
Address: 3000 Hanover Street, Palo Alto, CA 94304-1185

Asus Eee PC 1005HA (Intel Atom N280 1.66GHz, 1GB RAM, 160GB HDD, XP Home, blue)


$349.95 - $389.99

Manufacturer: Asus Part number: 1005HA-PU1X-BU Description: Seemingly crafted by nature itself, the Eee PC Seashell draws its inspiration from seashells. It's so light and compact, you can take it anywhere with you! And with sleek curves and smooth lines hugging its lustrous shell, the Eee PC Seashell will easily charm passers-by wherever it goes. General Built-in Devices Stereo speakers, Bluetooth antenna, Wireless LAN antenna Width 10.3 in Depth 7 in Height 1.5 in Weight 2.8 lbs Color Royal blue Notebook type Netbook, Budget Screen type Widescreen Wireless capabilities IEEE 802.11b, IEEE 802.11g, IEEE 802.11 n (draft), Bluetooth Processor Processor Intel ATOM N280 / 1.66 GHz Data bus speed 667 MHz Chipset type Intel 945GSE Express Cache Memory Type L2 cache Cache size 512 KB RAM Installed Size 1024 MB Technology DDR II SODIMM RAM form factor SO DIMM 200-pin Storage Floppy Drive None Hard Drive 160 GB - 5400 rpm Storage Removable None Hard drive type Standard Optical Storage Type None Optical Storage (2nd) 2nd optical storage type None Card Reader Card reader type Card reader Supported flash memory cards Memory Stick, MultiMediaCard, SD Memory Card, Memory Stick Pro, SDHC Memory Card Display Display Type 10.1 in TFT active matrix Max Resolution 1024 x 600 ( WSVGA ) Widescreen Display Yes Features LED-backlit Video Graphics Processor / Vendor Intel GMA 950 Dynamic Video Memory Technology 3.0 Audio Audio output type Sound card Audio output compliant standards High Definition Audio Audio Input Microphone Notebook Camera Camera Type Integrated Sensor Resolution 1.3 Megapixel Input Device(s) Input device type Keyboard, Touchpad Features Multi-touch technology Networking Networking Network adapter - Bluetooth Networking / Wireless LAN Supported Yes Data link protocol Ethernet, IEEE 802.11b, IEEE 802.11g, Fast Ethernet, Bluetooth 2.1 EDR, IEEE 802.11n (draft) Networking standards Bluetooth 2.1 Expansion / Connectivity Expansion Slots Total (Free) Memory - SO DIMM 200-pin Interfaces 3 x Hi-Speed USB - 4 pin USB Type A, 1 x Display / video - VGA - 15 pin HD D-Sub (HD-15), 1 x Headphones - Output - Mini-phone 3.5 mm, 1 x Microphone - Input - Mini-phone 3.5 mm, 1 x Network - Ethernet 10Base-T/100Base-TX - RJ-45 Miscellaneous Features 802.11b/g/n Wireless LAN, Bluetooth 2.1, Camera Battery Technology 6-cell Lithium ion Installed Qty 1 / 1 (max) Battery capacity 63 Wh Mfr estimated battery life 10.5 hour(s) Operating System / Software OS Provided Microsoft Windows XP Home Edition Software Drivers & Utilities, Microsoft Office Home


Website: http://www.asus.com/ Address: 44370 Nobel Drive, Fremont, CA 94538
Phone: +1-510-739-3777 Email: tmd1@asus.com Fax: +1-510-608-4555