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-06-14 20:49

nonymous
onymous

Name: Anonymous 2008-06-14 20:50

>>600
om nom nom

Name: Anonymous 2008-06-14 20:57

posting in an amazingly terrible thread

Name: Anonymous 2008-06-14 21:00

              .
           . ,
            / ).
          .(_/ )
          (___/ ).
        .(_____/ )
        (_______/ ).
      .(_________/ )
      (___________/ ).
    .(_____________/ )
    (_______________/ ).
  .(_________________/ )
  (___________________/ )___
.(_____________________/___°<  --- Have you read your SICP Today?

Name: Anonymous 2008-06-14 22:22

chrisdesktop:~ chris$ uname
Anonix
chrisdesktop:~ chris$

Name: Anonymous 2008-06-14 22:27

> uname
SunOS

Name: Anonymous 2008-06-14 22:32

>>606
This thread is about Anonix.

Name: Anonymous 2008-06-14 22:35

>>607
ANONIX

Name: Anonymous 2008-06-14 22:35

ANONIX

Name: Anonymous 2008-06-14 22:35

ANONIX

Name: Anonymous 2008-06-14 22:35

ANONIX

Name: Anonymous 2008-06-14 22:39

fail, fail fail

Name: Anonymous 2008-06-15 12:49

lojban always looks like someone's taken a normal sentence and reversed it.

Name: Anonymous 2008-06-15 12:59

ANONDIX

Name: Anonymous 2008-06-15 13:03

fail

Name: Anonymous 2008-06-15 13:09

FAILIX

Name: Anonymous 2008-06-15 13:11

sage

Name: Anonymous 2008-06-15 13:15

SAGIX

Name: !w4lolitaKs 2008-06-17 6:41

UPDATE!

http://rechan.eu.org/misc/anoncoreutils-20080617-2.tar.bz2
Anoncoreutils are almost 50% complete!

Most obvious would be the addition of id, uniq, and wc
Several minor bugs were also fixed in the other utilities.

Bug reports (and fixes) go in /ac/, as usual.

Name: Anonymous 2008-06-17 7:16

>>619
This is pretty cool, I'll tell you when anyone gives a flying Philadelphia fuck.

Name: Anonymous 2008-06-17 8:56

Anonix: where the trolls write code and detailed replies, and the trolled just write insulting one-liners.

Name: Anonymous 2008-06-17 11:00

But who's really being trolled?

Everyone, that's who. We're all trolling ourselves.

Name: Anonymous 2008-06-17 11:04

>>622
No, the Anonix morons are trolling everyone, including themselves.

Name: Anonymous 2008-06-17 11:09

Trolls trolling trolls in the trollsville.

Name: Anonymous 2008-06-17 11:10

Did you lose your reason, Cudder?

Name: Anonymous 2008-06-17 12:25

>>625
┌─────────────────────────────────────────────────┒
│ ◕                                             ◕ ┃
│                     REASON                      ┃
│                  Version 1.0B7                  ┃
│  Gatling type 3 mm hypervelocity railgun system ┃
│         Ng Security Industries, Inc.            ┃
│      PRERELEASE VERSION-NOT FOR FIELD USE       ┃
│        DO NOT TEST IN A POPULATED AREA          ┃
│              -ULTIMA RATIO REGUM-               ┃
│ ◕                                             ◕ ┃
┕━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛



Dur?

Name: Anonymous 2008-06-17 14:22

Name: Anonymous 2008-06-17 14:26

>>627
I can't convey my disappointment with words.

Name: Anonymous 2008-06-17 14:51

>>628
It was used to make WCTSOTCWOS[1], if that can make you feel kind of better about it :)

___________________
[1] EXPERT MUSICIAN, http://dis.4chan.org/read/prog/1208030237/41/. Retrieved on June 17, 2008.

Name: Anonymous 2008-06-17 15:05

>>629
The file was not found.

I feel kind of bad about it :(

Name: Anonymous 2008-06-17 18:25

CAR
CDR
EVAL
APPLY

Name: Anonymous 2008-06-17 18:34

Name: Anonymous 2008-06-17 20:42

>>632
That reminds me why /d/ has a "no shitty/western art" rule.

Name: Anonymous 2008-06-17 23:29

>>632
tomo-chan what are you doing on that website

Name: Anonymous 2008-06-18 3:02

http://repo.or.cz/w/4chanprog.git

Added a shitty wc implementation to the git repo.

Name: !w4lolitaKs 2008-06-19 3:26

shitty
You said it. It looks more GNU than POSIX. -L isn't POSIX, I think you meant -m. And long opts aren't POSIX.

http://www.opengroup.org/onlinepubs/000095399/utilities/wc.html

This wc is superior and is in >>619:

/* @wc.c */
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

int o=0;
void do_print(int l, int w, int c, char *n) {
 if(o&2)
  printf("%d",l);
 if(o&4)
  printf("%s%d",(o&2)?" ":"",w);
 if(o&1)
  printf("%s%d",(o&6)?" ":"",c);
 if(n)
  printf(" %s",n);
 printf("\n");
}

int main(int argc, char **argv) {
 int i,j,c=0,ct=0,l=0,lt=0,w=0,wt=0,ret=0;
 FILE *infile;
 char *fn="stdin";

 while((i=getopt(argc,argv,"cmlw"))!=-1) {
  switch(i) {
  case 'c':
  case 'm':
   o|=1;
   break;
  case 'l':
   o|=2;
   break;
  case 'w':
   o|=4;
   break;
  default:
   fprintf(stderr,"usage: %s [-c|-m][-lw] [file...]\n",argv[0]);
   return 1;
  }
 }
 if(!o) o=7;
 j=optind;
 if(!argv[j]) {
  infile=stdin;
  goto wc_stdin;
 }
 while(fn=argv[j++]) {
  int ip;
  if(!(infile=fopen(fn,"rb"))) {
   fprintf(stderr,"%s: cannot open %s: %s\n",argv[0],fn,strerror(errno));
   ret=1;
   continue;
  }
 wc_stdin:
  ip=' ';
  c=0; l=0; w=0;
  while((i=fgetc(infile))!=EOF) {
   if(i=='\n')
    l++;
   if(!isspace(i) && isspace(ip))
    w++;
   c++;
   ip=i;
  }
  ct+=c; lt+=l; wt+=w;
  if(ferror(infile)) {
   fprintf(stderr,"%s: error reading %s: %s\n",argv[0],fn,strerror(errno));
   if(infile!=stdin)
    fclose(infile);
   ret=1;
   continue;
  }
  if(infile!=stdin)
   ret|=fclose(infile);
  do_print(l,w,c,(infile==stdin)?"":fn);
 }
 if(argc-optind>1)
  do_print(lt,wt,ct,"total");
 return ret;
}


(ps. someone push the contents of the tar in >>619 to the prog.git, it's not working for me.)

Name: Anonymous 2008-06-19 8:03

My WC is also shitty.

Name: Anonymous 2008-06-19 9:23

PIG DISGUSTINGIOC

Name: Anonymous 2008-06-29 21:32

Hello and welcome back to the thread that trolls us all at exponential rates. I just stumbled with this announcement in a web sight called "REchan", which hosts a few textboards without any posts at all. Some of you may be aware of this web sight already, so without further introduction, let me quote:


2008-06-27 IMPORTANT UPDATE by HAHAHaruhi
Some of you may be wondering what's been happening with Cudder, the rest of the REchan team, and of course the Anonix project. I have both good and bad news.

First, the bad news. As you might've heard, me and Cudder were on vacation the last weekend. On the way back from Osaka, we were involved in an accident -- I survived with only a few bruises and a sore arm, while Cudder had to be hospitalized with a fractured humerus among other minor injuries. She'll probably be back by the start of July.

Now, the good news. Aside from the obvious, the Anonix project still continues and Anoncoreutils is making slow but steady progress. As usual, continue posting public submissions and bug reports/fixes to /ac/. Planning post-Anoncoreutils projects and the design of the Anonix kernel can be done in /ax/.


I, myself, feel kind of bad about Cudder, just because it is rumored that she's a woman. However, the pictures requirement hasn't been fulfilled, and so the claim is naturally invalidated.

In other news, they think that someone noticed they were missing. I have both good and bad news. The good news is that we weren't worried, and the bad news is that nobody gives a fuck.

Name: Anonymous 2008-06-29 21:35

news is that nobody gives a fuck
Yes, so stop posting in this thread.

Newer Posts