Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minhaskamal/creepycodecollection
A Nonsense Collection of Disgusting Codes
https://github.com/minhaskamal/creepycodecollection
code-golf creepy-codes esoteric esoteric-language golf golfing mandelbrot obfuscated polyglot programming programming-language quine signature
Last synced: 22 days ago
JSON representation
A Nonsense Collection of Disgusting Codes
- Host: GitHub
- URL: https://github.com/minhaskamal/creepycodecollection
- Owner: MinhasKamal
- Created: 2016-08-28T08:43:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-02T10:12:21.000Z (6 months ago)
- Last Synced: 2024-10-14T11:20:49.302Z (22 days ago)
- Topics: code-golf, creepy-codes, esoteric, esoteric-language, golf, golfing, mandelbrot, obfuscated, polyglot, programming, programming-language, quine, signature
- Language: C
- Homepage: https://minhaskamal.github.io/CreepyCodeCollection/
- Size: 96.7 KB
- Stars: 2,353
- Watchers: 100
- Forks: 137
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CreepyCodeCollection
#### A Nonsense Collection of Disgusting Codes
**Here we are talking about creepiest of the most creepy codes. Programs, behave so strange, that they will twist your brain. Snippets, so small, that you won’t believe their functionality. And codes, so cryptic, that even the top coders will think of going back to the college.**
**Note**: Never try this type of code in a real life software project; readability and maintainability should be the main concern there.
## Intro
See this cute little code ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/check_prime.pl))-``` PL
(1x$a)!~/^1?$|^(11+?)\1+$/
```In Perl, this regular expression checks if a number is prime.
Following code will produce day of the week for a given date ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/day_of_week.c))-
``` C
((y-=m<3)+y/4-y/100+y/400+" bed=pen+mad."[m]+d)%7
```Consider this Java code ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/confusion.java))-
``` Java
int i = (byte) + (char) - (int) + (long) - 1;
```What will be the value of `i`? Will the code even compile? Weird! Huh?
The program is a Ruby [Quine](https://en.wikipedia.org/wiki/Quine_(computing)) called qlobe ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/qlobe.rb)). Isn't the the output amazing?
This is one of my favourites- The Animated 3d Doughnut ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/animated_3d_doughnut.c)). Taste how delicious it is!
Paste this in your browser's url-data:text/html,var%20q=document.getElementById('q'),s=window.screen,w=q.width=s.width,h=q.height=s.height,p=Array(256).join(1).split(''),c=q.getContext('2d'),m=Math;setInterval(function(){c.fillStyle='rgba(0,0,0,0.05)';c.fillRect(0,0,w,h);c.fillStyle='rgba(0,255,0,1)';p=p.map(function(v,i){r=m.random();c.fillText(String.fromCharCode(m.floor(2720+r*33)),i*10,v);v+=10;%20return%20v>768+r*1e4?0:v})},33)
And see the magic yourself ([↗](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/matrix_effect.html))!
Most of the programs here are hell hard to understand. The details-url provided with the codes contain useful description. Follow the [Creepy Rank](#creepy-rank) for getting a structured view of all the programs.
## Creepy Rank
Sorted by difficulty level-### Level- 1: Genin
Code | Intro
--- | ---
[pyjava.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/pyjava.java) | Java code written like python. Finds factorial of big numbers.
[backward.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/backward.java) | Weird flipped code compiles- "backward!".
[one_line_swap.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/one_line_swap.c) | Strange one-liners that swaps value of two variables.
[without_main.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/without_main.c) | C code without main.
[hello_world.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/hello_world.java) | Magically outputs "hello world" in the console.
[obfuscated.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/obfuscated.java) | Prints "Hi!" in the console, looks like a big meaningless comment though.
[strange.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/strange.c) | A strange code with more strange output.
### Level- 2: ChuninCode | Intro
--- | ---
[bitwise_arithmetic.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/bitwise_arithmetic.c) | Performs addition and multiplication using only bit operation.
[prefix2postfix.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/prefix2postfix.c) | Converts prefix notation to postfix.
[sapin.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/sapin.c) | Prints a dynamic christmas tree.
[crazy_jvm.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/crazy_jvm.java) | Seems like the JVM has gone mad, printing random integers.
[confusion.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/confusion.java) | It is surprising enough, that the code compiles & prints 1.
[not_so_random.java](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/not_so_random.java) | Will (randomly!) print- 1 1 1 1 1 1 1 1 1 1.
[bangladesh.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/bangladesh.c) | Prints the map of Bangladesh.
[signature_prime.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/signature_prime.c) | Keeps printing prime number (theoretically) forever.
[day_of_week.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/day_of_week.c) | Computes day of the week for given date.
[polyglot_so404.py.pl.rb.c.bf](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/polyglot_so404.py.pl.rb.c.bf) | Prints 404 in python, perl, ruby, c and brainfu\*k.
[polyglot_quine.c.py.pl.rb](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/polyglot_quine.c.py.pl.rb) | A quine that runs in c, python, perl & ruby.### Level- 3: Jonin
Code | Intro
--- | ---
[compound_eye.rb](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/compound_eye.rb) | Displays animated pattern.
[best_short_program.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/best_short_program.c) | Reads a spelt number and writes a corresponding decimal number.
[check_prime.pl](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/check_prime.pl) | Checks if a number is prime using regular expression!
[quine_signature.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/quine_signature.c) | Shortest C code that prints itself.
[clock_in1line.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/clock_in1line.c) | Prints current time in text-art.
[japh.pl](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/japh.pl) | Prints "just another perl hacker".
[matrix_effect.html](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/matrix_effect.html) | Displays a matrix-like screen.
[pi_signature.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/pi_signature.c) | Calculates the first 15000 digits of PI.### Level- 4: Kage
Code | Intro
--- | ---
[mandelbrot_imager.py](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/mandelbrot_imager.py) | Creates an image of Mandelbrot (may take 20m to run!).
[shortest_tetris.html](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/shortest_tetris.html) | Very short and simplified variant of the classic tetris game.
[qlobe.rb](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/qlobe.rb) | Prints the globe. And it can also be turned by puting command-line argument.
[animated_3d_doughnut.c](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/animated_3d_doughnut.c) | Shows a 3d animated doughnut with ASCII art.
[mandelbrot_flythrough.pl](https://github.com/MinhasKamal/CreepyCodeCollection/blob/master/mandelbrot_flythrough.pl) | Rotates, zooms in & out, and scrolls randomly to examine regions of the Mandelbrot.### Rogue
Code | Intro
--- | ---
[octaglot.cob.pas.f77.c.ps.sh.pl.com](https://rosettacode.org/wiki/Polyglot) | A polyglot, prints "hello polyglots" in 8 languages.
[esoteric_polyglot.mal.bf.ws.asdf.123.spoon.excon](https://github.com/kenrube/Esopoly) | A polyglot written in 7 esoteric languages.
[palindrome_polyglot_quine.cs.java](https://github.com/KvanTTT/Freaky-Sources/blob/master/Patterns%20and%20Data/PalindromePolyglotQuine.cs.java) | The code is palindromic, compiles in C# and Java, prints itself.
[quine_relay.rb](https://github.com/mame/quine-relay) | An uroboros program with 100 programming languages.All the programs here have been tested (by me). [TutorialsPoint-CodingGround](https://www.tutorialspoint.com/codingground.htm) or [repl.it](https://repl.it/languages) has online code editors and compilers, which can be used to run these programs. Many programs here have been collected from q/a and discussion sites, like- [StackOverflow](//stackoverflow.com), [Quora](https://www.quora.com/), [Programming Puzzles & Code Golf](http://codegolf.stackexchange.com/), & [Hacker News](https://news.ycombinator.com/news).
If you liked this project, then you may also love [CuteVirusCollection](https://github.com/MinhasKamal/CuteVirusCollection).
## Not Satisfied Yet!
- [IOCCC](http://www.ioccc.org/years-spoiler.html), [IOCCC Winning Entries](http://www.pixelstech.net/article/1351185934-Do-you-really-understand-C-21st-International-Obfuscated-C-Code-Contest-winning-entries)
- [PerlMonks](http://www.perlmonks.org)
- [C Cignature Programs](http://www.iwriteiam.nl/SigProgC.html)
- [CodeGolf-StackExchange: Tips](http://codegolf.stackexchange.com/questions/tagged/tips?sort=votes&pageSize=15), [CodeGolf-StackExchange: Quine](http://codegolf.stackexchange.com/questions/69/golf-you-a-quine-for-great-good), [StackOverflow: Strangest Language Feature](http://stackoverflow.com/questions/1995113/strangest-language-feature)
- [JS1K](http://js1k.com)
- [Quora: Elegant Code](https://www.quora.com/What-is-the-most-elegant-line-of-code-youve-seen), [Quora: Shortest Effective Code](https://www.quora.com/What-is-the-shortest-and-most-effective-code-ever-written), [Quora: Coolest Thing in 10 Line](https://www.quora.com/Whats-the-coolest-thing-you-can-get-a-computer-to-do-in-10-lines-of-code)
- [QuinePrograms](http://cs.lmu.edu/~ray/notes/quineprograms/)
- [CodePoetry](http://code-poetry.com/)
- [Anarchy Golf](http://golf.shinh.org/all.rb)
- [JS Code Golfing](https://gist.github.com/xem/206db44adbdd09bac424)