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)

witchxrapist 11-02-2010 06:26 AM

[QUOTE=christsimpson;18252747]it's from listen to Aiden. all the teenage angst finally getting to you.[/QUOTE]

hahaha totally

Meatplow 11-02-2010 06:28 AM

[QUOTE=ariathe13th;18252749]gonna have a shower in a min might watch a movie after that[/QUOTE]

which movie?

witchxrapist 11-02-2010 06:29 AM

the one pervy australian dudes are into

u should check it out

LOL GET IT?

christsimpson 11-02-2010 06:29 AM

TAAAKE ME HOOOME SO FAR AWAAY FROM HERE
TAAAKE ME SLOOOW I CAN'T STAND OONNE MORE DAY
TAAKE MY BREATH AWAY
WAAKE ME UUUP TODAY

I WILL RETURN FOR YOOOUUUUUUUUUUUUUUUU


fuck. now I have to listen to Aiden.

witchxrapist 11-02-2010 06:30 AM

i only listen to i set my friends on fire and knife blood nightmare anymore

and that's rarely

christsimpson 11-02-2010 06:34 AM

listening to "Knife Blood Nightmare" right now. but it's all so fucking great. they have every cliché lyric and riff ever packed into each and every song. it's probably the best pop formula ever, and no other band puts me in a better mood tbh.

[url]http://www.youtube.com/watch?v=H3-NlgHRDdc[/url] - seek to 2:23 and tell me it's not the most amazing thing ever. I DARE YOU.

Meatplow 11-02-2010 06:35 AM

[QUOTE=witchxrapist;18252754]the one pervy australian dudes are into[/QUOTE]

[I]Alvin Purple[/I]?

ariathe13th 11-02-2010 06:37 AM

idk probly one i recorded off of sbs theres 1 called the alzheimer case sounds pretty good have u seen it

witchxrapist 11-02-2010 06:37 AM

[QUOTE=christsimpson;18252760]listening to "Knife Blood Nightmare" right now. but it's all so fucking great. they have every cliché lyric and riff ever packed into each and every song. it's probably the best pop formula ever, and no other band puts me in a better mood tbh.

[url]http://www.youtube.com/watch?v=H3-NlgHRDdc[/url] - seek to 2:23 and tell me it's not the most amazing thing ever. I DARE YOU.[/QUOTE]

hahahahaha

pop metalcore totally killed the goth trend

edit: wil's vocals at the beginning are the best part i think hahaha

like he's somehow more out of key than geoff rickly

Meatplow 11-02-2010 06:38 AM

[QUOTE=ariathe13th;18252765]idk probly one i recorded off of sbs theres 1 called the alzheimer case sounds pretty good have u seen it[/QUOTE]

can't say I have

check out [I]Wake In Fright[/I]

ariathe13th 11-02-2010 06:39 AM

k i will check that out im getting my internet back tomorrow what i gotta do is cut down on my porn so i dont get capped after the 1st week

Meatplow 11-02-2010 06:40 AM

yeah i've been pretty good for that recently

australian ISP's should really do away with caps

christsimpson 11-02-2010 06:41 AM

[QUOTE=witchxrapist;18252766]hahahahaha

pop metalcore totally killed the goth trend

edit: wil's vocals at the beginning are the best part i think hahaha

like he's somehow more out of key than geoff rickly[/QUOTE]

dude I usually can't stand popcore, but Aiden pulls it off so perfectly. and they are doing the whole horror and death fascination thing with silly make-up and blah. so they are just the ultimate teenage "outcast" band as well.

Aiden FOR LIFE. off-key vocals FOR LIFE. killer riffs FOR LIFE.

witchxrapist 11-02-2010 06:44 AM

looooooool

Aiden FOR LIFE. off-key vocals FOR LIFE. killer riffs FOR LIFE.

best quote everrr

2muchket! 11-02-2010 07:15 AM

brent being a bitch again then ey

emilyyy 11-02-2010 07:21 AM

downloading moviess

gonna eat some stew later

christsimpson 11-02-2010 07:21 AM

someone tell me how to make

int Tid :: dato_forskjell(const Tid tt)
{
int en, to, forskjell;
Tid tst = tt;
en = dagnummer(dag, maaned, aar);
to = dagnummer(tst.dag, tst.maaned, tst.aar);
forskjell = (en < to) ? to - en : en - to;
cout << en << endl;
cout << to << endl;
return forskjell;
}

calculate years as well. using,

int Tid :: dagnummer(int da, int ma, int aa) {
int dager_pr_maaned[12] = {31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int total_dagnr, i;

if (aa < 1600 || aa > 2100) return 0;
if (ma < 1 || ma > 12) return 0;
dager_pr_maaned[1] = (skuddaar(aa)) ? 29 : 28;
if (da < 1 || da > dager_pr_maaned[ma-1]) return 0;
total_dagnr = da;
for (i = 0; i < ma-1; i++)
total_dagnr += dager_pr_maaned[i];

return total_dagnr;
}

Ventriloquist 11-02-2010 07:40 AM

does that summon thor

TimJim 11-02-2010 08:39 AM

[quote=christsimpson;18252797]someone tell me how to make

int Tid :: dato_forskjell(const Tid tt)
{
int en, to, forskjell;
Tid tst = tt;
en = dagnummer(dag, maaned, aar);
to = dagnummer(tst.dag, tst.maaned, tst.aar);
forskjell = (en < to) ? to - en : en - to;
cout << en << endl;
cout << to << endl;
return forskjell;
}

calculate years as well. using,

int Tid :: dagnummer(int da, int ma, int aa) {
int dager_pr_maaned[12] = {31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int total_dagnr, i;

if (aa < 1600 || aa > 2100) return 0;
if (ma < 1 || ma > 12) return 0;
dager_pr_maaned[1] = (skuddaar(aa)) ? 29 : 28;
if (da < 1 || da > dager_pr_maaned[ma-1]) return 0;
total_dagnr = da;
for (i = 0; i < ma-1; i++)
total_dagnr += dager_pr_maaned[i];

return total_dagnr;
}[/quote]its hard to help you with programming when my norwegian is bollucks

Juddybear 11-02-2010 08:45 AM

sup fags

Xplisit 11-02-2010 08:46 AM

banana muffins

HighandDriving 11-02-2010 08:50 AM

Making money.

TimJim 11-02-2010 08:55 AM

in ethics class

kill me

Juddybear 11-02-2010 08:56 AM

timjim ur all about ethics

HighandDriving 11-02-2010 08:57 AM

Ethics would be an interesting course.

emilyyy 11-02-2010 08:57 AM

cant find anything unethical about timjim bein dead

Ventriloquist 11-02-2010 09:14 AM

killing timjim would be ethical

Morumbar 11-02-2010 09:17 AM

Today's presentation at school went pretty bad. One of the two fucks that completely stood the rest of us up and didn't do anything for the project, leaving us to do their work, said all the shit I was supposed to say during the presentation, because he hadn't prepared anything himself. Fucking dickwad, I hope he died on his way home from school.

Aakon_Keetreh 11-02-2010 09:35 AM

[QUOTE=Ventriloquist;18252900]killing timjim would be ethical[/QUOTE]

loooool

emilyyy 11-02-2010 09:43 AM

[QUOTE=Ventriloquist;18252900]killing timjim would be ethical[/QUOTE]

thats what i was implying!!!!!!!!!


All times are GMT -6. The time now is 05:51 PM.

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