Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
jesus christ in heaven
using an except block for the happy path is cursed enough in itself
After seeing this program, i wrote a script for making doing these things easier:
You enter a python command, then it converts it to something you can paste into your code.
Example:
Have fun with it!
Can simebody explain me how this monster of intencional spaghetti code works?
Uh... i left something in my car, i have to go get it.
Umm...
Javascript?
HERES MINE:
import sys
class Cursed(type):
def new(cls, name, bases, attrs):
sys.stdout.write("".join(map(chr, [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 10])))
return super().new(cls, name, bases, attrs)
class _(import("builtins").object, metaclass=Cursed):
pass
def cursed_decorator(f):
exec("print('hello world')")
return lambda: None
@cursed_decorator
def totally_normal_function():
print("hello world")
(eval("import('builtins').exec"))("print('hello world')")
import types
bc = compile("print('hello world')", "", "exec")
types.FunctionType(bc, {}).call()
Here is my cursed code to print "hello world":
Enjoy ! :)
you're crazy
I started with a much more normal looking code and iterated through transformations to end up with this monstrosity
holy shit
HE WON
holy shit, have you made this thing by head?
you sir have won the kumite
Loading more items...