Tetris In 140 Bytes
Written by Ian Elliot   
Saturday, 18 February 2012

Is it possible to write a program in no more than a tweet's length? A website called 140byt.es says it is and has an implementation of Tetris to prove it.

 

You might think that programmers had enough to keep themselves amused without thinking up silly challenges. 140byt.es is a website devoted to short things you can say in JavaScript. Write a function that does something impressive using 140 characters or less and you can display it for all to see. Putting this another way, you can write an impressive JavaScript function that could be sent in an SMS or tweet.

 

140bytesLogo

 

Of course such attempts at compressing programs into tiny spaces go against the ethos of clear maintainable code, but this is day-off stuff and purely for fun.

You might think that 140 characters aren't sufficient to make any JavaScript tweet worth looking at, but you would be wrong. What about a Mandelbrot viewer with zoom and pan, or something useful like a credit card number checker.

One that caught my attention in particular was an implementation of Tetris - ok, it only has two types of  block - hence its title "Binary Tetris" - and there's no rotate, but it works. The blocks fall down the screen and you steer them into place. You can try it out by playing the demo.

The complete function is

   function(a,b,c,d,e){return d+=c,
    e=a|b<<d,d<0|a&b<<d&&(a=e=
    parseInt((a|b<<c).toString(d=32)
    .replace(/v/,""),d),b=new Date%2?1:3),
    [a,b,d,e]}

Of course the fun for the reader is to work out how it works. To do this you need to know that the function doesn't include the display routine or the user interaction. You also need to know some tricks of the trade. In particular, if you are wondering what the Date object is doing in there, it's a cheap way to get random numbers.

If you are stumped then a clue is that the board and falling blocks are represented as bit patterns and the whole logic is implemented as bit manipulation. The good news is that this tiny program is explained in great detail. If only all programs were documented to this degree!

 

binarytetris

To join the 140byt.es simple go to their website, fork the standard code and start work. There you will also find some interesting tips on how to save space while writing JavaScript.

 

 

More Information

http://140byt.es/

Binary Tetris

 

{loadposition signup)

 

Banner


Query Your Oracle Autonomous Database With Natural Language
22/04/2024

Select AI is a new feature of the Oracle Autonomous Database that transforms your mother language to SQL. This is a big boon for non-developers in extracting value out of their data silos.



Women Who Code Closing For Lack of Funding
24/04/2024

Women Who Code the US-based non-profit organization that since its foundation in 2011 has advocated for women and diversity in technology, has announced its imminent closure due to critical funding cu [ ... ]


More News

Last Updated ( Sunday, 24 July 2022 )