Jump to content
xisto Community

Neutrality

Members
  • Content Count

    160
  • Joined

  • Last visited

Everything posted by Neutrality

  1. Enough with all of these hypothetical situations. I don't care what the child "might" become - a genius, a dictator, a bum - whatever. That is not the point. The point is that a life, whether it be a fetus or not, is being killed and is not given a chance to live. I would rather give that child a chance to live. Now, one of you might give another hypothetical situation in which the child might end up in an adoptive or abusive situation, so that child should be aborted. But if you go along with this thinking, then you might as well have aborted every single child that was ever given birth, because any of us could have been born into a situation like that. There are some circumstances in which the mother might need to abort, but in very rare situations. In many situations, the abortion is done just for the sake of it. Those mothers would rather kill their possible children off instead of giving them a chance to live, even if that child is put up for adoption. But, in the end, this is the mother's decision - not ours. All we can do is state ourposition and opinions on the subject, and that's about it.
  2. Neutrality

    Game Maker

    Do you even realize how long it would take to write a good 3D engine in C++? You've got to be kidding me. It takes twice, maybe three times as long to write a 3D engine in C++ than in GML. Even though the 3D capabilites in Game Maker are not exceptional or even above average, it is still possible to make a decent 3Dgame with the 3D functions. And in my opinion, Game Maker creams Sphere and Verge very easily. No match there.
  3. This is another little script that I devised. It's very simple. As the name suggests, it's a script that lets the user send an email via a form. SENDMAIL.PHPecho "<form action='form-send.php' method='get'>";echo "To: <input type='text' name='email' size=20>";echo "Subject: <input type='text' name='title' size=20>";echo "Message: <textarea cols=50 rows=25 name='message'></textarea>";echo "<input type='submit' value='Send' name='send'>";echo "</form>";FORM-SEND.PHPif(strlen($_POST['title']) < 1)echo "Sorry, but your subject title is too short. Please go back and try again.";else{ if(strlen($_POST['email']) < 10) echo "Sorry, but this email is too short. Please use a larger email address."; else { if(strlen($_POST['message']) < 1) echo "Sorry, but your message is too short. Please make it larger."; else mail($_POST['email'], $_POST['Title'], $_POST['message']); }} You can also format the email so that when the recipient receives the email, it has some color and style as well. But that's up to you. Use it in any way you see fit. As usual, if you see any errors, report them. I'll fix them.
  4. Okay, this is a simple script that lets your visitors enter in messages via a chatbox/guestbook. You can use this how you like. Adjust it if need be. It's very simple, so there is much room for improvement. Enjoy! echo "<form action='chatbox.php' method='get'>";echo "Name: <input type='text' name='visName' size=15><br>";echo "Message: <input type='text' name='message' size = 15><br>";echo "<input type='submit' value='Post' name='post'><br>";echo "</form>";CHATBOX.PHPif(isset($post)){ if(file_exists('chatbox.txt')) { $fileId = fopen('chatbox.txt', 'a'); fputs($fileId, $_POST['visName']); fputs($fileId, $_POST['message']); fclose($fileId); } else { $fileId = fopen('chatbox.txt', 'w'); fputs($fileId, $_POST['visName']); fputs($fileId, $_POST['message']); fclose($fileId); }}$fileId = fopen('chatbox.txt', 'r');while(!feof($fileId)){ $text = fgets($fileId); echo "<table>"; echo "<tr><td>".$text."</td></tr>"; echo "</table>";}fclose($fileId); If there are any errors in this code whatsoever, please reply here and point them out so that I can fix them. I have used this code many times, so I'm hoping that it's flawless.
  5. Neutrality

    Gay Marriage

    I have my reasons. Like I said, I don't agree with what they do, but I'm not going to dote over that fact. But I'm allowed to feel the way I do. It may not be popular, but it's how I feel. As long as I don't shove my opinion down people's throats, it's a justified position. And I don't make fun of them, if that's what you're implying. I let them be. I just don't agree with their way of life. That's it. Case closed.
  6. It's amazing sometimes. I see some people that just think that they are God's gift to the world, that stick their noses into every bloody thing that doesn't concern them, and then when you ask why, they just pretend that you don't exist. Then I see some people who are liked by almost everyone but they treat others like utter crap, and yet the majority clap their fins like bloody seals and laugh. Then you got some rich preps who just flaunt around school like they are "holier than thou". What do all these people have in common? Pride. Arrogance. Full-blown egos. It's not that I really care about these people. I don't. But when I observe them, I wonder "Why?". Do these type of things come to mind for you?
  7. Is that so? How hard and smartly you work? Give me a break. Pleasedon't feed us the same crap that they're feeding you. Most of the owners of those giant companies do very little work and get a massive percentage of the profits. Yes, that's working for your pay. Bull. So, if in these "socialistic" nations a homeless person can make as much as a middle-class person, that means America is a "capitalistic" nation in which the majority of the poor stay poor, even if they do work hard, and where the rich stay rich. How do you like that?
  8. I, like the rest of you, am also a procrastinator. If anything, I'm the kingof procrastinators. For every single school project I have ever done, I have always put it off to the last few days, and in some cases, the lastday. I also have problems getting up in the morning. I tell myself that I'm going to get up earlier in the morning, but then I don't. I end gettingup at the same time. Personally, I don't like this way of life, but I can'thelp it. I'm trying to turn it around, though.
  9. Neutrality

    Gay Marriage

    In my honest opinion, I don't believe gay marriages are right. That's justhow I feel. But, I won't ever make fun of them, or treat them like garbage, or degrade them to the point that they feel unworthy of living.That's not me. I'll always have my opinions about gay people, that's a fact. But it doesn't mean I hate them or would put them in danger. I will let them live their lives the way they want to. I can't stop them, so I'll let them live the way they choose to. If there are consequences, let them deal with them. That's all I have to say on this issue.
  10. They can do what they want. It's not your problem if they become unhealthy and vegetable-like. I know that you're doing this for the right cause, but it really isn't necessary. Let them be. I'm not condoning or supporting this "way of life" in any way, but I let each person decide what they want to do in their daily life. Of course it's best if they don'tspend 10-12 hours a day wasting time by playing mindless surrealgames, but what can you do?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.