<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Brownweb.com.au &#187; Australian Web Hosting</title>
	<atom:link href="http://www.brownweb.com.au/blog/tag/australian-web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brownweb.com.au/blog</link>
	<description>Web Hosting - SEO - IT Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:08:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Web Site Load Balancing</title>
		<link>http://www.brownweb.com.au/blog/2010/web-site-load-balancing/</link>
		<comments>http://www.brownweb.com.au/blog/2010/web-site-load-balancing/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:03:04 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[Australian Webhosting]]></category>
		<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[load balancing]]></category>
		<category><![CDATA[SEO Services]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=290</guid>
		<description><![CDATA[A high-volume site like Yahoo! knows that the actual quality of service any web server provides to end users basically depends on network-transfer speed and server response time. Network-transfer speed refers to the Internet-link bandwidth while server-response time depends upon resources including fast CPU, lots of RAM and good I/O performance. Once these resources are [...]]]></description>
			<content:encoded><![CDATA[<p>A high-volume site like Yahoo! knows that the actual quality of service  any web server provides to end users basically depends on  network-transfer speed and server response time. Network-transfer speed  refers to the Internet-link bandwidth while server-response time depends  upon resources including fast CPU, lots of RAM and good I/O  performance. Once these resources are exhausted and the web-server is  encountering heavy traffic, a problem would surely arise.</p>
<div><script type="text/javascript">// <![CDATA[
// <![CDATA[
google_ad_client = "pub-0119109909334277";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_type = "text";
google_ad_channel ="4765464311";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "C40E0C";
google_color_text = "000000";
google_color_url = "000000";
// ]]&gt;</script></div>
<p>Load Balancing</p>
<p>A problematic situation pertaining to difficulty in handling high  volumes of incoming traffic can be solved either through installing more  RAM on existing machines or replacing the CPU with a faster one. The  use of faster or dedicated SCSI controllers and disks with shorter  access time can also be done. Software can be tuned so that the  operating system parameters and web server software can be adjusted to  achieve better performance.<br />
<span id="more-290"></span><br />
An alternative approach is to improve performance by increasing the  number of web servers. This approach would attempt to distribute traffic  unto a cluster of back-end web servers that need not be large-scale  machines. Web server scalability is achieved when more servers are added  to distribute the load among the group of servers or server cluster.</p>
<p>This is what load balancing is all about. It involves the fine  tuning of a computer system, network or disk subsystem in order to more  evenly distribute the data and/or processing across available resources.  Load balancing is distributing, processing and communications activity  evenly across a computer network so that no single device is  overwhelmed. Busy websites usually use two or more web servers in a load  balancing scheme so that when one server gets overwhelmed with  requests, traffic is forwarded to another server with more capacity.</p>
<p>There are two probable reasons why a company could want to load  balance traffic across firewalls. One is for purely technical reasons  and the other is centered on winning business. The technical aspect  should be quickly addressed as soon as funds and environment allow.</p>
<p>When there is only one web server responding to all incoming HTTP  requests for a website, it may not be able to perform accordingly  especially if the website has gained popularity. Loading of web pages  will be very slow and some users would have to wait for their requests  to be processed. It can come to a point where upgrading the server  hardware is no longer cost effective due to the increased traffic and  connections to a website.</p>
<p>Yahoo! was granted a patent from a filing done in 1999 regarding  coordinating information between multiple servers that share information  as well as servers that may cache some of the information. Load  balancing devices are becoming very common in supporting high-traffic  websites. These devices evolve as websites grow in terms of size,  complexity and traffic flow.</p>
<p>The presence of multiple web servers in a server group requires that  HTTP traffic be evenly distributed among the servers. These servers  should appear as a single web server to the web client. The load  balancer simply intercepts each request and redirects it to an available  server in the server cluster.</p>
<p>Methods of Load Balancing</p>
<p>Load balancing can be achieved in a number of ways. Choice would  depend on the individual requirement, available features, complexity of  implementation and the cost. The user company would have to determine  its circumstances to determine which option would work best.</p>
<p>The Round Robin DNS Load Balancing is one of the early adapted load  balancing techniques. The built-in round robin feature of BIND of a DNS  server facilitates cycling through the IP addresses corresponding to a  group of servers in a cluster. It is a fairly simple and inexpensive  method which is very easy to implement. However, its downside is that  the DNS server does not have any knowledge of server availability thus  may continually point to an unavailable server. It has the ability to  differentiate by IP address but not by server port. There is also the  possibility that the IP address is cached by other name servers which  would result to request not being sent to the load balancing DNS server.</p>
<p>In Hardware Load Balancing, hardware load balances route TCP/IP  packets to various servers in a cluster. This method is said to provide a  powerful topology with high availability. It uses circuit level network  gateway to route traffic. Its one downside is the higher cost incurred  as compared to other methods.</p>
<p>The most commonly used method is Software Load Balancing. Load  balancers often come as an integrated component of expensive web server  and application server software packages. This method is more  configurable based on requirements and can incorporate intelligent  routing base on multiple input parameters. An additional hardware needs  to be provided to isolate the load balancers.</p>
<p>Algorithm of Server Load Balancing</p>
<p>When HTTP requests are assigned to any server picked randomly among  the group of servers, this is called random allocation. It is possible  that one server may be assigned more requests than the others, but  generally each server gets its share of the load. It can be very easy to  implement but the risk of overloading one while under-utilizing another  is big.</p>
<p>The IP sprayer assigns the requests to a list of the servers on a  rotating basis when the round-robin allocation is used. The first  request goes to a randomly picked server in a group so that the entire  first request need not go to the same server especially if more than one  IP sprayer is involved. The circular order is followed in redirecting  the traffic for subsequent requests. The server which has been assigned a  request moves to the end of the list to ensure that all servers are  equally assigned. The allocation is much orderly than random but it may  not be enough based on processing overhead required and when there are  differences in server specification in a server group.</p>
<p>The shortcoming of the round-robin allocation has been eliminated by  the weighted round-robin version. In this case, a server that is  capable of handling twice as much load as the other can get a weight of  two. This means that the IP sprayer will assign two requests to the  powerful server as against one request assigned to the weaker one. This  takes care of the capacity of the servers in the group. However, it does  not consider the advanced load balancing requirements like processing  time for individual request. An efficient load balancer should be  capable of intelligent monitoring that would help it direct requests to  the server that is more capable of handling them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/web-site-load-balancing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Fundamentals of a VoIP Phone Service</title>
		<link>http://www.brownweb.com.au/blog/2010/voip-phone-service/</link>
		<comments>http://www.brownweb.com.au/blog/2010/voip-phone-service/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 23:59:26 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[VOIP]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[Computer Hardware]]></category>
		<category><![CDATA[freepbx]]></category>
		<category><![CDATA[pbx in a flash]]></category>
		<category><![CDATA[voip server]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=207</guid>
		<description><![CDATA[Sure enough, VoIP is one of the most beneficial solutions and many industries find it to be very convenient. VoIP got its primary introduction in 2004 when the popularity of broadband Internet access was yet also conceptualizing. With this type of telephone service, the subscribers can place and receive a large number of calls for [...]]]></description>
			<content:encoded><![CDATA[<p>Sure enough, VoIP is one of the most beneficial solutions and many industries find it to be very convenient. VoIP got its primary introduction in 2004 when the popularity of broadband Internet access was yet also conceptualizing. With this type of telephone service, the subscribers can place and receive a large number of calls for really low rates. By simply paying a flat monthly rate.</p>
<p>The same telephone service is practically being used both in the homes and in the offices. If you want to reduce the cost of your phone bills, then better utilise the VoIP telephone service. There are lots of things that you should know as you want to enjoy the services and features of this simple solution. Hence, it is only fitting for you to take a close look at its basics.</p>
<p><span id="more-207"></span>What is VoIP all about?</p>
<p>VoIP refers to Voice over Internet Protocol. Simply put, it lets you to place a call via a VoIP phone. Your voice is transmitted over the internet rather than making use of the conventional telephone cable lines. When a person talks to you, their voice is also carried in a similar manner. For a broader understanding, VoIP is a type of telephone system connection that utilizes the Internet as the primary means of reaching the other party.</p>
<p>How does VoIP work?</p>
<p>As you contact a person by using a VoIP telephone, your voice signals are changed into the digital signals. They then travel over the internet. For the person on the other line to hear you, the digital signals are then changed back to voice signals.</p>
<p>What main benefits can it provide?</p>
<p>This might sound too good to be true yet you must believe it. A VoIP connection makes use of the high speed Internet, right? Thus, instead of using the regular cable wires, your voice travels via the Internet and you can save a lot of money compared to the costs given by the typical telephone companies in your area. One more thing is that it promotes a secure conversation.</p>
<p>What is meant by packet switching?</p>
<p>Packet switching is the feature that lets the VoIP carry a useful voice data via packet forms. They are transferred one at a time so both parties can hear clear sounds. The useless silent portions are eliminated so that makes the conversation really audible. You will then notice that your talk seems very ordinary. Overall, it lets you save on the bandwidth.</p>
<p>Saving money is one of the main benefits of this telephone service. Even as you place international or long distance calls, you will benefit from the low rates.</p>
<p>Why is it perfect for travellers?</p>
<p>Travelling is not a hassle with the VoIP feature. All that you must bring is your dependable headset and plug in to an Internet connection and there you go in placing your calls. To top it all, you may enjoy the same privilege as you stay in the wireless hot spots.</p>
<p>Furthermore, the VoIP telephone service is something that you should equip your home or business with. There are some downsides for sure but the weight of the positive side is greater. This rationality must be enough to prompt you to avail of it!</p>
<p>For all your VOIP requirements Brownweb.com.au is a trusted name you can rely on.</p>
<p>Brownweb.com.au is a Web hosting company that&#8217;s known for speed, reliability and service. We offer a variety of affordable, inexpensive hosting options to meet any company&#8217;s or individual&#8217;s needs. For more information, please visit www.brownweb.com.au</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/voip-phone-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Do You Require a Defrag?</title>
		<link>http://www.brownweb.com.au/blog/2010/when-do-you-require-a-defrag/</link>
		<comments>http://www.brownweb.com.au/blog/2010/when-do-you-require-a-defrag/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 12:56:43 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[Computer Hardware]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[computer maintenance]]></category>
		<category><![CDATA[computer performance]]></category>
		<category><![CDATA[hard drive capacity]]></category>
		<category><![CDATA[PC]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=83</guid>
		<description><![CDATA[Computer maintenance is one way to ensure your laptop computer or personal computer will be running like brand-new five years time. A lot of people do not think of maintenance until something catastrophic happens, but you should be thinking about it now. One section of the maintenance process is keeping your computer operating at topnotch [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Computer maintenance is one way to ensure your laptop computer or personal computer will be running like brand-new five years time. A lot of people do not think of maintenance until something catastrophic happens, but you should be thinking about it now. One section of the maintenance process is keeping your computer operating at topnotch speed.</p>
<p>There are a lot of causes to why computers start to run sluggish: computer viruses, not enough computer memory, too many applications (goes along with too little computer memory) or a lot of files. Whatever the cause, something has to be done so you don’t have to work at a snail’s pace.</p>
<p><span id="more-83"></span>Behind the scenes in your computer, a lot of things are happening. Whenever you hop on the World Wide Web, your computer is possibly allowing “cookie” files to be stored to retrieve where you have been. We download any and everything from music to videos to eBooks from the World Wide Web. There are temporary files produced for a lot of your downloaded items and they can pile up over time.</p>
<p>Occasionally, the hard drive just needs to be tidied up a bit. With the defrag process, the computer ascertains ways to free up space on your hard drive. This cleaning process ensures optimal performance from your computer when something else is not the problem. Defragmenting your computer is an effective opening move when performance is not at its finest.</p>
<p>If you are having a challenging time navigating the different files on your computer, the real name of the process used to rectify this is “Disk Defragmenter.” You will be able to use your program search bar on the Start Menu to discover it easily. The defragmenter takes fragmented files and consolidates them or removes them altogether depending upon what they are and if they are required.</p>
<p>This is not something that you should to do every day. Remember, we are talking about maintenance here. Executing the operation once a week is good for those who utilise their computer every day and create a lot of documents and files. The neatest thing about Windows is that these maintenance procedures can be set up on a schedule so that they work behind the scenes. Schedule maintenance operations at unusual times like early in the morning or in the middle of the night, when you are not working on your computer in order to keep it from slowing down your personal computer whilst you are attempting to work.</p>
<p>In a nutshell, disk defragmentation is crucial for everybody. Scheduling the procedure allows you to think about other matters. If the defragmentation process does its job, your computer will persist in working well for you with no hitches or glitches.</p>
<p>For all your Computer Hardware requirements Brownweb.com.au is a   trusted name you       can rely on.</p>
<p>Brownweb.com.au is a Web   hosting company that’s known for speed,  reliability and service.   They offer a       variety of affordable, inexpensive  hosting options   to meet any       company’s or individual’s needs. For more    information, visit www.brownweb.com.au for   all    of you Web hosting,  SEO, IT Support and Computer Hardware   needs.</p>
<p><!--subscribe2--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/when-do-you-require-a-defrag/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3 Tips for Reducing Computer Monitor Glare</title>
		<link>http://www.brownweb.com.au/blog/2010/3-tips-for-reducing-computer-monitor-glare/</link>
		<comments>http://www.brownweb.com.au/blog/2010/3-tips-for-reducing-computer-monitor-glare/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 12:53:33 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[Computer Hardware]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[computer maintenance]]></category>
		<category><![CDATA[computer performance]]></category>
		<category><![CDATA[hard drive capacity]]></category>
		<category><![CDATA[SEO Services]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=81</guid>
		<description><![CDATA[Have you experiencied headaches when you work at your computer all day? It could posibly be the montior. If you believe that the monitor may be inducing your head to thump, here are a few hints to cut out the blinding glare. For a long time, people did not think of the computer monitor. When [...]]]></description>
			<content:encoded><![CDATA[<p>Have you experiencied headaches when you work at your computer all day? It could posibly be the montior. If you believe that the monitor may be inducing your head to thump, here are a few hints to cut out the blinding glare.</p>
<p>For a long time, people did not think of the computer monitor. When the monitor is bright it is easier to see, particularly whilst the surrounding light is low. But, if you have ever considered somebody sitting in a dim lit room looking at a computer monitor, what does it remind you of? That is right – somebody watching television. The only difference is that we are instructed not to sit that close up to a television screen.</p>
<p><span id="more-81"></span>No wonder the monitor’s glare impacts on you so! For office workers and home business owners, the computer is a necessity. Whether it is a laptop computer or a personal computer, you rely on it to carry on your business. So, what can you do to end the eyestrain?</p>
<p>Tip #1 – Unplug your laptop computer. When your laptop computer is plugged in, it operates on AC power. The computer monitor is brighter as you work. A good laptop computer battery should run detached of AC power for six or eight hours. Yet a four-hour battery will still serve you well. So, simply unplug. The monitor is now dimmed because it is utilising the battery. Do work in four hour stints and then recharge the battery whilst you perform something else.</p>
<p>Tip #2 – Use lamps and overhead lighting to compensate. If your monitor allows you to adjust the settings, turn them down. A desk lamp can compensate for the low light and help eliminate the eyestrain.</p>
<p>Tip #3 – Invest in a glare filter. For personal computers the filter isbuilte into a square bracket that attaches to the monitor screen. Because lengthy hours are spent working with the computer, your eyes will not become affected and induce headaches. Employing the filter all of the time will benefit everybody who uses the computer.</p>
<p>For laptop computers, glare filters attach on the edges of the screen frame or directly on the screen. They should be removed when you are done working to be able to close the laptop computer. A few glare filters even help with privacy so that nobody can watch what you are doing on your laptop computer unless they are immediately in front of the screen.</p>
<p>Now you do not have to wear your dark glasses inside whilst working on your computer. You are now prepared with something even more beneficial: Three solutions to prevent the headaches and still get your work performed or browse the World Wide Web for fun.</p>
<p>For all your Computer Hardware requirements Brownweb.com.au is a   trusted name you       can rely on.</p>
<p>Brownweb.com.au is a Web   hosting company that’s known for speed,  reliability and service.   They offer a       variety of affordable, inexpensive  hosting options   to meet any       company’s or individual’s needs. For more    information, visit www.brownweb.com.au for   all    of you Web hosting,  SEO, IT Support and Computer Hardware   needs.</p>
<p><!--subscribe2--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/3-tips-for-reducing-computer-monitor-glare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning Your Laptop or Personal Computer</title>
		<link>http://www.brownweb.com.au/blog/2010/cleaning-your-laptop-or-personal-computer/</link>
		<comments>http://www.brownweb.com.au/blog/2010/cleaning-your-laptop-or-personal-computer/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 12:49:16 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[SEO Advice]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[Computer Hardware]]></category>
		<category><![CDATA[computer maintenance]]></category>
		<category><![CDATA[hard drive capacity]]></category>
		<category><![CDATA[SEO Services]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=79</guid>
		<description><![CDATA[A computer is like your niftiest friend. You spend hours with it almost daily. But have you looked at it recently? It can become pretty dusty just like you would, if you sat there all day long in the same spot and had everyone’s filthy hands all over you! Here are a few hints for [...]]]></description>
			<content:encoded><![CDATA[<p>A computer is like your niftiest friend. You spend hours with it almost daily. But have you looked at it recently? It can become pretty dusty just like you would, if you sat there all day long in the same spot and had everyone’s filthy hands all over you! Here are a few hints for cleaning your laptop computer or personal computer.</p>
<p>The first matter to think of is although your computer screen or monitor resembles a TV screen, you do not clean it the same way. Spraying Windex upon your screen will create a bigger problem. Computers work hard only they are very delicate. Take the soft approach.</p>
<p><span id="more-79"></span>Cleaning the Monitor</p>
<p>Whether a laptop computer or a personal computer, the screen will get dust-covered. You touch it and dare we say, probably have sneezed on it (deadlines still exist even when you are sickly). Over time, all of this dirt builds up on your computer monitor and requires to be cleaned thoroughly.</p>
<p>To ascertain just how dirty your computer is, turn it off and look at the blank screen. Before you cry, take hold of a lint-free cloth. You are able to purchase them at any computer store.</p>
<p>Softly use even pressure as you wipe dirt and dust off of the screen. Be careful, pressing too heavily can damage the components in the screen. This information applies to both laptop computers and personal computers with a newer flat screen.</p>
<p>If the screen is still not clean, you will be able to apply a small amount of cleaner specifically for computer monitors to the screen. Once the heavy grime softens, wipe it off with a lint-free cloth. Commercial cleaners may state that it is harmless for computers but using an approved cleaner is best and won’t leave streaks on your monitor.</p>
<p>Cleaning the Keyboard</p>
<p>The unhealthiest looking place on your computer is the keyboard. Over time, debris, lint, grime, food and other small particles get deposited between keys. Since the keys are so closely located, it is virtually unrealistic to clean between them with a cloth and not pop your keys off.</p>
<p>Alternatively, utilise a can of compressed air to clean your keyboard. Begin at one end of the row of keys and point the spray towards the opposite end to displace all the filth out in one direction. Apply some of the monitor cleaner to wipe skin oils from the top of the keys. Follow all of this up with a computer brush or computer vacuum to remove the last pieces of debris.</p>
<p>Endeavor to do this upkeep on a regular basis. It prevents sticky key situations and you rubbing the screen to remove dirt. Let alone, those filthy germs will no longer lurk and make you ill again! Take care of your computer and it will take care of you.</p>
<p>For all your Computer Hardware requirements Brownweb.com.au is a   trusted name you       can rely on.</p>
<p>Brownweb.com.au is a <a title="Brownweb.com.au - Web Hosting" href="http://www.brownweb.com.au/blog/2010/adding-hard-drive-capacity-to-your-pc-or-laptop/" target="_blank">Web   hosting</a> company that’s known for speed,  reliability and service.   They offer a       variety of affordable, inexpensive  hosting options   to meet any       company’s or individual’s needs. For more    information, visit <a href="http://www.brownweb.com.au/blog/2010/anti-spyware-tools-to-protect-your-pc-or-laptop/">www.brownweb.com.au</a> for   all    of you Web hosting,  SEO, IT Support and Computer Hardware   needs.</p>
<p><!--subscribe2--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/cleaning-your-laptop-or-personal-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to recognise Before purchasing a Video Card</title>
		<link>http://www.brownweb.com.au/blog/2010/what-to-recognise-before-purchasing-a-video-card/</link>
		<comments>http://www.brownweb.com.au/blog/2010/what-to-recognise-before-purchasing-a-video-card/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:44:43 +0000</pubDate>
		<dc:creator>Brownweb</dc:creator>
				<category><![CDATA[Computer Hardware]]></category>
		<category><![CDATA[Australian Web Hosting]]></category>
		<category><![CDATA[computer maintenance]]></category>
		<category><![CDATA[computer performance]]></category>
		<category><![CDATA[Domain Names]]></category>
		<category><![CDATA[Email Hosting]]></category>
		<category><![CDATA[hard drive capacity]]></category>
		<category><![CDATA[SEO Services]]></category>

		<guid isPermaLink="false">http://www.brownweb.com.au/blog/?p=77</guid>
		<description><![CDATA[There are a lot of add-ons mentioned when you buy a computer. The sales person might ask about what you plan to do with the computer to assist in finding out the type of video card you&#8217;ll need. What is a video card? They are the component responsible for the images that you see on [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of add-ons mentioned when you buy a computer. The sales person might ask about what you plan to do with the computer to assist in finding out the type of video card you&#8217;ll need.</p>
<p>What is a video card? They are the component responsible for the images that you see on the computer display. The video card is crucial for gamers, graphic artists and the everyday website surfer. Prior to acquiring just the basic video card or the top of the line one, know how to shop for one.</p>
<p><span id="more-77"></span>A video card has four common measures for selecting one:</p>
<p>• Cost<br />
• Speed<br />
• Resolution<br />
• Card Slot Type</p>
<p>Video Card and Graphics Card</p>
<p>You may hear people discuss video cards and graphics cards. They are similar in what they do. Video cards are more valuable to gamers. A gamer wants to have the largest amount of memory on their video card so that they can play faster. Certain games consume a lot of space and no one likes to have technical difficulties just as they&#8217;re about to slay the giant beast.</p>
<p>Video games have advanced beyond the huge rectangular blip that was the ball in the Atari Ping-Pong game. Resolution is crucial but some gaming worlds are so advanced that faster play is more of the essence.</p>
<p>Graphics cards are sought after more by graphic artists and those using computer-aided design software. Here, attention to detail is crucial in your designs so that&#8217;s what will be the primary consideration here. The same goes for the occasional user who surfs the internet.</p>
<p>Types of Video Cards</p>
<p>This depends upon what type of connection you have for a video card. The video card can already be set up to your preference in a new computer. If you assemble computers, this information is useful.</p>
<p>Just so that you recognise, there are 3 different connection types for video cards. The ones that you&#8217;ll see in use most frequently these days are AGP and PCI-E. Older connections use a VGA cable.</p>
<p>Cost</p>
<p>Video cards range from reasonably inexpensive to rather expensive. A internet surfer will not want to spend hundreds of dollars on a video card, but a graphic designer may to accommodate their line of work requirements. Cheaper does not imply lower quality, just less bells and whistles. That is all right if you&#8217;re not into gaming or computer design.<br />
Not sure what all the letters stand for? Speak to somebody at your local computer shop who can assist you in choosing your video card wisely.</p>
<p>For all your Computer Hardware requirements Brownweb.com.au is a   trusted name you       can rely on.</p>
<p>Brownweb.com.au is a <a title="Brownweb.com.au - Web Hosting" href="http://www.brownweb.com.au/blog/2010/adding-hard-drive-capacity-to-your-pc-or-laptop/" target="_blank">Web   hosting</a> company that’s known for speed,  reliability and service.   They offer a       variety of affordable, inexpensive  hosting options   to meet any       company’s or individual’s needs. For more    information, visit <a href="http://www.brownweb.com.au/blog/2010/anti-spyware-tools-to-protect-your-pc-or-laptop/">www.brownweb.com.au</a> for   all    of you Web hosting,  SEO, IT Support and Computer Hardware   needs.</p>
<p><!--subscribe2--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brownweb.com.au/blog/2010/what-to-recognise-before-purchasing-a-video-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

