Sputnik Music Forums

Sputnik Music Forums (http://www.sputnikmusic.com/forums/index.php)
-   Rock & Metal (http://www.sputnikmusic.com/forums/forumdisplay.php?f=23)
-   -   repost this if you are a beautiful strong crack whore who don’t need no man (http://www.sputnikmusic.com/forums/showthread.php?t=588129)

adb 01-26-2011 04:03 PM

co-op Halo CE is the best gaming experience

Aakon_Keetreh 01-26-2011 04:04 PM

i love first person shooters

blockhead 01-26-2011 04:06 PM

jrpgs take the most intelligent though of any videogames

fps: i like shooting gunz hurrrr

2muchket! 01-26-2011 04:07 PM

I like a side of fun with my games

Which is why I love FIFA.

adb 01-26-2011 04:07 PM

jrpgs are faggotry

Aakon_Keetreh 01-26-2011 04:08 PM

GTA is elite.

Larry Bird 01-26-2011 04:08 PM

rpgs uh is this sum gay ass bok i thoguht it was a vidoe game :lol:

blockhead 01-26-2011 04:09 PM

just got kicked out of class cause we were talking about benjamin franklin and the teacher went around the room asking everyone to describe him in one word. i said "faggot" and he raged

Morumbar 01-26-2011 04:10 PM

[QUOTE=2muchket!;18374423]Melee was probably the best in the smash bros series.

I must have spent hundreds of hours on that game with friends.[/QUOTE]

Same.

Me and my friends have recently rediscovered Mario Smash Football too. Games like that are just cool when you're having a beer with some friends.

(*The Noonward Race*) 01-26-2011 04:10 PM

[QUOTE=blockhead;18374438]jrpgs take the most intelligent though of any videogames

fps: i like shooting gunz hurrrr[/QUOTE]
jrpgs just take math to optimize performance, as in, it's [I]possible[/I] to play virtually perfectly.

rts games especially starcraft are akin to playing chess where you can't see your opponent, in real time, and against real people who ostensibly are more creative and unpredictable

adb 01-26-2011 04:11 PM

[QUOTE=blockhead;18374447]just got kicked out of class cause we were talking about benjamin franklin and the teacher went around the room asking everyone to describe him in one word. i said "faggot" and he raged[/QUOTE]

alex post

Ventriloquist 01-26-2011 04:11 PM

[QUOTE=2muchket!;18374442]I like a side of fun with my games

Which is why I love FIFA.[/QUOTE]

do you have your xbox360 now?

Larry Bird 01-26-2011 04:11 PM

lok at this efuken nerd whers ur pocket protctor ches gams thats real fuken neato

blockhead 01-26-2011 04:13 PM

[QUOTE=adb;18374451]alex post[/QUOTE]

yeah it was made up and every thing. i thought that to myself while i posted it

blockhead 01-26-2011 04:14 PM

people in my class talk about the dumbest shit

durr hurr I LIKE MARK TWAIN I LIKE BENJAMIN FRANKLIN

christsimpson 01-26-2011 04:15 PM

I've been snoozing too much lately, so I wrote an alarm clock for my computer, so that I have to get up to go into the living room to turn it off.




#!/usr/bin/env python
from pygame.mixer import music, init
import time, os, sys, inspect

# initialisation
init()
music.load(os.path.join(os.path.dirname(__file__), "beep.wav"))

# functions
def alarm(mode, i):
if mode == 1:
#if mode 1, get local time (j), and compare it to argument (i), and find out when they match
i_sec = i.tm_hour * 60 + i.tm_min * 60
j = time.localtime()
j_sec = j.tm_hour * 60 + j.tm_min * 60 + j.tm_sec
#call mode 2 with the correct sleep amount
alarm(2, (i_sec - j_sec + (86400 if i_sec <= j_sec else 0)))

#if mode 2, just set off the alarm after i seconds
if mode == 2:
time.sleep(i)
beep()

def beep():
#beeeeeeeep until receiving user input, then go away
user = False
if user == False:
music.play(-1)
raw_input("\tpress any key to stop the alarm.")
user = True
exit(0)

def error():
#if wrong arguments
print "USAGE: pyAlarm 'H' 'M' 'S', or pyAlarm 'HH:SS'. for more info, run pyalarm without any arguments."
exit(0)

#global variables
hour = minute = second = set_time = 0
argv = sys.argv

#get arguments
if len(argv) < 5 and len(argv) > 1:
this = argv[0]
if len(argv) == 4:
while True:
try:
hour, minute, second = (int(i) for i in (argv[1:4]))
break
except ValueError:
error()
if len(argv) == 3:
while True:
try:
minute, second = (int(i) for i in argv[1:4])
break
except ValueError:
error()
if len(argv) == 2:
while True:
try:
if ":" in argv[1]:
set_time = time.strptime(sys.argv[1], '%H:%M')

break
except ValueError:
error()

#print user guide if no arguments
else:
print '''
PYALARM!!!

this is PYALARM!!! you use it like this: pyalarm 'H' 'M' 'S'.
'H' means hours, 'M' means minutes, and 'S' means seconds.

if you enter two numbers, pyalarm will assume that the
first is minutes, and that the second is seconds.

if you only enter one number, pyalarm will
assume you are entering seconds.

to just specify the exact time
you want pyAlarm to go off,
do like this: 'HH:MM'

so pyAlarm has two
modes. mode 1:

pyAlarm 'H' 'M' 'S'

OR

pyAlarm 'M' 'S'

OR

pyAlarm 'S'


and mode 2:

pyAlarm 'HH:MM'


:-)\n\n\n\n
'''

#check what mode to run
if set_time != 0:
alarm(1, set_time)

else:
#if not mode 1, then compute seconds from arguments and run mode 2
wait = (hour * 60 * 60) + (minute * 60) + second
alarm(2, wait)




no more oversleeping B-)

christsimpson 01-26-2011 04:16 PM

[QUOTE=blockhead;18374459]people in my class talk about the dumbest shit

durr hurr I LIKE MARK TWAIN I LIKE BENJAMIN FRANKLIN[/QUOTE]

this made me LOL

(*The Noonward Race*) 01-26-2011 04:17 PM

hey you know how to do that so

what do you know about google web developer toolkit thing

looks like a watered down web design course

like really useless

my friend is going to it he wants me to go i dont want to but i havent seen him since he moved

witchxrapist 01-26-2011 04:18 PM

man how r u guis such underground gamer

2muchket! 01-26-2011 04:49 PM

[QUOTE=Ventriloquist;18374453]do you have your xbox360 now?[/QUOTE]

I do indeed sir.

I will be purchasing a copy of FIFA 11 on saturday too.

2muchket! 01-26-2011 04:51 PM

[QUOTE=Morumbar;18374448]Same.

Me and my friends have recently rediscovered Mario Smash Football too. Games like that are just cool when you're having a beer with some friends.[/QUOTE]

They are, I used to love the original Halo's multiplayer with some friends and some beers.

Split screen on a massive tele is kinda tolerable once you get used to it too.

xMalcolmXx 01-26-2011 04:57 PM

never liked halo that much, but i missed halo 2 and started with 3 which sucked

loved cod 4, mw and mw2s (lol) multiplayer though. black ops can suck my dick.

adb 01-26-2011 04:58 PM

watched my brother play crysis 2 demo

was a cod rip off

Larry Bird 01-26-2011 04:59 PM

best fps is quake 3 arena

adb 01-26-2011 05:02 PM

best csb is elim 3 arena

illmitch 01-26-2011 05:03 PM

sup yall

Destroy All Girls 01-26-2011 05:06 PM

[QUOTE=christsimpson;18374461]I've been snoozing too much lately, so I wrote an alarm clock for my computer, so that I have to get up to go into the living room to turn it off.




#!/usr/bin/env python
from pygame.mixer import music, init
import time, os, sys, inspect

# initialisation
init()
music.load(os.path.join(os.path.dirname(__file__), "beep.wav"))

# functions
def alarm(mode, i):
if mode == 1:
#if mode 1, get local time (j), and compare it to argument (i), and find out when they match
i_sec = i.tm_hour * 60 + i.tm_min * 60
j = time.localtime()
j_sec = j.tm_hour * 60 + j.tm_min * 60 + j.tm_sec
#call mode 2 with the correct sleep amount
alarm(2, (i_sec - j_sec + (86400 if i_sec <= j_sec else 0)))

#if mode 2, just set off the alarm after i seconds
if mode == 2:
time.sleep(i)
beep()

def beep():
#beeeeeeeep until receiving user input, then go away
user = False
if user == False:
music.play(-1)
raw_input("\tpress any key to stop the alarm.")
user = True
exit(0)

def error():
#if wrong arguments
print "USAGE: pyAlarm 'H' 'M' 'S', or pyAlarm 'HH:SS'. for more info, run pyalarm without any arguments."
exit(0)

#global variables
hour = minute = second = set_time = 0
argv = sys.argv

#get arguments
if len(argv) < 5 and len(argv) > 1:
this = argv[0]
if len(argv) == 4:
while True:
try:
hour, minute, second = (int(i) for i in (argv[1:4]))
break
except ValueError:
error()
if len(argv) == 3:
while True:
try:
minute, second = (int(i) for i in argv[1:4])
break
except ValueError:
error()
if len(argv) == 2:
while True:
try:
if ":" in argv[1]:
set_time = time.strptime(sys.argv[1], '%H:%M')

break
except ValueError:
error()

#print user guide if no arguments
else:
print '''
PYALARM!!!

this is PYALARM!!! you use it like this: pyalarm 'H' 'M' 'S'.
'H' means hours, 'M' means minutes, and 'S' means seconds.

if you enter two numbers, pyalarm will assume that the
first is minutes, and that the second is seconds.

if you only enter one number, pyalarm will
assume you are entering seconds.

to just specify the exact time
you want pyAlarm to go off,
do like this: 'HH:MM'

so pyAlarm has two
modes. mode 1:

pyAlarm 'H' 'M' 'S'

OR

pyAlarm 'M' 'S'

OR

pyAlarm 'S'


and mode 2:

pyAlarm 'HH:MM'


:-)\n\n\n\n
'''

#check what mode to run
if set_time != 0:
alarm(1, set_time)

else:
#if not mode 1, then compute seconds from arguments and run mode 2
wait = (hour * 60 * 60) + (minute * 60) + second
alarm(2, wait)




no more oversleeping B-)[/QUOTE]

why go to all this trouble, when you can just make a simple bat file which opens a playlist and get your task manager to open it at a certain time

2muchket! 01-26-2011 05:07 PM

Nm mitch, talking to this girl on fb, listening to ATDI.

Waiting for my hair to drive so I can straighten it b4 bed (haters can hate I look good).

witchxrapist 01-26-2011 05:07 PM

mario tennis was swt

illmitch 01-26-2011 05:07 PM

in britain they let hair have drivers licenses huh

no wonder you guys are fucked

Larry Bird 01-26-2011 05:09 PM

that explains the double decker bus crashing into us

illmitch 01-26-2011 05:10 PM

loool

2muchket! 01-26-2011 05:12 PM

[QUOTE=illmitch;18374516]in britain they let hair have drivers licenses huh

no wonder you guys are fucked[/QUOTE]

i meant dry

meanie :(

P13 01-26-2011 05:45 PM

pretty sure this girl likes me but she doesn't want to go out with me for some reason

/beenbitchingaboutthisforamonth

Tyler 01-26-2011 05:55 PM

have you axed her out?

P13 01-26-2011 05:56 PM

went on a date with her

she seemed to be into me (before, during and after)

and then she said that she "didn't want to give me the wrong impression" when I asked her on a second date

Txus 01-26-2011 05:59 PM

Probably someone told her some shit about you.

Something similar happened to me last month, went out with a girl for about a month or so and we had a great time after that she told me that we should take some time off and all that shit. Later on I found out that someone told her that I smoked pot and that I was a shitty influence over her in general, haha.

Fucking women.

Tyler 01-26-2011 06:03 PM

Hate that shit. Get out early is all I can say. Same sort of thing happened to me.

A few months ago went to visit a friend who lives just out of town. Bunch of us were there, blablabla. Get to the bar and one of his friends pulls me onto the dancefloor. Long story short, we fool around. Call her the next day and we meet up a week later. Go out drinking and dancing again with the same friends and she and I go on an actual date the day after. Cool. We go out a couple more times and then one night she texts me asking what I consider her, which I should have known was a trap. I said something like, "the girl I'm seeing" or something along those lines and the next day she invites me out to dinner, where she springs one of those "nothing serious, dont want to give you the wrong impression" speeches on me. This entire time (matter of like three weeks) she'd been texting me non-stop, we talked on the phone a lot and she kept saying how she told her friends about me and had this massive 'crush' on me blablabla. We hooked up again on Halloween and the next day she totally sketched out. We're friends now still but it's kind of awkward and like it never happened.

If a broad is giving you that weird of a signal after just one date, I'd say abort. Abort as fast as you can.

P13 01-26-2011 06:03 PM

she's from out of town and doesn't know anyone that I know

we talked about how our friends from highschool suck and maybe she thinks that I was a pothead/heavy drug user, too.

probably just doesn't want to get involved and then move back home for the summer in 3 months

@tyler
but fffffuuuuu
I'm picky enough as it is and honestly haven't met (or even seen, but that's probably a given since I'm in eng courses) a better looking girl in uni yet

doesn't matter, just a bad crush

Nepenthe 01-26-2011 06:15 PM

females are notoriously bad at making up their minds about shit

on to the next one if you ask me dude


All times are GMT -6. The time now is 05:35 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.