Twelve Years of Service
Posts: 271
Threads: 17
RE: [Anti-Golfing] Hello World 09-03-2015, 04:24 AM
#11
So can I add a bunch of NOP's to my compiled binary? What exactly constitutes as part of the counted bytes? Additionally, what about libraries and binaries with the CRT? One might win in a language like C++; just write a bunch of templated junk and utilize template specialization to build on the size of the code.
•
Eleven Years of Service
Posts: 49
Threads: 4
RE: [Anti-Golfing] Hello World 10-08-2015, 08:19 PM
#14
http://pastebin.com/raw.php?i=K05JEi0t
Unlmao'd code:
Code:
var uppercaseh = "H";
var lowercasee = "e";
var lowercasel = "l";
var lowercaseo = "o";
var specialcharcomma = ",";
var uppercasew = "W";
var lowercaser = "r";
var lowercased = "d";
var specialcharexclamationmark = "!";
console.log(uppercaseh+lowercasee+lowercasel+lowercasel+lowercaseo+specialcharcomma);
Can easily be made larger, i'm a lazy fuck tho.
In the grayness of the world, i'm colorful.
•
Ten Years of Service
Posts: 611
Threads: 74
RE: [Anti-Golfing] Hello World 10-08-2015, 08:27 PM
#15
I tried this in python and I could only make it 98 bytes lol
Sig by @Symadox
XMPP: Mi5@DukGo.com
•
Eleven Years of Service
Posts: 54
Threads: 0
RE: [Anti-Golfing] Hello World 10-09-2015, 01:28 PM
#17
Does writing wrapper scripts count? or decrypting an encrypted blob of data?
i dont know anything
•
Eleven Years of Service
Posts: 49
Threads: 4
RE: [Anti-Golfing] Hello World 10-09-2015, 04:28 PM
#18
This can be infinitely big.
Just keep wrapping your initial script in an eval, for example:
Code:
eval(alert("Hello, World!"));
eval(eval(alert("Hello, World!")));
eval(eval(eval(alert("Hello, World!"))));
etc.
In the grayness of the world, i'm colorful.
•