Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - AcidGame

Pages: 1 [2] 3 4 ... 16
21
Other Discussion / Re: Women are to blame if man cheats
« on: September 01, 2008, 06:15:32 pm »
Sometimes men cheat. Sometimes women cheat. Who is to blame? That depends. But it's not true to say that it is always the fault of the woman. I wouldn't take the article too seriously. You know how the media is.

22
Debates / Re: US army are pussies.
« on: August 31, 2008, 01:00:35 am »
Blah blah blah.
The United States is not the only country with military forces in Iraq.

23
Other Discussion / Re: wii browsan...
« on: August 28, 2008, 09:33:53 am »
I got it for free as well :D

24
Other Discussion / Re: Face Your Manga!
« on: August 27, 2008, 09:59:58 am »

Here's mine...

25
Other Discussion / Re: College Boredom
« on: August 27, 2008, 12:10:57 am »
Hahahaha. Good one :)
Fortunately, I won't be staying in a dorm for college.

26
Other Discussion / Re: This wiki page will utterly shatter your mind
« on: August 26, 2008, 07:31:50 am »
Way to go. Now we will never see another episode of MythBusters.

27
Coding / Re: Programming Q&A
« on: August 25, 2008, 10:44:30 am »
Try looking up information on the override_redirect attribute of the XSetWindowAttributes structure. As far as I know, it lets you skip the "middle man" (which would be the window manager). I'm sorry that I can't help you more.

28
Coding / Re: Programming Q&A
« on: August 16, 2008, 05:39:52 am »
w+ opens and removes all contents of the file. You want to use r+. Additionally, filesize takes a filename, not a file resource.
Code: [Select]
$file = fopen('news/data.txt', 'r+'); //open the news database, I have tried a+, r+, x+ : /
$len = filesize('news/data.txt');
$exist = fread($file, $len); //read the contents
$entry = $_POST['content']; //get the new entry
$newcontent = $entry.$exist; //merge the two
fwrite($file, $newcontent); //write the newly created text
fclose($file);// close it
echo "You News has been Posted! <br />"; //Tell user...

29
Graphics / Re: A few low poly stuff im doing for my next project.
« on: August 15, 2008, 07:59:44 am »
Have you considered using Blender? I've found that it can create complex models a lot faster. Looks good, nonetheless.

30
Feedback / Re: Border around header
« on: August 13, 2008, 10:32:13 pm »
I suppose I can take your word for it ;)

31
Feedback / Border around header
« on: August 13, 2008, 10:19:11 pm »
When you are not logged in, the login box has a neat border around it. Can we get this border around the header of information ("Welcome, AcidGame. You current have 0 messages.") thing when we are logged in? I think it would look a little better.

32
Other Discussion / Re: No sex before marriage?
« on: August 13, 2008, 03:01:35 pm »
I would find it rather desperate and shallow for someone to dump someone just because they are not good in bed.
I'd never split up with someone because they were good in bed.
Do you mean that you would never split up with someone because they were bad in bed? Typo?

If the sex is bad, you are left ultimately feeling like crap afterwards. You cannot stay with someone who makes you feel like crap.
That is assuming that the only thing that makes you happy about the relationship is the sex. Right?

33
Other Discussion / Re: No sex before marriage?
« on: August 13, 2008, 02:25:27 pm »
I would find it rather desperate and shallow for someone to dump someone just because they are not good in bed.

34
Other Discussion / Re: No sex before marriage?
« on: August 12, 2008, 08:35:04 pm »
I agree with just about all of this.
It's interesting to see that somebody does ;)

35
Other Discussion / Re: No sex before marriage?
« on: August 11, 2008, 10:15:37 pm »
My Views:
Sex: Act of love and method of reproduction.
Marriage: Act of love.
Love: Real.

Reality:
Sex: Self-pleasure.
Marriage: Exploiting other people.
Love: Someone to have sex with.

These days, it seems that sex is just a game for pleasure. Guys don't seem to care who they're !@#$% and girls don't seem to either as long as they get their pleasure. I see sex as an act of love and a method of reproducing. Don't want to reproduce? Don't have sex. Don't love your partner? Don't have sex.

What I think is love...
Love is not finding a woman who you think is "hot". Love is not finding a man with a giant penis. Love is when you find someone that you relate to, someone that you can share everything with, someone that makes your world go round, someone who is genuinely interested in you. Not just your looks, or your personality, but everything that makes you who you are. True love is when two people share these qualities for each other.

Might not be what others think is love...
Of course, my thoughts above are what I consider love. But love can be more than that, or even less than that, or have nothing to do with that. Love in it's simplest form is someone who makes you happy. If you think love is just a lot of self-pleasure, and a lot of self-pleasure makes you happy, then someone who is good at sex will probably satisfy you. But what happens when you both grow old? What happens when he can no longer "perform"? I don't think love should be based only around sex.

How do you know who to marry? I can't answer that question for you. Nobody can. That is for you to decide. It all depends on you and what you want. It depends on what you think love is.

To me, love is someone I want to spend the rest of my entire life with.

36
Coding / Re: Programming Q&A
« on: August 09, 2008, 04:34:37 am »
Is it possible to make DICKBUTT applications locally?

Because I always get an alert saying my browser (FF3) does not support DICKBUTT.

Code: [Select]
function DICKBUTT()
{
var request;
try {
request = new XMLHTTPRequest();
}
catch (n)
{
try
{
request = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (n2)
{
try
{
request = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (n3)
{
alert("Your Browser does not support DICKBUTT, which is needed to view this website. Please upgrade to the latest version of your favorite browser.");
window.location = "Index.php";
return false;
}
}
}
return request;
}
While it might be possible (I don't know the real answer), it is actually not logical. DICKBUTT works by having your browser fetch data from the HTTP server... if you are just viewing your html by opening the file in Firefox, obviously there is no server.

Consider setting up a local development HTTP server like xampp (but keep in mind that it is meant for development only!).

37
Coding / Re: Programming Q&A
« on: August 08, 2008, 06:35:57 pm »
Got a simple question for ya with function overloading.

Let's say I have..

Code: [Select]
typedef short int Type1;
typedef short int Type2;

If I overloaded a function like so..

Code: [Select]
int calc(Type1 var, int var2);
int calc(Type2 var, int var2);

Would it work?  Reason I'm wondering is becuase Type1 and Typ2 are both short for the same thing.  And yes, I have a reason for wanting to do this xD
No, that wouldn't work.

38
I was sad when Azumanga Daioh ended :(

39
Other Discussion / Re: So, why is Chesu lying about his age?
« on: August 04, 2008, 10:52:25 pm »
Of course I'm incredibly jealous of Chesu's huge bald patch. What kind of man doesn't want one of those?
Every man balds. Not every man can grow a beard like that.

40
Other Discussion / Re: So, why is Chesu lying about his age?
« on: August 04, 2008, 10:43:17 pm »
He's obviously jealous.

Pages: 1 [2] 3 4 ... 16

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.029 seconds with 35 queries.

anything