by Matt Kang
1.
% whoami
> Error fetching handle.
Dane was my friend. At least, that's what he told me. He looked up at me from over the back of his laptop screen. I was still furiously typing. I clicked the “Compile” button. When I clicked it, I felt like the internal pulse of the computer stopped for a second. Like a sneeze. Some green lines of text materialized out of the vast blackness of the screen.
% gcc auth.h
> Compile successful with 0 warnings.
I was thankful there were no errors. Errors in code are like a misspelled word. A dangling participle. But an error-free program doesn't mean your program does what you want it to; it's like a paper that is grammatically correct but ultimately doesn't accomplish what the paper sets out to accomplish. You need to test the code in every which way, going from the edge cases in, until either you're satisfied or your brain shuts down. I should have been doing that for this program, but I didn't care at this point. I submitted the file to my teacher and started packing up. I said to Dane that the project works. He nodded, and then smiled, tucking his hands into pockets casually. “Don't forget to put my name in the comments.”
I was bundling up his power cord when he asked me what I was doing tonight.
I said I didn't know. He said come to a party at ten. I frowned slightly, then covered up with a smile and said okay.
I didn't know Dane very well. A friend said he always came to Macro twenty minutes late and left an hour early. Aside from that, all I knew was his outer shell. He was Asian, probably Chinese (my “A-Dar” was pointing that way, at least). He had a mop-top haircut, a slinking gait, and a pretty severe five-o-clock going. He had a lean build, except, remarkably, his midsection was perfectly barrel-like. As if he kept an alien lifeform in his belly, cultivated by years of Pabst and Yuengling transfusions.
2.
If someone were to ask me what my life is like, I would show them this:
int i=0;
while (true) {
printf(“%i”, i);
i++;
}
This is code for an infinite loop. It tells a program to iterate forever and ever. It never stops. It would execute the code inside of the brackets, then do it again, and again, nanoseconds of computation time flying off of your processor like a sequoia tree in a wood-chipper. When you run the program, your output looks this:
012345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410
And on and on. You need to kill the program to stop the rush; it's like an overflowing river of numbers stressing the borders of your computer screen. It only stops when the process stops.
Don't worry about what a process is.
0
favs |
1077 views
2 comments |
498 words
All rights reserved. |
NOTE: The story uses multiple fonts (a first for me), and Fictionaut isn't a fan of that. The "code" portions of the story are supposed to be Courier New.
I'm trying to write a novella that draws off of my experiences, and I'm kinda throwing things together piece by piece.
It's about a guy who has identity issues. Being Korean-American, an aspiring essayist and programmer, a person that is both serious and funny in all the wrong situations. He can't reconcile anything about him.
This is probably one chapter or two. it's not necessarily the beginning or the end of the whole piece; maybe in the middle somewhere.
Matt, you raise an interesting point here about formatting. I can see why you might be interested in hypertext. Although I think your quarternian story is better, this one has that font-thing and code-thing element. However, the integration of standard prose and code-thing might be a little too POMO simple. At least that is the danger. How about a complete text written in code? Code-thing has only a few syntactic constructs, so that might present some opportunities for experimentation.
That is not a bad proposition.
There would need to be some overhead to "teach" the reader with that approach though, as code is not exactly readable to a general audience.
You certainly have given me a good idea with integrating code and prose together, much like a great short story I read in Smokelong called "I Use Commas like Ninja Stars."
Thanks much for the commentary.