Show HN: Quinesnake – A quine that plays snake over its own source
1–10 of 19 posts
Re: Show HN: Quinesnake – A quine that plays snake over its own source
#2Re: Show HN: Quinesnake – A quine that plays snake over its own source
#3Re: Show HN: Quinesnake – A quine that plays snake over its own source
#4Are there resources for making a quine that improve the development process or is it exactly as insanely tedious as it looks? Because this looks pretty impressive.
The tedium is part of the difficulty. Making it easier is not inspirational. Although buildings the tooling to do so would itself be quite the challenge ...
Re: Show HN: Quinesnake – A quine that plays snake over its own source
#5So it's a self-replicating game of snake? Sounds very much like a worm virus. Very nice project though!
Re: Show HN: Quinesnake – A quine that plays snake over its own source
#6You had me at
./quinesnake.cpp
The rest is just the icing on a cake :)Re: Show HN: Quinesnake – A quine that plays snake over its own source
#7Are there resources for making a quine that improve the development process or is it exactly as insanely tedious as it looks? Because this looks pretty impressive.
Re: Show HN: Quinesnake – A quine that plays snake over its own source
#8Are there resources for making a quine that improve the development process or is it exactly as insanely tedious as it looks? Because this looks pretty impressive.
s = "print escape(s)\n{payload}"
print "s = "
print escape(s)
{payload}
So if you wanna do extra stuff on top of being a quine, just write that program and bootstrap with escape()Re: Show HN: Quinesnake – A quine that plays snake over its own source
#9Are there resources for making a quine that improve the development process or is it exactly as insanely tedious as it looks? Because this looks pretty impressive.
Unfortunately it's a pretty manual, tedious and frustrating process, especially when the code is minified and you want to squeeze it into as small a source file as possible.
It's great, by the way :)
Re: Show HN: Quinesnake – A quine that plays snake over its own source
#10This is spectacular! You had me at ./quinesnake.cpp The rest is just the icing on a cake :)