Go Back   Horror.com Forums - Talk about horror. > Horror.com Lobby > Horror.com General Forum
Register FAQ Community Calendar

Reply
 
Thread Tools
  #111  
Old 05-12-2005, 08:16 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
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...:)
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #112  
Old 05-12-2005, 08:17 AM
X¤MurderDoll¤X's Avatar
X¤MurderDoll¤X X¤MurderDoll¤X is offline
so bad they call her boss
 
Join Date: Feb 2005
Location: on a high horse
Posts: 7,249
Send a message via AIM to X¤MurderDoll¤X
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. ;)
__________________
stop the world - I want to get off

Reply With Quote
  #113  
Old 05-12-2005, 08:17 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
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;)
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #114  
Old 05-12-2005, 08:22 AM
AUSTIN316426808's Avatar
AUSTIN316426808 AUSTIN316426808 is offline
The Dork Knight

 
Join Date: Oct 2003
Location: New Orleans
Posts: 14,618
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.
__________________
Whatever The Fuck Ever
Reply With Quote
  #115  
Old 05-12-2005, 08:23 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
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.
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #116  
Old 05-12-2005, 08:31 AM
urgeok's Avatar
urgeok urgeok is offline
Banned

 
Join Date: Aug 2004
Posts: 19,465
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 ..
Reply With Quote
  #117  
Old 05-12-2005, 08:33 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
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....
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #118  
Old 05-12-2005, 08:34 AM
urgeok's Avatar
urgeok urgeok is offline
Banned

 
Join Date: Aug 2004
Posts: 19,465
Quote:
Originally posted by Vodstok
I have to go lie down.. my head hurts....

heh .. lightweight :D
Reply With Quote
  #119  
Old 05-12-2005, 08:44 AM
Vodstok's Avatar
Vodstok Vodstok is offline
Fear scented candle
 
Join Date: Jan 2004
Location: The edge of forever
Posts: 13,650
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
__________________
Some misguided people decided I was funny enough to pay. See if they're right:
http://www.cracked.com/members/Vodstok/
(I tweet pretty hardcore, too)
Reply With Quote
  #120  
Old 05-12-2005, 08:48 AM
urgeok's Avatar
urgeok urgeok is offline
Banned

 
Join Date: Aug 2004
Posts: 19,465
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 !!!
Reply With Quote
Reply


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

Forum Jump


All times are GMT -8. The time now is 01:28 PM.