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


Google Intensive AI Course - Free On Kaggle
05/11/2024

Google is offering a 5-Day Gen AI Intensive Course designed to equip data scientists with the knowledge and skills to tackle generative AI projects with confidence. It runs on the Kaggle platform from [ ... ]



Go At Highest Rank Ever in TIOBE Index
20/11/2024

Go is currently in 7th place in the TIOBE Index for November 2024. Not only is this is the highest position it has ever had, it's percentage rating is almost equal to its all-time-high. Will Go contin [ ... ]


More News

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Sunday, 16 June 2024 )