VOGONS

Common searches


First post, by Jo22

User metadata
Rank l33t++
Rank
l33t++

Hi everyone,

Just saw something on a website from the 90s that made me smile. 😄
Maybe it brightens up your day, too.

The Evolution of a Programmer

Best wishes,
Jo22

"Time, it seems, doesn't flow. For some it's fast, for some it's slow.
In what to one race is no time at all, another race can rise and fall..." - The Minstrel

//My video channel//

Reply 2 of 8, by Jaron

User metadata
Rank Newbie
Rank
Newbie

Those middle programming sections are no joke. 10% of the code is doing the actual stuff, the other 90% is error handling.

Though, am I the only programmer that has never written a Hello World program?

Reply 4 of 8, by Kreshna Aryaguna Nurzaman

User metadata
Rank l33t
Rank
l33t
gerry wrote on 2023-02-01, 14:29:

i remember sites like these - treasure troves of info back in the 90's

funny list too, especially the manager part! 😀

Actually it's the CEO part that cracks me up!

Never thought this thread would be that long, but now, for something different.....
Kreshna Aryaguna Nurzaman.

Reply 7 of 8, by Jo22

User metadata
Rank l33t++
Rank
l33t++
Nexxen wrote on 2023-02-02, 12:50:
What's wrong with format 10 20 ? All the others look like a way to justify 100K a year salary. :) […]
Show full quote

What's wrong with format
10
20
?
All the others look like a way to justify 100K a year salary.
😀

It's too direct, too simple. Too reasonable. 😉

Not much unlike a basic "Hello World" written in Pascal or K&R C.

Once you're into programming for a while, the primal instinct of a programmer takes control of you.

You feel the urge make unnecessary declarations, to include libraries, to structure your code in waves (use TAB to tidy the source).
At some point, you'll even add compiler flags that are activated by default.

Yeah, it's like full moon, IF the proggrammer inside you awakens, THEN there's no CHOICE you have left.
No hiding place to GOTO. You need to get through the whole thing UNTIL the END.
ELSE you go insane. RUN!

Good night, everyone. 🐺🌕

"Time, it seems, doesn't flow. For some it's fast, for some it's slow.
In what to one race is no time at all, another race can rise and fall..." - The Minstrel

//My video channel//

Reply 8 of 8, by Errius

User metadata
Rank l33t
Rank
l33t

I think I got this out of a magazine. Write directly to CGA video memory:

#include <conio.h>

void main( void )
{
int far *vid = 0xb8000000;
char *s = "Hello, world!";

while( *s )
*vid++ = *s++ | ( LIGHTGRAY ) << 8 | BLACK << 12;
}

Is this too much voodoo?