Markov Chain trained on King Jame's Bible and Programming Books
"The code you write when you learn a new language is shit.
You either already know that and you are wise, or you don’t realize it for many years and you are an idiot. Either way, your learning code is objectively shit." - L. Spiro
"This is called programming. The art of typing shit into an editor/IDE is not programming, it's basically data entry. The part that makes a programmer a programmer is their problem solving skills." - Serapth
"The 'friend' relationship in c++ is the tightest coupling you can give two objects. Friends can reach out and touch your privates." - frob
25:38 I am the LORD, when I shall take away the frogs
L. Spiro
I restore Nintendo 64 video-game OST’s into HD! https://www.youtube.com/channel/UCCtX_wedtZ5BoyQBXEhnVZw/playlists?view=1&sort=lad&flow=grid
I'm going to start doing this:
Quote
The LORD is the beginning (or prefix) of the code for the body of the procedure
[source]
foo() {
LORD;
do_stuff();
}
int add_five(int x) {
LORD;
x += 5;
AMEN;
}
[/source]
This code is starting to look like a prayer. Why don't we also macro amen:
[source]
#define AMEN return
void foo() {
LORD;
do_stuff();
AMEN;
}
int add_five(int x) {
LORD;
x += 5;
AMEN x;
}
[/source]
#define AMEN returnhahahahahaha great :D
"I AM ZE EMPRAH OPENGL 3.3 THE CORE, I DEMAND FROM THEE ZE SHADERZ AND MATRIXEZ"
My journals: dustArtemis ECS framework and Making a Terrain Generator
more like
#define AMEN return true
#define PORCO_DIO return false
xD
that looks really intuitive in code
Ahahaha I wonder if anyone has posted this to School of Fail yet?
I want to help design a "sandpark" MMO. Optional interactive story with quests and deeply characterized NPCs, plus sandbox elements like player-craftable housing and lots of other crafting. If you are starting a design of this type, please PM me. I also love pet-breeding games.
I'm going to start doing this:
Quote
The LORD is the beginning (or prefix) of the code for the body of the procedure
[source]
foo() {
LORD;
do_stuff();
}
int add_five(int x) {
LORD;
x += 5;
AMEN;
}
[/source]
This code is starting to look like a prayer. Why don't we also macro amen:
[source]
#define AMEN return
void foo() {
LORD;
do_stuff();
AMEN;
}
int add_five(int x) {
LORD;
x += 5;
AMEN x;
}
[/source]
So this is what they meant when they said biblical languages..
“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”