<?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>Vlixter.com</title>
	<atom:link href="http://vlixter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vlixter.com</link>
	<description>Programming , Tech, and stuff</description>
	<lastBuildDate>Sat, 02 Jan 2010 14:40:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Project Euler :: Problem 2 :: Haskell</title>
		<link>http://vlixter.com/2010/01/02/project-euler-problem-2-haskell/</link>
		<comments>http://vlixter.com/2010/01/02/project-euler-problem-2-haskell/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 14:35:11 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[haskell]]></category>
		<category><![CDATA[project-euler]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=144</guid>
		<description><![CDATA[This is the second tutorial on solving Project Euler problems using Haskell. Hope you will enjoy!
Problem Description:
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, &#8230;
Find the sum [...]]]></description>
			<content:encoded><![CDATA[<p>This is the second tutorial on solving <a href="http://projecteuler.net/" target="_blank">Project Euler</a> problems using Haskell. Hope you will enjoy!</p>
<p><strong>Problem Description:</strong></p>
<blockquote><p>Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:</p>
<p>1, 2, 3, 5, 8, 13, 21, 34, 55, 89, &#8230;</p>
<p>Find the sum of all the even-valued terms in the sequence which do not exceed four million.</p></blockquote>
<p>Again, create a new text file and call it euler2.hs</p>
<p>First, we are required to make a function that computes the numbers of the Fibonnacci sequence. From the definition fib(x) = fib(x-1) + fib(x-2), we can easily code this in Haskell.</p>
<p>Here is how it would look:</p>
<pre class="brush:ruby">fib :: Int -&gt; Int
fib 1 = 1
fib 2 = 1
fib x = fib(x-1) + fib(x-2)
</pre>
<p>Now on to test this function. Open up ghci, load the file, and type in &#8220;fib 30&#8243;, which asks for the 30th Fibonacci numbers.  Actually, this will be quite slow, here are my results:</p>
<pre class="brush:ruby">*Euler1&gt; fib 30
832040
(2.46 secs, 172153128 bytes)
</pre>
<p>2.46 seconds to get the 30th number ? Way too slow. What is happening here, is that the computer has to do a lot of counting.</p>
<p>fib(30) = fib(29) + fib(28)</p>
<p>= [fib(28) + fib(27)] + [fib(27) + fib(26) ]</p>
<p>and so on and on, expanding the fib, until the problem is reduced to adding up a whole bunch of 1&#8217;s together, as the first two terms are 1&#8217;s.</p>
<p>So we need a solution, where we don&#8217;t need to recompute fib as many times, so you could call it a form of &#8220;caching&#8221;.</p>
<p>Here is my proposed solution:</p>
<pre class="brush:ruby">fib :: Int -&gt; Int
fib n = table !! n
 where
   table = 0 : 1 : zipWith (+) table (tail table)
</pre>
<p>Whoa, what&#8217;s happening here ? We are creating a &#8220;table&#8221; of the Fibonacci numbers, and then simply calling the &#8220;!!&#8221; (value at index) function to get our desired number.</p>
<p>We define a table as a list, with first element 0, and second element 1, and with the rest of the list being computed recursively using &#8220;zipWith (+)&#8221;.</p>
<p>&#8220;zipWith&#8221; is a function that takes another function, such as the plus function (+), and two lists, and it &#8220;zips&#8221; them together using that operator.</p>
<p>For example, zipWith (+) [1,2,3] [1,1,1] will return the list [2,3,4].</p>
<p>Understanding the above revised fib function is best done by simply expanding the recursive bit. Here it is from my prompt.</p>
<pre class="brush:ruby">*Euler1&gt; zipWith (+) [0,1] [1]
[1]
*Euler1&gt; zipWith (+) [0,1,1] [1,1]
[1,2]
*Euler1&gt; zipWith (+) [0,1,1,2] [1,1,2]
[1,2,3]
*Euler1&gt; zipWith (+) [0,1,1,2,3] [1,1,2,3]
[1,2,3,5]
*Euler1&gt; zipWith (+) [0,1,1,2,3,5] [1,1,2,3,5]
[1,2,3,5,8]
</pre>
<p>So we are seeing how the second parameter of zipWith is our desired sequence. Since Haskell implement lazy evaluation, it will stop computing the list as soon as it reaches &#8220;n&#8221;.</p>
<p>This approach is also much faster than the previous one. See for yourself!</p>
<pre class="brush:ruby">*Euler1&gt; fib 30
832040
(0.00 secs, 528596 bytes)
</pre>
<p>0.00 seconds is quite damn fast, and the solution uses up a lot less memory than the previous one!</p>
<p>Now using our knowledge of list comprehensions from the <a href="http://vlixter.com/2010/01/02/project-euler-problem-1-haskell/" target="_blank">previous tutorial</a>, and the function described above, we can solve problem 2 on Project Euler.</p>
<pre class="brush:ruby">fib n = table !! n
 where
    table = 0 : 1 : zipWith (+) table (tail table)

euler2 = sum[x | x&lt;- takeWhile (&lt;4000000) (map fib [1..]), even(x)]</pre>
<p>Line 5 has a couple new function we aren&#8217;t familiar with, such as takeWhile, map, and even.</p>
<p>&#8220;even&#8221; returns true when its parameter is even, and else it returns false. Hence, &#8220;even(x)&#8221; is one of our conditions for the list comprehension</p>
<p>Now the main part of this is</p>
<pre class="brush:ruby">x &lt;- takeWhile (&lt;4000000) (map fib [1..])
</pre>
<p>Let&#8217;s look at &#8220;map&#8221; first. &#8220;Map&#8221; is a function which takes another function, and a list, and it applies that function to every element of the list.</p>
<p>For example, &#8220;map (+1) [1,2,3]&#8221; will return the list [2,3,4]. Think of this as a kind of a &#8220;foreach&#8221; loop you might know from imperative programming languages such as C,C++, Java, etc.</p>
<p>Now the &#8220;takeWhile&#8221; function. This function takes a predicate p, and a list, and returns a list such that all elements in the list meet the predicate p up to a certain point in the list, when we encounter a member that does not follow the predicate, and hence the list is trimmed.</p>
<p>For example, &#8220;takeWhile &lt;5 [1,4,2,6,3]&#8221; will return [1,4,2] since the number 6 does not follow the predicate, it is NOT less than 5.</p>
<p>So finally, what we are saying, is : &#8220;x comes from infinite list of Fibonacci numbers, but trim this list so that we only have elements less than 4 million&#8221;</p>
<p>At the very end, use the predefined &#8220;sum&#8221; function we know from the previous tutorial, to get the sum of the list.</p>
<p>Here is script executing on my machine, very rapidly thanks to that method of computing fibonacci numbers!</p>
<pre class="brush:ruby">*Euler&gt; euler2
4613732
(0.00 secs, 524700 bytes)
</pre>
<p>Thanks for reading! This is only my second tutorial, so could you please post some comments about improving my style, explanations, etc.</p>
<p>Please come back for more tutorials!</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2010/01/02/project-euler-problem-2-haskell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Euler :: Problem 1 :: Haskell</title>
		<link>http://vlixter.com/2010/01/02/project-euler-problem-1-haskell/</link>
		<comments>http://vlixter.com/2010/01/02/project-euler-problem-1-haskell/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 13:32:04 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[haskell]]></category>
		<category><![CDATA[project-euler]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=141</guid>
		<description><![CDATA[This is the first tutorial about solving the problems on Project Euler.
I will be solving problem number 1, using the language Haskell, which is a functional programming language. If you come from a imperative programming language background (C++, C, Java, PHP), you might find Haskell a little &#8216;weird&#8217; at first, but it is actually quite [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first tutorial about solving the problems on <a href="http://projecteuler.net/" target="_blank">Project Euler.</a></p>
<p>I will be solving problem number 1, using the language <a href="http://www.haskell.org/" target="_blank">Haskell</a>, which is a functional programming language. If you come from a imperative programming language background (C++, C, Java, PHP), you might find Haskell a little &#8216;weird&#8217; at first, but it is actually quite good for quickly solving some of the Project Euler problems!</p>
<p><strong>Problem Description:</strong></p>
<blockquote><p>If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.<br />
Find the sum of all the multiples of 3 or 5 below 1000.</p></blockquote>
<p>Solving this using Haskell is really simple. Open up ghci (Glasgow Haskell Compiler Interpreter), and then create somewhere a new file called euler1.hs, or whatever else you please.</p>
<p>Here is the code:</p>
<pre class="brush:ruby">euler1 :: Int
euler1 = sum [x | x &lt;- [1..999], x `mod` 5 == 0 || x `mod` 3 == 0]
</pre>
<p>Line 1 says that the function euler1 is of type Int (think of it as just an integer), meaning it will return an integer after calling it. Line 2 is the meat of the function. Firstly, we are using the &#8220;list comprehension&#8221; syntax. Ignore &#8220;sum&#8221; for now, and just look at what&#8217;s inbetween the square brackets. Read it as &#8220;Return me a list of numbers x, where x comes from the finite list 1 to 999, and such that x is evenly divisible by 5 OR x is evenly divisible by 3.</p>
<p>Finally, use the predefined &#8220;sum&#8221; function. This function takes a list of numeric values, and returns the sum of them, which is precisely what we want.</p>
<p>As this is my very first tutorial like this, I would appreciate any comments, such as should I write more in-depth, less in-depth, explain some concepts more, explain how to set up Haskell on your system ?</p>
<p>Thanks, and please come back for the second tutorial for Project Euler!</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2010/01/02/project-euler-problem-1-haskell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Update!</title>
		<link>http://vlixter.com/2010/01/02/blog-update/</link>
		<comments>http://vlixter.com/2010/01/02/blog-update/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 13:11:04 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=132</guid>
		<description><![CDATA[Hello to everyone in the New Year!
I have not updated this blog much recently, but I&#8217;m hoping for this to change this year!
The most popular post on my blog happened to be about cheating the Facebook game Tetris, hence I&#8217;m planning on putting up more videos and tutorials on various aspects of game hacking and [...]]]></description>
			<content:encoded><![CDATA[<p>Hello to everyone in the New Year!<br />
I have not updated this blog much recently, but I&#8217;m hoping for this to change this year!<br />
The most popular post on my blog happened to be about <a href="http://vlixter.com/2008/04/05/tutorial-how-to-hack-and-cheat-the-facebook-game-tetris-blockstar/" target="_blank">cheating the Facebook game Tetris</a>, hence I&#8217;m planning on putting up more videos and tutorials on various aspects of game hacking and programming.</p>
<p>Hence, some of the things I&#8217;m hoping to post include</p>
<ol>
<li>More tutorial about various aspects of game hacking</li>
<li>Programming Tutorials</li>
<li>Solving problems from <a href="http://projecteuler.net/" target="_blank">Project Euler</a> and posting my solutions</li>
</ol>
<p>Hope you will enjoy the blog, and that you will check back often!</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2010/01/02/blog-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TUTORIAL &#8211; How to hack the administrator password in Windows XP!</title>
		<link>http://vlixter.com/2008/05/20/tutorial-how-to-hack-the-administrator-password-in-windows-xp/</link>
		<comments>http://vlixter.com/2008/05/20/tutorial-how-to-hack-the-administrator-password-in-windows-xp/#comments</comments>
		<pubDate>Tue, 20 May 2008 21:34:26 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=69</guid>
		<description><![CDATA[Have you ever wondered how to retrieve the Windows admin password for a computer? I&#8217;ll try to be brief and explain how to do just that without using too many advanced techniques. Of course they are many ways of doing this, so I&#8217;ll outline what I find easy. Remember that this is only for educational [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered how to retrieve the Windows admin password for a computer? I&#8217;ll try to be brief and explain how to do just that without using too many advanced techniques. Of course they are many ways of doing this, so I&#8217;ll outline what I find easy. Remember that this is only for educational purposes, don&#8217;t try to hack someone&#8217;s computer (unless you really need to&#8230;). Also remember that you need physical access to the computer and some time. This tutorial is for Windows XP, not sure what else it will work for.</p>
<p>Tools you will need:</p>
<blockquote>
<ul>
<li>1GB or bigger USB key (or a CD and CD burner)</li>
<li>Another any size USB key</li>
<li>Any distribution of Linux. I used Pendrive Linux and a USB key but any combination will work.</li>
<li>A computer on which to do all the installing and other work</li>
<li>The computer for which you want to retrieve the password</li>
<li>Rainbow table program <a href="http://ophcrack.sourceforge.net/">Ophcrack</a></li>
<li><a href="http://downloads.sourceforge.net/ophcrack/tables_xp_free_fast.zip">A 700MB rainbow table</a> (if the password is more complex you can use a bigger one. More on that a bit later)</li>
</ul>
</blockquote>
<p>I will write this tutorial as if you are using Pendrive Linux and USB, but you can easily port this method to CD/DVD or other variants. Below is the step by step tutorial on what exactly you need to do.</p>
<blockquote>
<ul>
<li>Format your USB stick and set the filesystem to FAT32 while formattting. If the Linux won&#8217;t work with FAT32 try FAT.</li>
<li>Download Pendrive Linux from <a href="http://downloads.sourceforge.net/pendrivelinux/Pendrivelinux08.zip">HERE</a></li>
<li>Using Winrar or another extraction program, extract the contents of Pendrive Linux into the root of your newly formatted USB drive </li>
<li>When it finishes extracting, open the USB directory, and open the file makeboot.dat. This will make your USB drive bootable</li>
<li>Your USB is ready for booting. Plug it into the computer you want to find the password for. Reboot/Start the computer</li>
<li>When booting, make sure you select USB as the boot device. This is different for every BIOS, so you will just have to figure it out yourself. It&#8217;s sometimes F9, F8, or Del key, but it could by something else </li>
<li>Wait for Pendrive linux to finish booting. You will arrive at the main screen.</li>
<li>Open the window that allows you to see all storage devices on the computer. One of the them will be the hard drive, open it and navigate to C:\Windows\system32\config/ </li>
<li>Stick your other USB key into the computer, and copy all the files from this directory onto another directoy on your USB key. You can ignore the systemprofile directory, you don&#8217;t need it.</li>
<li>Just to be safe and make sure you have the files you need, you can also copy the contents of C:\Windows\repair to another folder on your USB Key. This is just in case the other files don&#8217;t work, but most likely they will.</li>
</ul>
</blockquote>
<p> OK, you are now finished with copying the system files. What&#8217;s stored in the /config/ directory is all the passwords that are saved on the current computer, but they are encrypted, so we need a way of decrypting them. It would take forever to bruteforce, so what we will use is <a href="http://en.wikipedia.org/wiki/Rainbow_table">Rainbow Tables.</a> These are pregenerated hashes, so what the computer will do is check the hashed version of the password from the file and compare it with the table. Of course, the bigger the table the more possibilities it has, and also it&#8217;s faster. Now it&#8217;s password-cracking time</p>
<blockquote>
<ul>
<li>Download <a href="http://ophcrack.sourceforge.net/">Ophcrack.</a> It will allow us to crack the passwords.</li>
<li>Download this <a href="http://downloads.sourceforge.net/ophcrack/tables_xp_free_fast.zip">700MB rainbow table</a></li>
<li>If the password is not alpha-numeric and contains special characters, you will need a bigger table. What I recommend is to download a 35 GB rainbow table from a torrent. The torrent is available from <a href="http://umbra.shmoo.com:6969/">HERE</a>. Make sure you download the right now, or otherwise that&#8217;s a lot of bandwidth wasted!</li>
<li>Open up Opcrack and click the Tables icon. Point to your tables directory and click Install</li>
<li>Click the Load icon, and select &#8220;Encrypted SAM&#8221;. Now point the tree view to the directory to which you dumped all the files from the system32\config directory</li>
<li>Click crack and wait a little. If the passwords are complicated it might take longer. After it finishes, it presents you with all the passwords stored for this computer!</li>
</ul>
</blockquote>
<p>If it didn&#8217;t work, it might be because you are using the alphanumeric table and the password has non alphanumeric characters. If you Download the 35 GB table there is a much higher chance you will be able to crack the password! Also, it might be possible that the passwords are salted, in which I think you are out of luck, since a salt makes it really hard to decrypt the hash. Still, try the method and see what you come up with! You now have administrator access to the machine! I hope you enjoyed reading, and that you learned something. Also, remember that this is for educational purposes only, don&#8217;t use it for criminal activities! Also, sorry for no pics, maybe I&#8221;ll come up with some a bit later!</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2008/05/20/tutorial-how-to-hack-the-administrator-password-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TI Basic Insulter Program</title>
		<link>http://vlixter.com/2008/05/04/ti-basic-insulter-program/</link>
		<comments>http://vlixter.com/2008/05/04/ti-basic-insulter-program/#comments</comments>
		<pubDate>Sun, 04 May 2008 18:07:30 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[TI]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=65</guid>
		<description><![CDATA[Hmm, this is a weird program, but try it out   You input the name of the person, select the statement, and then this loops on the main screen. Press the &#8220;Enter&#8221; key to end.
DOWNLOAD:HERE
]]></description>
			<content:encoded><![CDATA[<p>Hmm, this is a weird program, but try it out <img src='http://vlixter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You input the name of the person, select the statement, and then this loops on the main screen. Press the &#8220;Enter&#8221; key to end.</p>
<p>DOWNLOAD:<a href="http://vlixter.com/resources/programs/PWNER.8xp">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2008/05/04/ti-basic-insulter-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Calculator Program</title>
		<link>http://vlixter.com/2008/05/01/new-calculator-program/</link>
		<comments>http://vlixter.com/2008/05/01/new-calculator-program/#comments</comments>
		<pubDate>Thu, 01 May 2008 12:10:11 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[calcultator]]></category>
		<category><![CDATA[chemistry]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=64</guid>
		<description><![CDATA[Hey all. After I had to do about 50 different examples of these in my chemistry class, I decided to make small program in TI-Basic that solves for the pH of strong/weak acids and bases. To do the weak acids calculations, you need to provide the pKa or pKb, and the concentration of the acid/base. [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all. After I had to do about 50 different examples of these in my chemistry class, I decided to make small program in TI-Basic that solves for the pH of strong/weak acids and bases. To do the weak acids calculations, you need to provide the pKa or pKb, and the concentration of the acid/base. It uses the assumption that the concentration of H+, OH-  in weak acids/bases tends to zero, and solves it without using the quadratic equation, therefore it&#8217;s not fully accurate, but its enough for the requirements of the IB. You need a calculator that supports TI-Basic, and means to transfer the program from the computer to the calculator.</p>
<p>Download: <a href="http://vlixter.com/resources/programs/CHEMCALC.8xp">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2008/05/01/new-calculator-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TUTORIAL &#8211; How to hack and cheat the Facebook game Tetris / Blockstar</title>
		<link>http://vlixter.com/2008/04/05/tutorial-how-to-hack-and-cheat-the-facebook-game-tetris-blockstar/</link>
		<comments>http://vlixter.com/2008/04/05/tutorial-how-to-hack-and-cheat-the-facebook-game-tetris-blockstar/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 14:09:35 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[blockstar]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[cheatengine]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[tetris]]></category>

		<guid isPermaLink="false">http://vlixter.com/?p=62</guid>
		<description><![CDATA[This is the second, and the better tutorial on how to hack and cheat in the game Facebook Tetris / Blockstar. Use this method instead of the other one posted some time ago.
EDIT: Facebook tetris has updated and this, as far as I know, does not work anymore. If you have any ideas, post in [...]]]></description>
			<content:encoded><![CDATA[<h4>This is the second, and the better tutorial on how to hack and cheat in the game Facebook Tetris / Blockstar. Use this method instead of the other one posted some time ago.</h4>
<h4><span style="color: #ff0000;">EDIT: Facebook tetris has updated and this, as far as I know, does not work anymore. If you have any ideas, post in the comment section <img src='http://vlixter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></h4>
<p>Here is the video tutorial, and the shortened text version after the vid.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.metacafe.com/fplayer/1221762/how_to_hack_cheat_the_facebook_game_tetris_blockstar_v_2.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="400" height="345" src="http://www.metacafe.com/fplayer/1221762/how_to_hack_cheat_the_facebook_game_tetris_blockstar_v_2.swf" wmode="transparent"></embed></object><br />
<span style="font-size: xx-small;"><a href="http://www.metacafe.com/watch/1221762/how_to_hack_cheat_the_facebook_game_tetris_blockstar_v_2/">How to HACK / CHEAT the Facebook Game Tetris / Blockstar (v.2)</a></span></p>
<blockquote><p>Step 1. Download Cheat Engine <a href="http://www.cheatengine.org/downloads/CheatEngine54.exe">HERE</a>.</p>
<p>Step 2. Go to <a href="http://apps.facebook.com/fbtetris/">Facebook Tetris</a>.</p>
<p>Step 3. Install and run Cheat Engine. Click Attach Process in the top left, and select your browser (firefox.exe, iexplore.exe etc)</p>
<p>Step 4. Start playing tetris so that you get any score. Just get something like a 100 and click pause. Go to Cheat Engine. In the Value box, type in your score. For search type select Exact Value, and for Data Type select &#8220;Double&#8221;. Click First Scan. The program will now scan the memory, and it will find from 1-1000 addresses.</p>
<p>Step 5. What you want to do now is go back to Tetris, and unpause the game. Get another couple of points, and pause the game again. Go back to Cheat Engine, and change the value in the Value box to your current score. IMPORTANT: Click Next Scan, and not first scan. Cheat Engine should now 1 address in the address box. If you have more, perform this step again until you find only 1 address.</p>
<p>Step 6. When you do find the 1 address, double click on it. This will add it to the window in the bottom of Cheat Engine. Now Right Click on the address, and select &#8220;Set Hotkey&#8221; or something along the lines of hotkey. You will a window pop up. For the key combination, click anything, I chose the Del key but you can chose anything you want. For the dropdown menu, select &#8220;Increment&#8221;, and for the increment value, put 10000 (IMPORTANT, no more than 10000). Click OK</p>
<p>Step 7. Go back to Tetris and unpause the game. Start playing, and hit the Del key or whatever you set for your hotkey. Your score will now increase by 10000. Keep on clicking delete and playing at the same time. If you just mash the hotkey the game will find out you are cheating. So don&#8217;t overdo it, drop one block, hit the hotkey, and you should easily get &gt;2 million points</p></blockquote>
<p>If the above is not working for you then you did something wrong. Reread the tutorial and watch the video again.</p>
<p>I hope this was useful, and I&#8217;m still working on finding a method to allow you to input any score you want without consequences, so check back the site often.</p>
<p>No go on and get yourself a high Blockstar score!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2008/04/05/tutorial-how-to-hack-and-cheat-the-facebook-game-tetris-blockstar/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>TUTORIAL &#8211; How to cheat in Facebook Tetris &#8211; BlockStar Cheating</title>
		<link>http://vlixter.com/2008/03/28/tutorial-how-to-cheat-in-facebook-tetris/</link>
		<comments>http://vlixter.com/2008/03/28/tutorial-how-to-cheat-in-facebook-tetris/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 20:07:31 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[blockstar]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[tetris]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://vlixter.com/2008/03/28/tutorial-how-to-cheat-in-facebook-tetris/</guid>
		<description><![CDATA[ WARNING: THIS IS THE OLD TUTORIAL. FOR THE NEWER, BETTER VERSION, PLEASE CLICK HERE 

A friend of mine once asked me how he could cheat in the facebook game Tetris, or Blockstar, so I made a tutorial how to do it in a pretty interesting way. As I&#8217;m no programmer, (well, I hope to [...]]]></description>
			<content:encoded><![CDATA[<p style="color:#FF0000; font-size:25px;"> WARNING: THIS IS THE OLD TUTORIAL. FOR THE NEWER, BETTER VERSION, PLEASE CLICK <a href="http://vlixter.com/2008/04/05/tutorial-how-to-hack-and-cheat-the-facebook-game-tetris-blockstar/">HERE</a> </p>
<p>
A friend of mine once asked me how he could cheat in the facebook game <a href="http://apps.facebook.com/fbtetris/" target="_blank">Tetris</a>, or <a href="http://apps.facebook.com/fbtetris/" target="_blank">Blockstar,</a> so I made a tutorial how to do it in a pretty interesting way. As I&#8217;m no programmer, (well, I hope to improve&#8230;.), this method doesn&#8217;t involve modifying the memory, and is very limited. But hey, if you want to beat someone it can get u that extra 300k points.  I also have a video tutorial if you rather watching than reading, here it goes.
</p>
<p><embed src="http://www.metacafe.com/fplayer/1199425/how_to_cheat_in_facebook_tetris.swf" width="400" height="345" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"> </embed><br /><font size = 1><a href="http://www.metacafe.com/watch/1199425/how_to_cheat_in_facebook_tetris/">How to Cheat in Facebook Tetris</a> &#8211; <a href="http://www.metacafe.com/">For more amazing video clips, click here</a></font></p>
<blockquote><p>Step 1: Install the plugin called <a href="https://addons.mozilla.org/en-US/firefox/addon/115">ReloadEvery</a> for Firefox.</p>
<p>Step 2: Go to www.youtube.com and while holding CTRL, click on like 40 videos you can see on the main page. This will open all of them in a new tab.</p>
<p>Step 3: Right Click anywhere on any page and go to ReloadEvery. Select 5s intervals, and click enable for all tabs. This will make firefox run very slowly, and since there will be so many instances of flash running already, facebook Tetris will be really slow</p>
<p>Step 4: Head over to Facebook Tetris and play it. It will be really slow now. It all matters on your computer. If it&#8217;s not slow enough, open more tabs, if it&#8217;s too slow, close some</p>
</blockquote>
<p>I hope I&#8217;ll find a better method, like one where you can just set your score. For now, thanks for reading and stay tuned for more:)</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2008/03/28/tutorial-how-to-cheat-in-facebook-tetris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concentration Camps &#8211; Creative Video</title>
		<link>http://vlixter.com/2007/12/05/concentration-camps-creative-video/</link>
		<comments>http://vlixter.com/2007/12/05/concentration-camps-creative-video/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 15:36:09 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[Video Editing]]></category>
		<category><![CDATA[afterfx]]></category>
		<category><![CDATA[concentration camp]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[holocaust]]></category>
		<category><![CDATA[nazi]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vlixter.com/2007/12/05/concentration-camps-creative-video/</guid>
		<description><![CDATA[Hey. This is a short creative video portraying the horrors of the Holocaust and of the Nazi concentration camps during the Second World War. The video takes some quotes from Chapter 6 of a popular Holocaust novel, &#8220;If This is a Man&#8221;, by Primo Levi. The book is an autobiography and it shows what the [...]]]></description>
			<content:encoded><![CDATA[<p>Hey. This is a short creative video portraying the horrors of the Holocaust and of the Nazi concentration camps during the Second World War. The video takes some quotes from Chapter 6 of a popular Holocaust novel, &#8220;If This is a Man&#8221;, by Primo Levi. The book is an autobiography and it shows what the main character went through from the time he was taken by the Germans to the time where the Russians come and save them. The video was done in After Effects with sound added in Premiere.</p>
<p>[Youtube:http://youtube.com/watch?v=c8CGsxL4UZE]</p>
<p>High Quality Version (130MB) (Right Click&gt;Save As)&gt; -   <a href="http://vlixter.com/vids/Chapter6-TheWork-HiQ.wmv">HERE</a></p>
<p>Lower Quality Version (30MB)  (Right Click&gt;Save As)&gt; -  <a href="http://vlixter.com/vids/Chapter6-TheWork-LoQ.wmv">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2007/12/05/concentration-camps-creative-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should Schools Fingerprint Your Kids?</title>
		<link>http://vlixter.com/2007/11/26/should-schools-fingerprint-your-kids/</link>
		<comments>http://vlixter.com/2007/11/26/should-schools-fingerprint-your-kids/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 22:29:46 +0000</pubDate>
		<dc:creator>radicality</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[fingerprint]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://vlixter.com/2007/11/26/should-schools-fingerprint-your-kids/</guid>
		<description><![CDATA[Original Link &#8211; http://www.time.com/time/business/article/0,8599,1665119,00.html
Schools in certain states in America want to introduce fingerprint scanners in cafeterias to increase the lunch period. Using a 6 digit number was troublesome for a lot, and it shortened the lunch break which in some schools is only 20 minutes long. The schools&#8217; idea is that by using a fingerprint [...]]]></description>
			<content:encoded><![CDATA[<p>Original Link &#8211; http://www.time.com/time/business/article/0,8599,1665119,00.html</p>
<p>Schools in certain states in America want to introduce fingerprint scanners in cafeterias to increase the lunch period. Using a 6 digit number was troublesome for a lot, and it shortened the lunch break which in some schools is only 20 minutes long. The schools&#8217; idea is that by using a fingerprint scanner lines would move more quickly and the students could enjoy a longer lunch break.</p>
<p><img src="http://img.timeinc.net/time/daily/2007/0709/fingerprints_0920.jpg" height="235" width="360" /></p>
<p>The information system here is biometric devices and their use. At the beginning of the year, all the children would have their fingerprints scanned and put into the school system. Then, when in a lunch line, what a child would have to do is just put their index finger on a small biometric reader. The picture of the person and other personal data would be pulled from the school server and would pop up on the cashier&#8217;s screen.</p>
<p>This development raises the ethical issue of privacy. Even though schools have a legal binding with the government that they can&#8217;t release any personal data, a lot of parents are infuriated by this new idea. One of them commented it as being Orwellian, and that he believes that this data might be compromised by 3rd parties. While the schools believe that this would be a great improvement, parents are scared about their children and no one should blame them. No one would want the personal data of their children seen by people who were never meant to see it.</p>
<p>A possible area of impact of this is the education system along with the children in it. If the system is not implemented, the children will have to stand more time in a line, have less free time during lunch which could possibly demoralize them for the next class. The impact on the school would be such that everything would be much more simplified, and no one would have to go through the trouble if they forgot their student ID. They would have their fingerprint with them for payment. Other stakeholders apart from the children and schools include the parents who are terribly nervous about their children&#8217;s privacy, and the biometrics companies, for which schools are slowly becoming good customer of.</p>
]]></content:encoded>
			<wfw:commentRss>http://vlixter.com/2007/11/26/should-schools-fingerprint-your-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
