No discussion, post your clipboard content right now!

OK, you caught me...

http://img39.photobucket.com/albums/v119/vehementi/winfolder.jpg

winfolder.jpg
 
Code:
[img] [url]http://www.IMGSpot.com/u/04/147/02/modempatch.jpeg[/url] [/img]

I'd just posted. lol
 
Originally posted by Masque
Arris, when did you get the X800?

Yesterday afternoon. 8970 3dmark03 at default core and memory.
Still have to have a play with overclocking it :D
 
priveleges


Jeje, was checking the spelling over at dicitonary.com

Arris> you lucky .............! Do some testing and post up a user review will you?
 
Originally posted by MrGaribaldi
priveleges


Jeje, was checking the spelling over at dicitonary.com

Arris> you lucky .............! Do some testing and post up a user review will you?

Will do after I finish another review off first...
Time is something I could do with more of :D
 
sendto_serv_butone (NULL, ":%s NICK %s :%i", parv[1], parv[2],
atoi (parv[3]));
if (acptr->name[0]) {
(void) del_from_client_hash_table (acptr->name, acptr);
if (IsPerson (acptr))
hash_check_notify (acptr, RPL_LOGOFF);
}
(void) strcpy (acptr->name, parv[2]);
(void) add_to_client_hash_table (parv[2], acptr);
if (IsPerson (acptr))
hash_check_notify (acptr, RPL_LOGON);
 
With Windows XP Professional running, insert the Windows XP Professional operating system CD into your CD-ROM drive.
Click No when prompted to upgrade to Windows XP Professional.
In the Run dialog box, type cmd, and then click OK.
At the command prompt, type:
drive:\i386\Winnt32.exe /cmdcons
Restart your computer. Recovery Console appears as an item on the operating system menu.
 
int spin2;
turnLeft(90 - e.getBearing());
spin2 = spin;
spin = 0;
fire (30);
spin = spin2;
if(spin == 5){
spin = -5;
}
else{
spin=5;
}

Part of a function for my robot in Robocode;)
 
Code:
 protected void meny(){
        //Lage GUI for meny(), GridLayout
        setTitle("Slektskapsregister: Meny");
        JLabel tittel = new JLabel("Velkommen til Ruritanias Slektskapsregister", JLabel.CENTER);
        //tittel.setHorizontalTextPosition(CENTER);
        JLabel blank, blank2, blank3, blank4, visPersonLapp, visSlekstreLapp;
        blank = new JLabel("         ");
        blank.setBorder(BorderFactory.createEmptyBorder());
        blank2 = new JLabel("          ");
        blank2.setBorder(BorderFactory.createEmptyBorder());
        blank3 = new JLabel("          ");
        blank3.setBorder(BorderFactory.createEmptyBorder());
        blank4 = new JLabel("          ");
        blank4.setBorder(BorderFactory.createEmptyBorder());
        
        menyKnapp1.addActionListener(new NoeSkjer());
       .....
        menyKnapp11.addActionListener(new NoeSkjer());
        
        JPanel knappePanel = new JPanel();
        knappePanel.setLayout(new GridLayout(12,1));
        
        knappePanel.add(menyKnapp1);
        .....
        knappePanel.add(menyKnapp11);
        knappePanel.add(menyKnapp0);
        søkKnapp.addActionListener(new NoeSkjer());
        
        JPanel topp = new JPanel();
        topp.setLayout(new GridLayout(2,1));
        topp.add(tittel);
        topp.add(blank4);
        
        Container lerret = getContentPane();
        lerret.setLayout(new BorderLayout());
        lerret.add(topp, BorderLayout.NORTH);
        lerret.add(knappePanel, BorderLayout.CENTER);
        lerret.add(blank, BorderLayout.WEST);
        lerret.add(blank2, BorderLayout.EAST);
        
        //Standard besvergelser
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(400, 400);
        setLocation(30,30);
        setVisible(true);
    }

Part of a java program I'm writing as an excercise before the exam...
"..." is removed code that is identical to the one on the previous and following line, only with a diff identiier...
 
I didn't know TS had [ code ] tags.:blackeye:

Code:
for (int i = 0; i <= 100; i++) {
  printf("MrG is a bum !!!\n");
}

:grinthumb
 
Back