Yay, it actually fucking worked
Get back to us when it does something useful, other than brighten your day
Fuck printf. cout << is where it's at.
mtb0minime wrote:
Get back to us when it does something useful, other than brighten your day
I'm just happy it worked! I love messing with this shit though! xD
Do some C++, and do C in unix if u can, hahah thats very very very basic though but yeah nice I guess lolOisín<3 wrote:
mtb0minime wrote:
Get back to us when it does something useful, other than brighten your day
I'm just happy it worked! I love messing with this shit though! xD
Last edited by blademaster (2009-10-09 11:40:50)
It's unbelievably gratifying when your code works, especially without having to spend forever debugging or finding out what went wrong.
The other day I had to modify (yeah I know, bit easier than writing from scratch, but still) some code in fortran (which I hadn't used in over 4 years and nearly completely forgot about) and that shit worked after a few tries. That made my day right there.
The other day I had to modify (yeah I know, bit easier than writing from scratch, but still) some code in fortran (which I hadn't used in over 4 years and nearly completely forgot about) and that shit worked after a few tries. That made my day right there.
Anyone can paste hello world source to some compiler though. It's a start at least
main battle tank karthus medikopter 117 megamegapowershot gg
I wrote that myself!DeathUnlimited wrote:
Anyone can paste hello world source to some compiler though. It's a start at least
2 weeks into a 'Computing' course!
Just wait until you get into the more advanced programming, like rock-paper-scissors...
Sober enough to know what I'm doing, drunk enough to really enjoy doing it
int main()King_County_Downy wrote:
Just wait until you get into the more advanced programming, like rock-paper-scissors...
{
cout << "Hey we didn't have that one " << endl;
return EXIT_SUCCESS;
}
Last edited by GC_PaNzerFIN (2009-10-09 11:56:47)
3930K | H100i | RIVF | 16GB DDR3 | GTX 480 | AX750 | 800D | 512GB SSD | 3TB HDD | Xonar DX | W8
I made a rock paper scissors card game on my ti-84
Does that make me cool?
Does that make me cool?
You forgot to include your librariesGC_PaNzerFIN wrote:
int main()King_County_Downy wrote:
Just wait until you get into the more advanced programming, like rock-paper-scissors...
{
cout << "Hey we didn't have that one " << endl;
return EXIT_SUCCESS;
}
I think you're cool regardless.Lucien wrote:
I made a rock paper scissors card game on my ti-84
Does that make me cool?
Sober enough to know what I'm doing, drunk enough to really enjoy doing it
Is this a joke?
Oh no!
He made his computer say stuff....
....next stop Skynet.
He made his computer say stuff....
....next stop Skynet.
If people here treat you like shit, and you post shit like this, what circuit of logic tells you to keep coming here?
that he's just not very bright?Defiance wrote:
If people here treat you like shit, and you post shit like this, what circuit of logic tells you to keep coming here?
He must be bright. He made a computer program!baggs wrote:
that he's just not very bright?Defiance wrote:
If people here treat you like shit, and you post shit like this, what circuit of logic tells you to keep coming here?
as a pr0 coder, i lol'd @ this thread
TehMyke wrote:
as a script kiddie, im a fag lololol
tehmyke is just mad because he doesnt know any programming languages and wishes he could be as good as irish.
Dauntless wrote:
TehMyke wrote:
as a script kiddie, im a fag lololol
Pft, fuck C
Unix shell scripts ftw!
Wrote this small script to rotate the display on my tablet
Unix shell scripts ftw!
Wrote this small script to rotate the display on my tablet
Code:
#!/bin/bash orient=`xrandr -q | grep -o inverted | grep -c inverted` if [ $orient = 3 ]; then xrandr -o inverted xsetwacom set stylus Rotate half else xrandr -o normal xsetwacom set stylus Rotate none fi