Go Back   Gaming Gutter > Online Gaming > Other Games > Steam Games > Counter-Strike


Counter-Strike - All Counter-Strike discussion must be contained in here.

» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» GG Stuff

Follow us on Twitter!

Get the GG toolbar today (for firefox only)
» Recent Threads
Go to first new post What are you currently...
03-04-2010 02:21 PM
by Oops
Last post by nicki_2036
Today 06:02 AM
12 Replies, 265 Views
Go to first new post Chombies Creatable!
Today 05:47 AM
by limacon
Last post by limacon
Today 05:47 AM
0 Replies, 1 Views
Go to first new post MotM February Voting!
03-20-2010 09:05 AM
by Zombie
Last post by MeinKampfyChair
Today 05:39 AM
8 Replies, 152 Views
Go to first new post ~ The Official Hash...
11-06-2009 10:56 AM
by mehike
Last post by shadyangelz
Today 03:44 AM
930 Replies, 21,534 Views
Go to first new post How to Gain UG Access:...
03-01-2009 06:40 AM
by Zombie
Last post by nicki_2036
Today 02:47 AM
1 Replies, 1,890 Views
Reply
 
LinkBack Thread Tools Display Modes

 Heheh, I got a CS class in school.
Old 12-20-2006, 06:46 PM   #1 (permalink)
Jax pwns

Male Sijak is offline
 
Sijak's Avatar
 
Join Date: Dec 2006
Location: San Diego, CA
Age: 19
Posts: 4,156
GPoints: 854
iTrader: 0 / 0%
Sijak Is Recognizable
Rep Power: 16
Heheh, I got a CS class in school.

Yep, the title doesn't lie. My school has a class, that nobody knows, its called programming, but we never do that, so plays CS all period long. Its fun, actually, since, you're against half the class + teacher.

So shhhhh. Don't tell.
  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 12-20-2006, 07:57 PM   #2 (permalink)
Donor

Male Aethean is offline
 
Aethean's Avatar
 
Join Date: Nov 2006
Location: Ontario
Age: 19
Posts: 2,356
GPoints: 8,277
iTrader: 1 / 100%
Aethean Is a Party CaptainAethean Is a Party CaptainAethean Is a Party Captain
Rep Power: 17
Re: Heheh, I got a CS class in school.

My programming class last year was equally fun to your this year :P

I would always finish my assignments in 5 minutes or less (and everybody around me... i wonder how -.-) so the rest of the class me and my friends just had lan games of zsnes :P

the most advanced assignment was literally this:
Code:
dim strSentence as string
dim strMsgbox as string

private sub command1_click()
strsentence = txtInput.text

strmsgbox = msgbox(strsentence & vbnewline & vbnewline & "Is this what you entered?", vbyesno, "Input")

if strmsgbox = vbyes then 
msgbox "Congraulations! You passed this course!"
elseif strmsgbox = vbno then
msgbox "No? you suck :P"
else
msgbox "Wtf?"
end if

end sub
Ya.. beginners visual basic 6.0 xD

good times.. good times..
__________________

  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 12-21-2006, 04:54 AM   #3 (permalink)
furiousV
Guest

 
Posts: n/a
GPoints: 0 [Check]
iTrader: / %
Rep Power:
Re: Heheh, I got a CS class in school.

LOL my college course is an excuse to play UT and Q3A at the back with half the class.

A few times the other classes found the games we installed in the other rooms and joined our LAN game
  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 12-21-2006, 06:35 AM   #4 (permalink)

Male virusdetected is offline
 
virusdetected's Avatar
 
Join Date: Dec 2006
Age: 19
Posts: 7,079
GPoints: 12,854
iTrader: 0 / 0%
virusdetected Is a Lord of Awesomenessvirusdetected Is a Lord of Awesomenessvirusdetected Is a Lord of Awesomenessvirusdetected Is a Lord of Awesomeness
Rep Power: 23
Re: Heheh, I got a CS class in school.

That is fucking awesome. lol
I know a school that has a CS team xD
  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 12-21-2006, 09:23 AM   #5 (permalink)
Jax pwns

Male Sijak is offline
 
Sijak's Avatar
 
Join Date: Dec 2006
Location: San Diego, CA
Age: 19
Posts: 4,156
GPoints: 854
iTrader: 0 / 0%
Sijak Is Recognizable
Rep Power: 16
Re: Heheh, I got a CS class in school.

Quote:
Originally Posted by Aethean View Post
My programming class last year was equally fun to your this year :P

I would always finish my assignments in 5 minutes or less (and everybody around me... i wonder how -.-) so the rest of the class me and my friends just had lan games of zsnes :P

the most advanced assignment was literally this:
Code:
dim strSentence as string
dim strMsgbox as string
 
private sub command1_click()
strsentence = txtInput.text
 
strmsgbox = msgbox(strsentence & vbnewline & vbnewline & "Is this what you entered?", vbyesno, "Input")
 
if strmsgbox = vbyes then 
msgbox "Congraulations! You passed this course!"
elseif strmsgbox = vbno then
msgbox "No? you suck :P"
else
msgbox "Wtf?"
end if
 
end sub
Ya.. beginners visual basic 6.0 xD

good times.. good times..

Hmm... heres a simple 5 minute code that i've learned. Well, its compiled for a windows 95 since the computer that I use to program with is that kind. But we're getting newer ones when I come back from winter break.

Code:
#include <iostream>
using namespace std;
int main()
{
int name;
cout << "Enter your name: ";
cin >> name;
cout << "Hello, " << name << " you suck.\n";
return 0;
}
Pretty much, you enter your name in the command menu. And you could probably guess the rest. But whats cool is that im taking robotics next semester... but I dunno if its gonna suck or not.
  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 03-21-2007, 03:21 PM   #6 (permalink)
Rexx
Guest

 
Posts: n/a
GPoints: 0 [Check]
iTrader: / %
Rep Power:
Re: Heheh, I got a CS class in school.

Almost exact same for us.

CS in class is fun because I can absolutely crush most people in there
  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 03-21-2007, 03:28 PM   #7 (permalink)
Full Member

Male WildDisease is offline
 
WildDisease's Avatar
 
Join Date: Feb 2007
Location: Canada
Posts: 463
GPoints: 273
iTrader: 0 / 0%
WildDisease Is a New Face in Town
Rep Power: 10
Re: Heheh, I got a CS class in school.

Lmao.. we do that too

Quake/Doom is also fun!
__________________
..Shining on Diamond Eyes...

(bare with me on the siggy until I can be arsed to make a proper one :P)

  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 03-21-2007, 03:39 PM   #8 (permalink)
Senior Member

Male Raeddon is offline
 
Join Date: Mar 2007
Location: GG, obviously.
Posts: 256
GPoints: 198
iTrader: 0 / 0%
Raeddon Is a New Face in Town
Rep Power: 10
Re: Heheh, I got a CS class in school.

In my business class last semester, we played UT.
__________________

  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 03-21-2007, 08:42 PM   #9 (permalink)
Full Member

Male WildDisease is offline
 
WildDisease's Avatar
 
Join Date: Feb 2007
Location: Canada
Posts: 463
GPoints: 273
iTrader: 0 / 0%
WildDisease Is a New Face in Town
Rep Power: 10
Re: Heheh, I got a CS class in school.

Lol it's funny cause the class is Computer Science too ;)
__________________
..Shining on Diamond Eyes...

(bare with me on the siggy until I can be arsed to make a proper one :P)

  Reply With Quote

 Re: Heheh, I got a CS class in school.
Old 03-22-2007, 02:04 PM   #10 (permalink)
Banned

Male Wilfukguys is offline
 
Join Date: Sep 2006
Location: MWHAHAHHAHA
Age: 19
Posts: 5,223
GPoints: 2,389
iTrader: 14 / 100%
Wilfukguys Is a Lord of AwesomenessWilfukguys Is a Lord of AwesomenessWilfukguys Is a Lord of AwesomenessWilfukguys Is a Lord of Awesomeness
Rep Power: 0
Re: Heheh, I got a CS class in school.

lol my school has a Programming Class. they Teach us VB, and some C.
Its fun just to mess around in there. Sadly, i still suck at all of it, lol
  Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Powered by vBadvanced CMPS v3.1.0

All times are GMT -7. The time now is 06:28 AM.


vBulletin skin developed by: eXtremepixels
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.16777897 seconds (100.00% PHP - 0% MySQL) with 21 queries