<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blacklizard's Corner</title>
	<atom:link href="http://blacklizard.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blacklizard.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 28 Dec 2008 00:25:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blacklizard.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blacklizard's Corner</title>
		<link>http://blacklizard.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blacklizard.wordpress.com/osd.xml" title="Blacklizard&#039;s Corner" />
	<atom:link rel='hub' href='http://blacklizard.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP MySQL Connect to a Database</title>
		<link>http://blacklizard.wordpress.com/2008/12/28/php-mysql-connect-to-a-database/</link>
		<comments>http://blacklizard.wordpress.com/2008/12/28/php-mysql-connect-to-a-database/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 00:24:06 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=44</guid>
		<description><![CDATA[Create a Connection to a MySQL Database Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax mysql_connect(servername,username,password); Example In the following example we store the connection in a variable ($con) for later use in the script. The &#8220;die&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=44&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Create a Connection to a MySQL Database</h2>
<p>Before you can access data in a database, you must create a connection to  the database.</p>
<p>In PHP, this is done with the mysql_connect() function.</p>
<h3>Syntax</h3>
<p><code>mysql_connect(servername,username,password);</code></p>
<h3>Example</h3>
<p>In the following example we store the connection in a variable ($con) for later use in the  script. The &#8220;die&#8221; part will be executed if the connection fails:<br />
<code> </code></p>
<pre>&lt;?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }</pre>
<pre>// some code</pre>
<pre>?&gt;</pre>
<h2>Closing a Connection</h2>
<p>The connection will be closed automatically when the script ends. To close the  connection before, use the mysql_close() function:<br />
<code> </code></p>
<pre>&lt;?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }</pre>
<pre>// some code</pre>
<pre>mysql_close($con);
?&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=44&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/12/28/php-mysql-connect-to-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Friendster Hacking Method</title>
		<link>http://blacklizard.wordpress.com/2008/12/28/friendster-hacking-method/</link>
		<comments>http://blacklizard.wordpress.com/2008/12/28/friendster-hacking-method/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 21:13:55 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=38</guid>
		<description><![CDATA[The previous post about hacking friendster are not working anymore.I,ll update it very soon.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=38&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The previous post about hacking friendster are not working anymore.I,ll update it very soon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=38&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/12/28/friendster-hacking-method/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Windows XP SP3 Blacklizard&#8217;s Edition v2 reloaded</title>
		<link>http://blacklizard.wordpress.com/2008/12/28/microsoft-windows-xp-sp3-blacklizards-edition-v2-reloaded/</link>
		<comments>http://blacklizard.wordpress.com/2008/12/28/microsoft-windows-xp-sp3-blacklizards-edition-v2-reloaded/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 20:51:15 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=30</guid>
		<description><![CDATA[I will be releasing the reloaded edition of this XP soon.. New updated consist of major driver update, post SP3 update until December 2008, included SATA drivers(major;Intel), essential appz and fully customized Windows UI(part of windows 7) So wait for the release..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=30&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I will be releasing the reloaded edition of this XP soon..</p>
<p>New updated consist of major driver update, post SP3 update until December 2008, included SATA drivers(major;Intel), essential appz and fully customized Windows UI(part of windows 7)</p>
<p>So wait for the release..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=30&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/12/28/microsoft-windows-xp-sp3-blacklizards-edition-v2-reloaded/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Windows XP SP3 Blacklizard&#8217;s Edition(Updated)</title>
		<link>http://blacklizard.wordpress.com/2008/09/21/microsoft-windows-xp-sp3-blacklizards-editionupdated/</link>
		<comments>http://blacklizard.wordpress.com/2008/09/21/microsoft-windows-xp-sp3-blacklizards-editionupdated/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 07:39:08 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=22</guid>
		<description><![CDATA[For the mean time,i cannot provide the screen shoot of dos based setup,Setup Billboard,BootScreen and Logon Screen.. I&#8217;ve lifted the minimum requirements to instal this edition.. ISO size is 240MB.. Its takes less than 15 minutes to complete the instalation.. WMP 11,Firefox2 and utorrent added(Silent instal) The Key used in this edition is genuine and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=22&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://blacklizard.fileave.com/task.JPG" alt="talk" /></p>
<p><img src="http://blacklizard.fileave.com/tskinfo.JPG" alt="talk" /></p>
<p><img src="http://blacklizard.fileave.com/untitled.JPG" alt="talk" /></p>
<p><img src="http://blacklizard.fileave.com/lol.JPG" alt="talk" /></p>
<p><img src="http://blacklizard.fileave.com/untitledlol.JPG" alt="talk" /></p>
<p>For the mean time,i cannot provide the screen shoot of dos based setup,Setup Billboard,BootScreen and Logon Screen..</p>
<p>I&#8217;ve lifted the minimum requirements to instal this edition..<br />
ISO size is 240MB..<br />
Its takes less than 15 minutes to complete the instalation..</p>
<p>WMP 11,Firefox2 and utorrent added(Silent instal)<br />
The Key used in this edition is genuine and it passes WGA check..<br />
The Following Tweaks and Patches Have been Applied.</p>
<p>Patches:<br />
TCP/IP Half-Open Connections = 1000 (Default 10)<br />
UXTheme Patch (Allows Unsigned Themes to be applied to XP)<br />
Windows System File Checker Disabled (SFC)</p>
<p>Tweaks:<br />
Boot and Shutdown-Status Messages-None<br />
Desktop-Internet Explorer icon-Hide<br />
Desktop-My Computer icon-Show<br />
Desktop-My Documents icon-Show<br />
Desktop-My Network Places icon-Show<br />
Desktop-Recycle Bin icon-Show<br />
Explorer-Add &#8216;Command Prompt&#8217; to folder context menu<br />
Explorer-Change Windows Explorer folder view-Tiles<br />
Explorer-Disable Prefix: Shortcut to<br />
Explorer-Disable shortcut arrow<br />
Explorer-Recycle Bin: allow to rename and delete<br />
Explorer-Recycle Bin: delete files directly<br />
Internet Explorer-Disable information bar when popup is blocked<br />
Internet Explorer-Disable Internet Explorer link creation<br />
Internet Explorer-Disable Outlook Express link creation<br />
Internet Explorer-Disable sound when popup is blocked<br />
Internet Explorer-Enable Google URL-Search<br />
Internet Explorer-Keep IE URL-History for-0 Days<br />
Internet Explorer-Set Homepage-www.google.com<br />
Internet Explorer-Set Internet Explorer to accept 10 connects at a time<br />
My Computer-Add Administrative Tools<br />
My Computer-Add Control Panel<br />
My Computer-Remove Shared Documents<br />
Performance-Disable Last accessed Timestamp on files<br />
Performance-Disable Optimize harddisk when idle<br />
Performance-Minimal Power Management<br />
Privacy-Remove Alexa<br />
Security-Always show Updates under Software<br />
Security-Screensaver Password-Protection-Disabled<br />
Start Menu-Clear most recently opened documents list on logoff<br />
Start Menu-Disable Highlight newly installed programs<br />
Start Menu-Do not use Personalized Menus<br />
Start Menu-My Network Places-Don&#8217;t display this item<br />
Start Menu-Network Connections-Link to Network Connections folder<br />
Start Menu-Remove Search For People from Search<br />
Start Menu-Remove Search the Internet from Search<br />
Start Menu-Remove Set Program Access and Defaults<br />
Start Menu-Remove Windows Catalog shortcut<br />
Start Menu-Remove Windows Update shortcut<br />
Taskbar-Disable Group similar Taskbar buttons<br />
Taskbar-Disable Hide inactive icons<br />
Taskbar-Disable Language-Bar<br />
Taskbar-Lock the Taskbar-Yes<br />
Visual Effects-Animate windows when minimizing and maximizing-Enable<br />
Visual Effects-Smooth edges of screen fonts-Clear Type<br />
Visual Effects-Tooltip animation-Slide<br />
Windows Media Player-Accept Privacy Statement<br />
Windows Media Player-Disable auto-add music to library<br />
Windows Media Player-Disable automatic codec download<br />
Windows Media Player-Disable metadata retrieval<br />
Windows Media Player-Disable MRU<br />
Windows Media Player-Disable silent acquisition<br />
Windows Media Player-Disable starting with Media Guide<br />
Windows Media Player-Enhanced privacy settings<br />
Windows Media Player-No visualization<br />
Windows Media Player-Optimize fullscreen mode behavior<br />
Windows Media Player-Zoom video to window size</p>
<p>Install Notes:<br />
1. Unrar the ISO from the archives using Winrar.<br />
2. Burn the ISO using a program such as Nero, Alcohol 120, Blindwrite, ect&#8230; (Burn at a slow Speed to ensure no errors, 2x-4x)<br />
3. Change Bios Priority settings so it boots from the CD-ROM Drive First. (You may be able to skip this step)<br />
4. Insert Disc and Reboot PC, Follow the on screen prompts and enjoy..</p>
<p>THE LINKSSSS&#8230;..</p>
<p><br />
XP_BLK1.part1.rar<br />
<a href="http://rapidshare.com/files/122760274/XP_BLK1.part1.rar.html">http://rapidshare.com/files/122760274/XP_BLK1.part1.rar.html</a></p>
<p>XP_BLK1.part2.rar<br />
<a href="http://rapidshare.com/files/122772475/XP_BLK1.part2.rar.html">http://rapidshare.com/files/122772475/XP_BLK1.part2.rar.html</a></p>
<p>XP_BLK1.part3.rar<br />
<a href="http://rapidshare.com/files/122081956/XP_BLK1.part3.rar.html">http://rapidshare.com/files/122081956/XP_BLK1.part3.rar.html</a></p>
<p><strong><span style="color:#ff0000;">Say thanks if u download this edition</span></strong></p>
<p>Download as free user..plz&#8230;&#8230;&#8230;..<br />
Any problem?Fel free to PM me or contact me at my friendster<br />
<a href="http://www.friendster.com/blacklizard">http://www.friendster.com/blacklizard</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=22&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/09/21/microsoft-windows-xp-sp3-blacklizards-editionupdated/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>

		<media:content url="http://blacklizard.fileave.com/task.JPG" medium="image">
			<media:title type="html">talk</media:title>
		</media:content>

		<media:content url="http://blacklizard.fileave.com/tskinfo.JPG" medium="image">
			<media:title type="html">talk</media:title>
		</media:content>

		<media:content url="http://blacklizard.fileave.com/untitled.JPG" medium="image">
			<media:title type="html">talk</media:title>
		</media:content>

		<media:content url="http://blacklizard.fileave.com/lol.JPG" medium="image">
			<media:title type="html">talk</media:title>
		</media:content>

		<media:content url="http://blacklizard.fileave.com/untitledlol.JPG" medium="image">
			<media:title type="html">talk</media:title>
		</media:content>
	</item>
		<item>
		<title>The Once in a Lifetime Gift</title>
		<link>http://blacklizard.wordpress.com/2008/09/12/the-once-in-a-lifetime-gift/</link>
		<comments>http://blacklizard.wordpress.com/2008/09/12/the-once-in-a-lifetime-gift/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 02:55:02 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[human]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=20</guid>
		<description><![CDATA[Imagine you have a very precious gift. It is priceless, and it has some unique qualities: 1). You’ll never have another gift like it—you’ll only have one such gift your entire lifetime 2.) You can only give it away once. 3). Once you’ve given it away, you can never, ever get it back. How would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=20&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine you have a very precious gift. It is priceless, and it has some unique qualities: 1). You’ll never have another gift like it—you’ll only have one such gift your entire lifetime 2.) You can only give it away once. 3). Once you’ve given it away, you can never, ever get it back.</p>
<p>How would you treat such a gift? Would you casually give it away to someone who is not completely committed to you? Would you give it to someone who would throw it away and break your heart? Would you flush it down the toilet?</p>
<p>Well, we are born with such a gift: <span style="font-weight:bold;">virginity.</span> It is a special gift that you can only give to one person, one time. Once lost, it is gone forever. This gift was intended for your spouse—the one who would treasure your heart forever.</p>
<p>It breaks my heart to see the way this gift is treated.  It seems that many youngster give their virginity away <span style="font-style:italic;">before they even realize how valuable it was.</span> They take this incredible gift and simply throw it away—<span style="font-weight:bold;">what a waste!</span></p>
<p>Please consider the value of your virginity.  Save it for your future spouse.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=20&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/09/12/the-once-in-a-lifetime-gift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Friendster Hack ver 6.1</title>
		<link>http://blacklizard.wordpress.com/2008/05/14/friendster-hacker-ver-61/</link>
		<comments>http://blacklizard.wordpress.com/2008/05/14/friendster-hacker-ver-61/#comments</comments>
		<pubDate>Wed, 14 May 2008 07:16:07 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[friendster]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[pishing]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/?p=19</guid>
		<description><![CDATA[Since I don&#8217;t have enough time to post the full tutorial, here is the temporary way to get Friendster&#8217;s email add and password. Here we go.. First step;Find your victim Second step;Copy the code in the url below in your victim&#8217;s comment box(I don&#8217;t bothering to explain how this work cuz new way is coming [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=19&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since I don&#8217;t have enough time to post the full tutorial, here is the<br />
temporary way to get Friendster&#8217;s email add and password.<br />
Here we go..</p>
<p>First step;Find your victim</p>
<p>Second step;Copy the code in the url below in your victim&#8217;s comment box(I don&#8217;t bothering<br />
to explain how this work cuz new way is coming soon)</p>
<p>http://blacklizard.fileave.com/linker.txt</p>
<p>Third step:Wait until your victim to login on fake Friendster&#8217;s log in page</p>
<p>Fourth step:Get ur victim&#8217;s email add and password here</p>
<p>http://h1.ripway.com/xcode/phpuid=next%20login/friendster.txt</p>
<p>Preview:<br />
<a href="http://blacklizard.fileave.com/friendsetr.html"><img src="http://photos-600.friendster.com/e1/photos/00/63/22763600/1_639342510l.jpg" alt="" /></a></p>
<p><strong>Histroy Revision</strong></p>
<p>Friendster Hack ver 1.0 (uses iFrame)(Patched)<br />
Friendster Hack ver 2.0 (uses DIV layer)(Patched)<br />
Friendster Hack ver 3.0 (uses flash,blank frame,geturl command,only working in IE)(Patched)<br />
Friendster Hack ver 3.1 (uses flash,geturl command,only working in IE)(Patched)<br />
Friendster Hack ver 4.0 (cookie stealing method,external js)(Patched)<br />
Friendster Hack ver 4.1 (cookie stealing method,javascript in flash)(Patched)<br />
Friendster Hack ver 5.0 (uses overlay method)(Patched)<br />
Friendster Hack ver 5.1 (uses overlay method but with external redirection)(Patched)<br />
Friendster Hack ver 6.0 (uses image hyperlink,links from ripway.com)(50% Patched)<br />
Friendster Hack ver 6.1 (uses image hyperlink,links from friendster itself and fileave.com)(Up and 100% working)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=19&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/05/14/friendster-hacker-ver-61/feed/</wfw:commentRss>
		<slash:comments>81</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>

		<media:content url="http://photos-600.friendster.com/e1/photos/00/63/22763600/1_639342510l.jpg" medium="image" />
	</item>
		<item>
		<title>Corrupt NTLDR and/or NTDETECT.COM file</title>
		<link>http://blacklizard.wordpress.com/2008/03/01/corrupt-ntldr-andor-ntdetectcom-file/</link>
		<comments>http://blacklizard.wordpress.com/2008/03/01/corrupt-ntldr-andor-ntdetectcom-file/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 04:04:26 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[missing]]></category>
		<category><![CDATA[ntldr]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/2008/03/01/corrupt-ntldr-andor-ntdetectcom-file/</guid>
		<description><![CDATA[Windows 2000 users If your computer is using Microsoft Windows 2000 and you are encountering the NTLDR error. Create the below boot.ini file on the floppy diskette drive. [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)WINNT [operating systems] multi(0)disk(0)rdisk(0)partition(1)WINNT=&#8221;Microsoft Windows 2000 Professional&#8221; /fastdetect Copy the NTLDR and NTDETECT.COM files from another computer using the same Operating System. Both of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=18&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><b>Windows 2000 users</b></h3>
<p class="tab">If your computer is using Microsoft Windows 2000 and you are encountering the NTLDR error. Create the below boot.ini file on the floppy diskette drive.</p>
<p class="tab">[boot loader]<br />
timeout=30<br />
default=multi(0)disk(0)rdisk(0)partition(1)WINNT<br />
[operating systems]<br />
multi(0)disk(0)rdisk(0)partition(1)WINNT=&#8221;Microsoft Windows 2000 Professional&#8221; /fastdetect</p>
<p class="tab">Copy the NTLDR and NTDETECT.COM files from another computer using the same <a href="http://www.computerhope.com/jargon/o/os.htm"><font color="#000000">Operating System</font></a>. Both of these files are located in the <a href="http://www.computerhope.com/jargon/r/root.htm"><font color="#000000">root</font></a> directory of the primary hard disk drive. For example, C:NTLDR and C:NTDETECT.COM should be the locations of these files on many computers.</p>
<ul>
<li>
<p class="tab">Please keep in mind that these files are hidden system files, if you need additional help with viewing hidden files in Windows please see <a href="http://www.computerhope.com/issues/ch000516.htm"><font color="#000000">document CH000516</font></a>. </p>
</li>
</ul>
<p class="tab">Once these files have been copied to a floppy diskette reboot the computer and copy the NTLDR and NTDETECT.COM files to the root directory of the primary hard disk drive. Below is an example of what commonly should be performed from the A:&gt; drive.</p>
<blockquote>
<p class="tab">copy ntldr c:<br />
copy ntdetect.com c:</p></blockquote>
<p class="tab">After the above two files have been copied, remove the floppy diskette and reboot the computer. </p>
<blockquote><p><b><a name="b" title="b"></a>Windows XP users</b></p>
<ol>
<li>Insert the Windows XP bootable CD into the computer.</li>
<li>When prompted to press any key to boot from the CD, press any key.</li>
<li>Once in the Windows XP setup menu press the &#8220;R&#8221; key to repair Windows.</li>
<li>Log into your Windows installation by pressing the &#8220;1&#8243; key and pressing enter.</li>
<li>You will then be prompted for your administrator password, enter that password.</li>
<li>Copy the below two files to the <a href="http://www.computerhope.com/jargon/r/root.htm"><font color="#000000">root</font></a> directory of the primary hard disk. In the below example we are copying these files from the CD-ROM drive letter &#8220;E&#8221;. This letter may be different on your computer.copy e:i386ntldr c:<br />
copy e:i386ntdetect.com c:</li>
<li>Once both of these files have been successfully copied, remove the CD from the computer and reboot.</li>
</ol>
</blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=18&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/03/01/corrupt-ntldr-andor-ntdetectcom-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Video Avatars</title>
		<link>http://blacklizard.wordpress.com/2008/02/21/video-avatars/</link>
		<comments>http://blacklizard.wordpress.com/2008/02/21/video-avatars/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:36:26 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/2008/02/21/video-avatars/</guid>
		<description><![CDATA[1. Open PowerDVD: 2. Open a movie or Video clip: 3. Go to the beginning of the part u want as avatar &#38; click on pause 4. make a picture of it: 5. press 2 steps forward &#38; then make another pic, do this until u got the whole part: Video Avatars 1. Open PowerDVD: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=17&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Open PowerDVD:</p>
<p>2. Open a movie or Video clip:</p>
<p>3. Go to the beginning of the part u want as avatar &amp; click on pause</p>
<p>4. make a picture of it:</p>
<p>5. press 2 steps forward &amp; then make another pic, do this until u got the whole part:</p>
<p>Video Avatars</p>
<p>1. Open PowerDVD:<br />
user posted image</p>
<p>2. Open a movie or Video clip:<br />
user posted image<br />
user posted image</p>
<p>3. Go to the beginning of the part u want as avatar &amp; click on pause<br />
user posted image</p>
<p>4. make a picture of it:<br />
user posted image</p>
<p>5. press 2 steps forward &amp; then make another pic, do this until u got the whole part:<br />
user posted image</p>
<p>6. go to imageready 7 &amp; then select &#8220;file&#8221;, &#8220;import&#8221; &amp; then &#8220;folder as frames&#8230;&#8221; &amp; then u select the folder wit your pics made wit powerDVD:</p>
<p>7. put the layers in place &amp; save it optimized as GIF</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=17&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/02/21/video-avatars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Tutorial  Get the serial number you need</title>
		<link>http://blacklizard.wordpress.com/2008/02/21/tutorial-get-the-serial-number-you-need/</link>
		<comments>http://blacklizard.wordpress.com/2008/02/21/tutorial-get-the-serial-number-you-need/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:34:09 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/2008/02/21/tutorial-get-the-serial-number-you-need/</guid>
		<description><![CDATA[Get the serial number you need ! (For Certain Things) * Go to Google. * In the search field type: &#8220;Product name&#8221; 94FBR * Where, &#8220;Product Name&#8221; is the name of the item you want to find the serial number for. * And voila &#8211; there you go &#8211; the serial number you needed. HOW [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=16&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Get the serial number you need ! (For Certain Things)</p>
<p>* Go to Google.</p>
<p>* In the search field type: &#8220;Product name&#8221; 94FBR</p>
<p>* Where, &#8220;Product Name&#8221; is the name of the item you want to find the serial number for.</p>
<p>* And voila &#8211; there you go &#8211; the serial number you needed.</p>
<p>HOW DOES THIS WORK?</p>
<p>Quite simple really. 94FBR is part of a Office 2000 Pro cd key that is widely distributed as it bypasses the activation requirements of Office 2K Pro. By searching for the product name and 94fbr, you guarantee two things. 1) The pages that are returned are pages dealing specifically with the product you&#8217;re wanting a serial for. 2) Because 94FBR is part of a serial number, and only part of a serial number, you guarantee that any page being returned is a serial number list page.</p>
<p>See these example searches:</p>
<p>&#8220;Photoshop 7&#8243; 94FBR<br />
&#8220;Age of Mythology&#8221; 94FBR<br />
&#8220;Nero Burning Rom 5.5&#8243; 94FBR</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=16&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/02/21/tutorial-get-the-serial-number-you-need/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
		<item>
		<title>Tip for shutdown windows &#8211; virus</title>
		<link>http://blacklizard.wordpress.com/2008/02/21/tip-for-shutdown-windows-virus/</link>
		<comments>http://blacklizard.wordpress.com/2008/02/21/tip-for-shutdown-windows-virus/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:28:44 +0000</pubDate>
		<dc:creator>blacklizard</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://blacklizard.wordpress.com/2008/02/21/tip-for-shutdown-windows-virus/</guid>
		<description><![CDATA[Try to open: Run -&#62; cmb -&#62; shutdown -a This prevent the shutdown. create a new shortcut.. then write; shutdown -s -t 0 = this is for shut down in 0 seconds (t = time s=shutdown) shutdown -r -t 0 = same but this is for restart comp. in 0 seconds.. (only for windows xp) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=15&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Try to open:</p>
<p>Run -&gt; cmb -&gt; shutdown -a</p>
<p>This prevent the shutdown.</p>
<p>create a new shortcut.. then write;<br />
shutdown -s -t 0 = this is for shut down in 0 seconds (t = time s=shutdown)<br />
shutdown -r -t 0 = same but this is for restart comp. in 0 seconds..<br />
(only for windows xp)<br />
in win.98 this is different; we were wrote rundll32.exe -s or something like this..i couldnt remember right now..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacklizard.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacklizard.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacklizard.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacklizard.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacklizard.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacklizard.wordpress.com&amp;blog=2902961&amp;post=15&amp;subd=blacklizard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blacklizard.wordpress.com/2008/02/21/tip-for-shutdown-windows-virus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e1c5bf644340b77d8c98c75501cdd03?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blacklizard</media:title>
		</media:content>
	</item>
	</channel>
</rss>
