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

Your paste buffer

Name: The_Sussman !9dc0/Qropc 2008-03-02 13:58

Please paste what's in your paste buffer here!

Name: Anonymous 2008-03-08 3:34

Name: Anonymous 2008-03-08 4:17

Name: Anonymous 2008-03-08 4:30

./configure --host psp --with-sdl-prefix=$(psp-config --psp-prefix) --with-freetype-prefix=$(psp-config --psp-prefix) --without-x --prefix=$(psp-config --psp-prefix)

Name: Anonymous 2008-03-08 5:06

Imageboards could be most simply described as a bulletin board focused on pictures instead of text posts; they share many of the same structures, including separate forums for separate topics, as well as similar audiences. However, imageboards are much more transitory with content—-on some boards (especially high-traffic ones) the thread deletion time can be as little as 10 minutes. The most popular English-language imageboards tend to revolve around Japanese culture such as CG artwork of anime. In Japan, where imageboards are many times more common, topics vary widely, including trains and news.

Imageboards are also different from online galleries in that most of the works posted are not made by the poster, but instead are taken from other online sources—galleries, other imageboards, and edited pictures.

Name: Anonymous 2008-03-08 7:43

Name: Anonymous 2008-03-08 8:03

>>205
ENTERPRISE

Name: Anonymous 2008-03-08 8:16

Is that really what was in your paste buffer?

Name: Anonymous 2008-03-08 8:34

>>67
Saprolings do not fly.

Name: Anonymous 2008-03-08 8:34

Name: Anonymous 2008-03-08 8:41

>>202
404

Name: Anonymous 2008-03-08 13:03

#include <gb/gb.h>

Name: Anonymous 2008-03-08 13:11

>>210
no

Mumintrollens äventyr

Name: Anonymous 2008-03-08 13:59

Name: Anonymous 2008-03-08 14:11

>>213
oh god i fappe'd for no reason at all

Name: Anonymous 2008-03-08 14:12

>>214
I invented the meme of doing things for no reason at all.

Name: Anonymous 2008-03-08 14:13

>>215
Why would you invent such a stupid meme?

Name: Anonymous 2008-03-08 14:15

>>216
To surprise you.

Name: Anonymous 2008-03-08 14:17

Name: Anonymous 2008-03-08 14:17

>>217
You failed.

Name: Anonymous 2008-03-08 14:19

>>218
Ubunto: For people too stupid to install Ubunto.

Name: Anonymous 2008-03-08 14:19

>>218
Ubanto

Name: Anonymous 2008-03-08 14:37

>>218
Ubantu

Name: Anonymous 2008-03-08 15:14

         adam:  i'd go on a date with bill hader :O

Name: Anonymous 2008-03-08 15:20

School of Expression

Name: Anonymous 2008-03-10 12:39

                                                 .o@*hu         
                          ..      .........   .u*"    ^Rc       
                        oP""*Lo*#"""""""""""7d" .d*N.   $       
                       @  u@""           .u*" o*"   #L  ?b      
                      @   "              " .d"  .d@@e$   ?b.    
                     8                    @*@me@#         '"Nu  
                    @                                        '#b
                  .P                                           $r
                .@"                                  $L        $
              .@"                                   8"R      dP 
           .d#"                                  .dP d"   .d#   
          xP              .e                 .ud#"  dE.o@"(     
          $             s*"              .u@*""     '""\dP"     
          ?L  ..                    ..o@""        .$  uP        
           #c:$"*u.             .u@*""$          uR .@"         
            ?L$. '"""***Nc    x@""   @"         d" JP           
             ^#$.        #L  .$     8"         d" d"            
               '          "b.'$.   @"         $" 8"             
                           '"*@$L $"         $  @               
                           @L    $"         d" 8\               
                           $$u.u$"         dF dF                
                           $ """   o      dP xR                 
                           $      dFNu...@"  $                  
                           "N..   ?B ^"""   :R                  
                             """"* RL       d>                  
                                    "$u.   .$                   
                                      ^"*bo@"
                                    SICP IS DEAD

Name: Anonymous 2008-03-10 12:45

>>225
GTFO FIOC

Name: Anonymous 2008-03-10 13:03

     adam: i'd go on a date with gerald sussman :O

Name: Anonymous 2008-03-10 13:16

/**
 * We all know that random number generators aren't truly random.
 * This class generates random numbers a bit more randomly.
 */
public final class Randomizer {
    private static final char [] digits = { '0','1','2','3','4','5','6','7','8','9' };

    // Allow this to be instantiated in parallel in multiple threads
    public Randomizer() {
    }

    public final double random() {
        final StringBuilder sb = new StringBuilder();
        sb.append(getRandomDigitString());
        sb.append(".");
        sb.append(getRandomDigitString());
        return Double.parseDouble(sb.toString());
    }

    private String getRandomDigitString() {
        final StringBuilder sb = new StringBuilder();
        int n = getRandomNumberOfDigits();
        for (int i=0; i<n; i++) {
            sb.append(getRandomDigit());
        }
        if (n==0) {
            sb.append("0");
        }
        return sb.toString();
    }

    private char getRandomDigit() {
        return digits[(int)(Math.random() * 10)];
    }

    private int getRandomNumberOfDigits() {
        return (int) ((Math.random() * 100) * Math.random());
    }
}

Name: Anonymous 2008-03-10 13:36

>>228
lol sepples programmers

Name: Anonymous 2008-03-10 13:36

void __attribute__ ((destructor)) my_fini(void);

Name: Anonymous 2008-03-10 13:38

% cat foic.py
#!/usr/bin/python
while 1:
        print "LISP";

Name: Anonymous 2008-03-10 13:45

>>231
EXPERT cat USER

Name: Anonymous 2008-03-10 14:04

Should I learn shell programming?

Name: Anonymous 2008-03-10 14:21

[2:233] Your paste buffer
1 Name: The_Sussman!9dc0/Qropc : 2008-03-02 13:58

    Please paste what's in your paste buffer here!

The 5 newest replies are shown below.
Read this thread from the beginning
229 Name: Anonymous : 2008-03-10 13:36

    >>228
    lol sepples programmers

230 Name: Anonymous : 2008-03-10 13:36

    void __attribute__ ((destructor)) my_fini(void);

231 Name: Anonymous : 2008-03-10 13:38

    % cat foic.py
    #!/usr/bin/python
    while 1:
            print "LISP";

232 Name: Anonymous : 2008-03-10 13:45

    >>231
    EXPERT cat USER

233 Name: Anonymous : 2008-03-10 14:04

    Should I learn shell programming?

Name: Anonymous 2008-03-10 14:26

sr #104463: How to change the dynamic DLL library (*.dll) to the static library (*.lib)

Name: Anonymous 2008-03-10 16:41

/prog/, is no longer just me, some other guy and the sussman. There seems to be windows faggots.

Name: Anonymous 2008-03-10 16:44

cat /dev/urandom > /dev/kmem

Name: Anonymous 2008-03-10 17:06


   PF_X25              ITU-T X.25 / ISO-8208 protocol   x25(7)
       PF_AX25             Amateur radio AX.25 protocol
       PF_ATMPVC           Access to raw ATM PVCs
       PF_APPLETALK        Appletalk                        ddp(7)
       PF_PACKET           Low level packet interface       packet(7)

       The socket has the indicated type, which specifies the communication semantics.  Currently defined types are:

       SOCK_STREAM
              Provides sequenced, reliable, two-way, connection-based byte streams.  An out-of-band data transmission mechanism may be supported.

       SOCK_DGRAM
              Supports datagrams (connectionless, unreliable messages of a fixed maximum length).

       SOCK_SEQPACKET
              Provides a sequenced, reliable, two-way connection-based data transmission path for datagrams of fixed maximum length; a consumer  is  required  to  read  an
              entire packet with each read system call.

       SOCK_RAW

Name: Anonymous 2008-03-10 17:13

>>236
Just the Sussman trolling us, constantly.

Name: Anonymous 2008-03-10 17:13

>>238
ISO Standards Organization

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List