Small Talk
Small Talk
Btw Jayson, Ill email those lyrics to you, I think I have your email address.
Small Talk
Eric, what is Rods number and address someone needs a trombone fixed and I dont have his card anymore. I would probably be over the summer
Small Talk
I don't know. Look it up. I don't know the exact address, I just know it's the white house on 32nd in between Jones and Jennings St.
Small Talk
[quote:1h5cb6j3][u:1h5cb6j3]Quote by: WAD[/u:1h5cb6j3]Yeah, I saw that one a couple weeks ago and thought of Eric, actually somebody showed me it. Though now we all now why Eric is busy all the fucking time, but yet always on WOW.
[/quote:1h5cb6j3]
HAHAHHAHAHA... Fuck you jizzface. My computer isn't even good enough to render the graphics for me to even think of that. Turns out, ass, I'm one of the most productive players that doesn't play the game for a living *cough*China*cough*. *cough*Korea*cough*.




HAHAHHAHAHA... Fuck you jizzface. My computer isn't even good enough to render the graphics for me to even think of that. Turns out, ass, I'm one of the most productive players that doesn't play the game for a living *cough*China*cough*. *cough*Korea*cough*.
Small Talk
So G what is this house going to be capable of doing next year as far tech, and party atmosphere?
I am going to half to come out sometime
I am going to half to come out sometime
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
I've got a few ideas, by the end of the summer I'll have no more than 2 more computers and no less than one, Might get some sort of load balancing on the internet connection so nobody can hog all the bandwidth, and if possible I'd host the vinyl site in house. I'll probably make all of my media available over the intranet via http or a Windows share. I'll definitely implement my shower stereo, I've got a pair of weatherproof speakers that need a use.
Talk of converting the basement into a range.
That's all I've got now.
Goodnight, and good luck.
Talk of converting the basement into a range.
That's all I've got now.
Goodnight, and good luck.
-
- Sum bitch mutha fucka
- Posts: 243
- Joined: Sat Apr 16, 2005 8:37 pm
- Location: Sioux City, IA
- Contact:
Small Talk
We could buy a whole bunch of pillows, matresses, blankets, bean bags and packing foam; fill up an entire room with it; and then all sleep in that room. We could say we all sleep together. I think Dan would like that.
Small Talk
How could any company not post there ad on Vinylband.net? Vinylband.net is the future in advertising, with its ability to attract such a large demographic of people from all areas of the globe.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
If Trek does any less than give us all new Madones I'll be very disappointed.
Just kidding if you're reading Trek
Just kidding if you're reading Trek

Small Talk
Pentium D based desktops seem to be slightly cheaper... Then again, when will 64-bit be common? Looks like they finalized the beta version of Windows XP64 (or whatever the hell they labeled it).
Small Talk
[quote:18bep2n5][u:18bep2n5]Quote by: Eric[/u:18bep2n5]Pentium D based desktops seem to be slightly cheaper... Then again, when will 64-bit be common? Looks like they finalized the beta version of Windows XP64 (or whatever the hell they labeled it).[/quote:18bep2n5]
you kiss your mother with that mouth?
you kiss your mother with that mouth?
Small Talk
I know you wish I did. Turns out, I don't give my mum kisses.
OWNED
OWNED
-
- Sum bitch mutha fucka
- Posts: 243
- Joined: Sat Apr 16, 2005 8:37 pm
- Location: Sioux City, IA
- Contact:
Small Talk
1. The forum for the program I'm using to make the Zombified game has been hacked. http://forums.gamemaker.nl/
Speaking of that game: Grant, do you know anything about the use of arrays in C++?
2. Today at work I was cleaning the mop with a shitload of bleach and hot water in a bucket. I saw some vineger sitting on a table behind me so I dumped a shitload of that in there as well. The fumes caused me to black out a little and almost vomit. Brain damage?
3. This summer we have to play capture the flag at my house. My parents may aquire 8 acres of drug-infested property.
4. Ben, oh Ben. Where are you?
5. One of my classmates (who is black) said there is a rap contest in Storm Lake on Friday and he is performing. If anyone wants to go to it with me, I'll consider going.
6. Grant, I once again can't update the McFasty site. I think it is because of the server change.
Speaking of that game: Grant, do you know anything about the use of arrays in C++?
2. Today at work I was cleaning the mop with a shitload of bleach and hot water in a bucket. I saw some vineger sitting on a table behind me so I dumped a shitload of that in there as well. The fumes caused me to black out a little and almost vomit. Brain damage?
3. This summer we have to play capture the flag at my house. My parents may aquire 8 acres of drug-infested property.
4. Ben, oh Ben. Where are you?
5. One of my classmates (who is black) said there is a rap contest in Storm Lake on Friday and he is performing. If anyone wants to go to it with me, I'll consider going.
6. Grant, I once again can't update the McFasty site. I think it is because of the server change.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
1) If you want an array of numbers you can do this:
[code:3j0bhp3i]
#include <iostream>
int main()
{
int array[10];
for (int i = 0;i< 10; i++){
array = rand();
}
for (int j = 0; j<10; j++){
std::cout << array[j]
<< "n" << std::endl;
}
return 0;
}
[/code:3j0bhp3i]
That will make an array of 10 random numbers and then display them.
Output:
[code:3j0bhp3i]
grant@grant:~/code$ ./a.out
1804289383
846930886
1681692777
1714636915
1957747793
424238335
719885386
1649760492
596516649
1189641421
[/code:3j0bhp3i]
2) Vinegar is nasty stuff, we'll have to go get wings at Town House when I return.
3) Are the cars still there?
4) I'm pretty sure this time that Ben is dead.
5) Can't make it
6) E-Mail me what you want your password to be.
[code:3j0bhp3i]
#include <iostream>
int main()
{
int array[10];
for (int i = 0;i< 10; i++){
array = rand();
}
for (int j = 0; j<10; j++){
std::cout << array[j]
<< "n" << std::endl;
}
return 0;
}
[/code:3j0bhp3i]
That will make an array of 10 random numbers and then display them.
Output:
[code:3j0bhp3i]
grant@grant:~/code$ ./a.out
1804289383
846930886
1681692777
1714636915
1957747793
424238335
719885386
1649760492
596516649
1189641421
[/code:3j0bhp3i]
2) Vinegar is nasty stuff, we'll have to go get wings at Town House when I return.
3) Are the cars still there?
4) I'm pretty sure this time that Ben is dead.
5) Can't make it
6) E-Mail me what you want your password to be.
Small Talk
1) Looks to be about the same as Java, but because Grant already got to it, I won't bother.
2) I hate the idea of going to eat those wings again, yet, i am now hungry
3) [quote:6oe6t3ux]Are the cars still there?[/quote:6oe6t3ux]
4) I refuse to accept the truth. He is still alive.
5) Don't really want to travel for something that will suck. Face it, we'll only get in trouble somehow and have the cops on our asses.
6) I have nothing to do with that.
2) I hate the idea of going to eat those wings again, yet, i am now hungry
3) [quote:6oe6t3ux]Are the cars still there?[/quote:6oe6t3ux]
4) I refuse to accept the truth. He is still alive.
5) Don't really want to travel for something that will suck. Face it, we'll only get in trouble somehow and have the cops on our asses.
6) I have nothing to do with that.
Small Talk
Also, I notice we are getting random new members every now and then. What is up with that? I don't know any of these people.
DISCUSS!!!
DISCUSS!!!
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
I think they are spam accounts, because most of them have never logged in. We get a lot of hits each day from poker sites. You have to be logged in to post anything now so I'm guessing they are robots that see a page like comments.php and try to spam the hell out of it.
Jayson, If you want to buy a domain for coolmcfasty I can handle that now with the new host.
(My Google toolbar spell checker suggests coolmcfasty should be climaxed!)
2 accounts have Russian e-mail addresses so tit could be a move by the communists to take over our band.
Jayson, If you want to buy a domain for coolmcfasty I can handle that now with the new host.
(My Google toolbar spell checker suggests coolmcfasty should be climaxed!)
2 accounts have Russian e-mail addresses so tit could be a move by the communists to take over our band.
Small Talk
[url:3rru87ei]http://mapage.noos.fr/museandamuse2/smbh/smbh.html[/url:3rru87ei]
Wierd. It reminds me of a band that gets a little too "refined." Change of sound is always welcome, and it's the only way bands really grow, but this song sounds like it's too "commercialized" when compared to original Muse. It's the same with the difference in the sound of Weezer when Green came out. Or Ben Folds Five when they got to The Unauthorized Biography of Reinhold Messner. I probably don't make sense, it's just something I tend to pick out when I listed to artists over an extended period of time. By the by, reason for this is because the new Muse record is out June 3rd and this is the first single from it.
Wierd. It reminds me of a band that gets a little too "refined." Change of sound is always welcome, and it's the only way bands really grow, but this song sounds like it's too "commercialized" when compared to original Muse. It's the same with the difference in the sound of Weezer when Green came out. Or Ben Folds Five when they got to The Unauthorized Biography of Reinhold Messner. I probably don't make sense, it's just something I tend to pick out when I listed to artists over an extended period of time. By the by, reason for this is because the new Muse record is out June 3rd and this is the first single from it.
-
- Sum bitch mutha fucka
- Posts: 243
- Joined: Sat Apr 16, 2005 8:37 pm
- Location: Sioux City, IA
- Contact:
Small Talk
:::::::::::::::::::: Quote by: Grant ::::::::::::::::::::
Jayson, If you want to buy a domain for coolmcfasty I can handle that now with the new host.
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
I think an eventual domain name is a high possibility, Grant. The more likely scenario would be a 101 Ways to Die site (Or even better, a 101 Ways to Trip and Fall site) with a bunch of cheap ass videos sent in from all over the universe. Or, just something that focuses on the creativity of this circle of buddies and compiles all the ideas together. We can expand on this maybe when we live together.
Also, I think the cars have been removed - but I haven't gone down there for quite some time to know.
Jayson, If you want to buy a domain for coolmcfasty I can handle that now with the new host.
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
I think an eventual domain name is a high possibility, Grant. The more likely scenario would be a 101 Ways to Die site (Or even better, a 101 Ways to Trip and Fall site) with a bunch of cheap ass videos sent in from all over the universe. Or, just something that focuses on the creativity of this circle of buddies and compiles all the ideas together. We can expand on this maybe when we live together.
Also, I think the cars have been removed - but I haven't gone down there for quite some time to know.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
Yeah I like the 101 ways to die site idea. That could actually be profitable.
Small Talk
Muse song - pretty catchy, but I dont think I like it as much as previous Muse. Ill probably get the CD though. 101 Ways to Die site - great idea. I hope those cars are still there.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
I'm now the UI (user interface) developer on Geeklog 2. I will need help with graphics, Jayson I like your work, you want to help out?
Small Talk
DANIEL LOUIS ISLER!!! ANSWER YOUR PHONE!!!
-
- Sum bitch mutha fucka
- Posts: 243
- Joined: Sat Apr 16, 2005 8:37 pm
- Location: Sioux City, IA
- Contact:
Small Talk
[quote:fet0gn1n][u:fet0gn1n]Quote by: Grant[/u:fet0gn1n]I'm now the UI (user interface) developer on Geeklog 2. I will need help with graphics, Jayson I like your work, you want to help out?[/quote:fet0gn1n]
Sure, just tell me your need and I can satisfy it.
Sure, just tell me your need and I can satisfy it.
Small Talk
[b:yrhrjl2t]MI:3[/b:yrhrjl2t] - could have been better, but I think I like it better than 2. Still hated the fact that I predicted 2 events that ended up happening in the movie and the whole "fueled by love" thing totally chapped my ass.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
Yeah agents don't get married. When Bond got married they killed her in about 10 minutes. I loved how they explained the mask making process, though.
-
- Sum bitch mutha fucka
- Posts: 243
- Joined: Sat Apr 16, 2005 8:37 pm
- Location: Sioux City, IA
- Contact:
Small Talk
I loved the scene where Tom Cruise ran the mile in 3 minutes. I give this movie... 8 thumbs up.
-
- Cobra Commander
- Posts: 974
- Joined: Wed Jul 03, 1985 6:01 am
- Google Talk: gtgarvey
- Location: Iowa
- Contact:
Small Talk
[url:vorex9y9]http://www.msnbc.msn.com/id/12683893/[/url:vorex9y9]
I'm pretty sure this could only happen in Iowa.
I'm pretty sure this could only happen in Iowa.
Small Talk
So this last quarter of the semster as a staff we only took 10.00 dollars of cans and bottles but I was never on duty or else there would be twice that much.
Jason and I saw each other working hard today.
Jason and I saw each other working hard today.