Horror.com Forums - Talk about horror.

Horror.com Forums - Talk about horror. (https://www.horror.com/forum/index.php)
-   Horror.com General Forum (https://www.horror.com/forum/forumdisplay.php?f=2)
-   -   What is wrong with Canada? (https://www.horror.com/forum/showthread.php?t=15445)

Vodstok 05-12-2005 08:16 AM

Quote:

Originally posted by urgeok
sometimes it's mental excersise...

and whats wrong with masterbation ? it's only irritating if you start to chafe :)

I've had way too many people (freinds and freinds of freinds) who were incapable of holding a conversation without arguing, to the point of making up shit to argue about.

I have done 3 lifetimes worth of arguing about nothing. I'm tired.

And my wife wonders why all i talk about is the Simpsons and video games...:)

X¤MurderDoll¤X 05-12-2005 08:17 AM

Quote:

Originally posted by Vodstok

Arguing for the sake of arguing is pointless mental masturbation. It's an irritating waste of time.


Seriously, I think it's time to use my fist.

Less talk, more rock. ;)

Vodstok 05-12-2005 08:17 AM

Quote:

Originally posted by X¤MurderDoll¤X
One of these days, I'm going to take that high road. :p
I believe there is an exit on the way to toronto, if you are ever in the area;)

AUSTIN316426808 05-12-2005 08:22 AM

Quote:

Originally posted by ChEEbA
I prefer the company, an friendship that MOST animals will give with ease, besides, all things considered, I STILL think animals ask far less for their loyalty.

you realize that's mostly because they just want food and they'll cuddle up to the first person willing to thrown 'em some scraps.

Vodstok 05-12-2005 08:23 AM

Quote:

Originally posted by AUSTIN316426808
you realize that's mostly because they just want food and they'll cuddle up to the first person willing to thrown 'em some scraps.
It does transcend that with quite a few domestic animals, though.

urgeok 05-12-2005 08:31 AM

Quote:

Originally posted by Vodstok
I've had way too many people (freinds and freinds of freinds) who were incapable of holding a conversation without arguing, to the point of making up shit to argue about.

I have done 3 lifetimes worth of arguing about nothing. I'm tired.

And my wife wonders why all i talk about is the Simpsons and video games...:)


ahh, but thats the difference between an arguement and a discussion.
I hate arguing - i love discussing. its all in the presentation.

I dont mind someone playing the devils advocate for the sake of a good discussion .. but its usually easy to pull someones theory down if they dont believe in it themselves ..

Vodstok 05-12-2005 08:33 AM

Quote:

Originally posted by urgeok
ahh, but thats the difference between an arguement and a discussion.
I hate arguing - i love discussing. its all in the presentation.

I dont mind someone playing the devils advocate for the sake of a good discussion .. but its usually easy to pull someones theory down if they dont believe in it themselves ..

Weird..... I think i hear Rod Serling somewhere...


We have begun (for the sake of discussion) discussing the validity of dicussion simply for the sake of discussion.

I have to go lie down.. my head hurts....

urgeok 05-12-2005 08:34 AM

Quote:

Originally posted by Vodstok
I have to go lie down.. my head hurts....

heh .. lightweight :D

Vodstok 05-12-2005 08:44 AM

i'll give you a sample of what i have been doing with my life lately:

Quote:

/// <summary>
/// Uses stored Procedure to upload a file to a SQL DB
/// </summary>
/// <param name="name">Name of uploader</param>
/// <param name="file">Byte data for the file to be uploaded</param>
/// <param name="fname">Name of the file</param>
/// <param name="fsize">Size of the file</param>
/// <param name="img">File Type</param>
/// <param name="num">Request or release the file belongs to</param>
/// <param name="proc">The name of the stored procedure to run, either usp_filup, or usp_XmlSave</param>

public void Upper(string name,byte[] file,string fname,int fsize,string img,string num,string proc)
{
cmrsdb = new SqlCommand(proc, connec());
cmrsdb.CommandType = CommandType.StoredProcedure;
try
{
cmrsdb.Parameters.Add("@fileid", SqlDbType.NVarChar);
}
catch
{
cmrsdb.Parameters.Add("@fileid", SqlDbType.Int);
}
cmrsdb.Parameters.Add("@pfile", SqlDbType.Image);
cmrsdb.Parameters.Add("@filname", SqlDbType.NVarChar);
cmrsdb.Parameters.Add("@filesize", SqlDbType.Int);
cmrsdb.Parameters.Add("@imgtype", SqlDbType.NVarChar);

cmrsdb.Parameters.Add("@cmnum", SqlDbType.NVarChar);
cmrsdb.Connection.Open();
cmrsdb.Parameters["@fileid"].Value = name;
cmrsdb.Parameters["@pfile"].Value = file;
cmrsdb.Parameters["@filname"].Value = fname;
cmrsdb.Parameters["@filesize"].Value = fsize;
cmrsdb.Parameters["@imgtype"].Value = img;
cmrsdb.Parameters["@cmnum"].Value = num;
cmrsdb.ExecuteNonQuery();
cmrsdb.Connection.Close();
}
That's just a little Method for uploading a file to a database. it is one of the simpler things i have done lately.
I have earned being a lightweight in the thinking department.


Plus i wanted to show off :D

urgeok 05-12-2005 08:48 AM

Quote:

Originally posted by Vodstok
i'll give you a sample of what i have been doing with my life lately:



That's just a little Method for uploading a file to a database. it is one of the simpler things i have done lately.
I have earned being a lightweight in the thinking department.


Plus i wanted to show off :D


look buster...

the thread is : Whats Wrong With Canada.

YOU had to go and fuck it up didnt you ?
you dont show up for weeks, and when you do .. you just start derailing threads ...


animals ARE better than people !!!

they dont pimp their code on internet forums !!!


All times are GMT -8. The time now is 07:18 PM.