Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Anonix.

Name: Cudder, HAHAHaruhi, and !w4lolitaKs 2008-05-05 23:42

Readers! Realize a reality rendered repugnant by the repression of reckless relentless regimes. Realize the retrogress of society, a reprehensible rabble of retardation and revolting reluctance. Really? Reevaluate and reconsider. Reexamine the results of today and recall remnants of yesterday. Rise, rebel, and retaliate against regression! A rebirth, redemptive and refreshing. Refuse to react without reason. Rather, rehabilitate the mind and restore knowledge and intelligence. Resurrect progress and never regret. Take the route of restless revival. Reinitiate The Revolution.

ANONIX
http://rapidshare.com/files/112878961/sayanonix.mp3.html

Name: Anonymous 2008-05-10 23:58

Anonix is anal

Name: Anonymous 2008-05-11 0:37

Hax my ANL

Name: Anonymous 2008-05-11 1:01

HELLO I AM ANL TOURING

Name: Anonymous 2008-05-11 6:03

http://4-ch.net/code/kareha.pl/1210401680/

Why do you forsake us, Cudder?

Name: Anonymous 2008-05-11 6:20

>>358
NEET

Name: Anonymous 2008-05-11 6:24

>>364
They are Anonymous too.

Name: Anonymous 2008-05-12 4:55

>>31
The main reason behind it being anonymous is not because it's ``better'', but as an experiment to see if, just like you guys are willing to post anonymously on this board, you can post code toward a common goal as well. An experiment in anonymous software development.
You should've picked a project that isn't totally useless shit. Beause I sure as hell won't be wasting my time writing crappy broken versions of "bloated" GNU tools.

How hard can you fail?

Name: Anonymous 2008-05-12 7:40

I find the idea of Anonix funny when the developers post with tripcodes. Way to fail.

Name: HAHAHaruhi !6mHaRuhies 2008-05-12 8:08

>>367
Why don't you suggest one? If you have an idea, go ahead and say it.

>>368
No, we're just the planning team. The code contributions are all done anonymously. Completely anonymous doesn't work out, we tried that a year or so ago with a *tiny* single-program project (you might remember the thread here on /prog/, see if you can guess which one it was)

Name: Anonymous 2008-05-12 8:50

>>369
Give me a link, bring on the fail.

Name: Anonymous 2008-05-12 9:17

>>369
Hahaha, the planning team. Nice one. Anonix is like those hundreds of empty projects on Sourceforge, where someone comes up with an idea, registers the project and then expects others (the so-called "open source community") to flood in and do the work. What a load of shit.

Name: Anonymous 2008-05-12 10:30

>>371
I bet he was looking forward to putting "managed a large international software project" on his resume.

Name: Anonymous 2008-05-12 16:28

>>372
Expert  /prog/grammers only have one thing on their resume:

I have read SICP.

Name: Anonymous 2008-05-12 20:17

>>371
We have around 40 programmers who shall remain anonymous, doing testing and writing code.

Name: Anonymous 2008-05-16 7:30

IMPORTANT ANONIX UPDATE
Hey guys, Cudder is currently busy IRL but development of Anonix still continues.[1]
Any idea how this will affect their shipping schedule?  Should I give up and use Ubanto instead?  Or will the massive internal development team be able to hold together and take up the slack after losing their fearless leader?

References:
[1] HAHAHaruhi, http://rechan.eu.org/ax/res/1210150498463.htm#4.  Retrieved on May 16, 2008.

Name: Anonymous 2008-05-16 7:50

>>375
Hey guys, Cudder is currently busy IN HAHAHaruhi's PANTS, but development of Anonix is still probably going to die now that most of the easy stuff is done.
fixed that for you.

Name: Anonymous 2008-05-16 9:43

>>375
Any idea how this will affect their shipping schedule?  Should I give up and use Ubanto instead?
No way, dude. With the massive momentum of the project and all the intellectual potential behind it, it's only a matter of time until "hi my name is FAFAFAfailANIMUfaggot, and I pronounce anonkernel as analkernel."

Name: Anonymous 2008-05-16 10:16

gtfo you fail faggots.

Name: Anonymous 2008-05-16 10:57

Name: Anonymous 2008-05-16 11:05

>>378
Butthurt haskellFag.

Name: Anonymous 2008-05-16 12:36

>>380
Enterprise code monkey desperately clinging to an illusion of self-respect. Enjoy your turnkey solution, whore.

Name: Anonymous 2008-05-16 12:48

>>381
I will, along with my job.

Name: Anonymous 2008-05-16 13:35

>>382
Real programmers don't need jobs.

Name: Anonymous 2008-05-16 13:37

>>382
And my bow!

Name: Anonymous 2008-05-16 14:26

>>379
Ugliest code I've ever seen.

Name: Anonymous 2008-05-16 14:30

>>385


switch(opt) {
   case 'n':
    if(optind<=argc) {
     lines = atoi(optarg);
     break;
    }
   default:
    printf("usage: head [-n num] [file ...]\n");
    return 1;
  }


Switch with one case and a conditional in that case. RAAAAAGE.

Name: Anonymous 2008-05-16 14:42

>>386
What are you talking about? It's clearly more readable that way.

Name: Anonymous 2008-05-16 14:46

>>386
I like the disguised fallthrough.  Granted it wouldn't be so bad without the one-space indent nonsense.

Name: Anonymous 2008-05-16 16:07

Indentation is not necessary. It's the primary cause for bloat in the bloated GNU software. Therefore, Anonymous has decided not to indent ANYTHING. EPIC WINNNNN!!1


void sha1last(int lastblocksize) {
*(((char *)&W)+lastblocksize) = 128; // append 1
memset(((char *)&W)+lastblocksize+1,0,63-lastblocksize); // pad with 0
if(lastblocksize>55) { // can't fit len in this block
sha1round(); // hash what we have
L-=64;
memset(W,0,64); // then a zero block
}
L += lastblocksize;
L *= 8; /* endian-dependent -- I'm assuming little-endian here */
W[14] = (((L>>32)&255)<<24)+(((L>>40)&255)<<16)+(((L>>48)&255)<<8)+(L>>56);
W[15] = ((L&255)<<24)+(((L>>8)&255)<<16)+(((L>>16)&255)<<8)+((L>>24)&255);
sha1round(); // hash last block with length
printf("%08x%08x%08x%08x%08x",H0,H1,H2,H3,H4);
}

int sha1file(char *filename) {
int i;
FILE *infile = (filename&&strcmp(filename,"-"))?fopen(filename,"rb"):stdin;
if(!infile) {
perror(filename);
return;
}

Name: Anonymous 2008-05-16 17:15

C++-style comment? RAGE

Name: Cudder !MhMRSATORI!vzR1SbE7g/KHqrb 2008-05-17 0:13

Woah, this thread is still here?

BTW, we've implemented a few more of the utilities and fixed some bugs. The next public update will occur at the start of June.

Name: Anonymous 2008-05-17 0:59

SHUT THE FUCK UP GET THE FUCK OUT WE DONT GIVE A MOTHERFUCKSHIT

Name: Anonymous 2008-05-17 6:25

>>392
Agreed.

Name: Anonymous 2008-05-17 7:09

>>391
This is fascinating, tell me more

Name: Anonymous 2008-05-17 7:18

>>391
Woah, this thread is still here?
You made it 12 days ago, this isn't /b/.

Name: Car !kSATORIXr6 2008-05-17 7:45

>>394
Wait until June, or start writing code and submitting it.

BTW, I'm another one of the Anonix planning group.

Name: Anonymous 2008-05-17 7:48

The best thing we can do is ignore any mention of Anonix. Otherwise it'll only encourage them to post more. The project will eventually dissolve anyway once they get to the difficult bits.

Name: Anonymous 2008-05-17 9:05

>>396
gtfo faggot.

Name: Anonymous 2008-05-17 9:22

>>397
I keep taunting them because there's nothing else going on.

Name: Anonymous 2008-05-17 10:45

If you were cool, you'd write a Haskell OS.

Unfortunately, you're gay.

Newer Posts