| Have written in assembly language | |
| Compiled a C program | |
| Created a script | |
| Used HTML to make a web page | |
| Know how to create program shortcuts | |
| MS Office at work | |
| Just email and the web | |
| None, I voted for this option with my mind |
See y'all are all focusing on the academics side of nerdiness.....I want some damn bonus points for having built my own computer specifically for the purpose of playing multiplayer online FPS games. None of that half-ass watered down console business either, I'm talking the real deal. Embrace your inner geek!
And man do I miss me some Quake 1, that game was fantastic. My low GPA from freshman and sophomore year at the WP can be partially attributed to Quake.
Adam broke the site, haha.



poll
by
Add a Comment (18)
Email This
Message Author
Statistics
RSS


ASM ... Booyah! by VnutZ :: NR8 :: Show
Nerd Points to whoever recongizes what this short little routine does.
_DATA
msg db "OmniNerd Is Sweet", 0x00
_CODE
mov ds, _DATA
mov si, msg
EntryPoint:
lodsb
or al, al
jz .DONE
mov ah, 0x0E
mov bh, 0x00
mov bl, 0x07
int 0x10
jmp EntryPoint
.DONE:
ret