Someone does what any decent person should do. Then tumblr.
I'm starting to get put back into the world of feminist nazis again, and I don't want to go back... Especially since the one I'm informed of is about something with women and video games and as much as I hate how stupid people's arguments can get, you can never underestimate something overwhelmingly stupid in overwhelming numbers... So I'm abstaining from getting caught in the crossfire. But I have to admit, the amount of good deeds and assumed horrible acts men are assumed to think/do are outrageous. A prime example is there is a sign on the bus in my area (Windsor, Ontario) that LITERALLY tells MALE passengers to not touch, look, speak or MASTURBATE to women on the bus. This is not only uncalled for, but insanely stupid. There's feminism, and then there's fascist feminism. Seriously, if you associate all men with the shitheads, then you got a problem. YES, the only thing people look at is that bad (look at all the pedophile preist jokes and whatnot; not all priests are goofs, so why say they all are?). Islamic countries are an even better example; a lot of people I know think they're all terrorists (my dad is one of them). Sadly, I haven't spoken to one or made friends with someone who is islamic or arabic, but they're not all bad people. Yes, there are quite a few good examples of why you would be wary of them, but they aren't all bad. Same with men. I know that men can be horrible, but women can as well. Hell, I'm SCARED of women because of my past experiences with them. But do I judge all of them the same because they hurt me most of my ? Fuck no! Hell, I met a few female friends at school and even though I'm scared of them, I talk to them like a friend before my fear overtakes me. I do admit, one of them seems to be one of
those women who think men are awful (she posted something saying the term "all men aren't bad" means its ok to play russian roulette. Not all the chambers are loaded, but there is ONE. This seriously changed my outlook on her, but I still consider her a friend... I just don't talk feminism around her. This also offended me, but I don't let it bug me). On a final note, I HAVE seen the worst of men when I was in rehab and heard some crazy shit from them. BUT the same thing goes for the women as well. We live in a world where if someone does something wrong, we blame everyone who looks, acts or thinks like them. That black, curly haired male killed a man? HATE ALL THE BLACK PEOPLE! That white blonde hair blue eyes man raped a girl? HATE ALL THE WHITE MEN! I guarantee that if men had the willpower to speak up about abusive women in their lives, they would have the same thing happen to them. Sadly, you get men like me who are too scared or too proud to admit it.
In a different sense, I'm raging because MY FUCKING JAVASCRIPT CODE DOESN'T FUCKING WORK AND ITS DUE TOMORROW! And thats the panic part. The RAGE part is the fact the textbook doesn't do fuck all in tell me what I'm doing wrong!
<html>
<head>
<!-- Program Name: flowerForm.html
Purpose: To create a form with the user's name and a choice of flower
Author: Specner Durette
Date last modified: February 3rd, 2015
-->
<script type="text/javascript">
//Variables
var flower;
var BR = "<br />";
var PA = "<p />";
var NL = "\n";
//Change the flower value when a radio button is pressed
function setType(flowerType) {
flower=flowerType;
}
function displayRequest() {
var fullName = document.FlowerForm.fullName.value;
var flower = document.FlowerForm.flowerPicked.value;
document.FlowerForm.FormRequest.value =
"Thank you for requesting information!" + NL + NL
+ "Name: " + fullName + NL
+ "Flower Inquiry About: " + flowerType
}
</script>
</head>
<body>
<h2>Flower Information Form</h2>
<form name="FlowerForm" action="">
<strong>Enter Your Full Name:</strong><br />
<input type="text" name="fullName" value="Full Name" size="40"><br />
<br />
<strong>Select the flower you wish to make an inquiry about</strong><br />
<input type="radio" name="flower" value="Roses" onclick="setType(flowerType)" />Roses<br />
<input type="radio" name="flower" value="Carnations" onclick="setType(flowerType)" />Carnations<br />
<input type="radio" name="flower" value="Daisies" onclick="setType(flowerType)" />Dasies<br />
<input type="button" name="resquestButton" value = "Display Request" onclick="displayRequest()" /><p />
<textarea name ="FormRequest" readonly="true" value = "" rows="8" cols="50"></textarea><br />
</form>
</body>
</html>
And no, I don't care if you see my name on there. Seriously, this fucking textbook says nothing on what is wrong with this shit and I'm 99% certain theres a part in the book that's written wrong and it confuses me. Lucky for me, once I finish this, I got not only one assignment done, but I can literally delete half of this shit and hand it in as it literally has one display the shit, the other is make the shit work.