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 - XSEAN
Pages: 1 ... 949596 9798 ... 135
2851
« on: September 30, 2015, 03:00:10 PM »
i mean its school related but this thing
#include <stdio.h> #include <stdlib.h> #include "cstack.h" #include "alg2rpn.h" #include "rpn_util.h" #include "rpn.h" #include "boolean.h"
float alg2rpn(char my_string[]) { cstack top; char output[30]; int i = -1, j = 0, next_state = 0; float ans; init_cstack(&top); while (1) { switch(next_state) { case 0: i++; if (is_digit(my_string[i])) { next_state = 1; } else if (is_operator(my_string[i])) { next_state = 2; } else if (is_space(my_string[i])) { next_state = 7; } else if (my_string[i] == '(') { next_state = 3; } else if (my_string[i] == ')') { next_state = 4; } else if (is_end(my_string[i])) { next_state = 5; } else { next_state = 6; } break; /* If Digit */ case 1: while ((is_digit(my_string[i]) || (my_string[i] == '.'))) { output[j] = my_string[i]; j++; i++; } output[j] = ' '; j++; next_state = 0; break;
/* If Operator */ case 2: while ((!c_is_empty(top)) && (is_operator(top -> data)) && prec(my_string[i]) <= prec(top -> data)) { output[j] = c_pop(&top); j++; output[j] = ' '; j++; } c_push(&top, my_string[i]); next_state = 0; break;
/* If Left Parentheses */ case 3: c_push(&top, my_string[i]); next_state = 0; break;
/* If Right Parentheses */ case 4: while (top -> data != '(') { output[j] = c_pop(&top); j++; output[j] = ' '; j++; } c_pop(&top); next_state = 0; break; case 5: while ((!c_is_empty(top)) && (is_operator(top -> data))) { output[j] = c_pop(&top); j++; output[j] = ' '; j++; } ans = rpn(output); return ans; break;
/* Garbage */ case 6: return printf("Something went wrong\n"); exit; break; /* If space */ case 7: output[j] = my_string[i]; j++; next_state = 0; } } } Just looking at that is giving me a headache I hated my computer programming course. My dumb program never wanted to do what it was told. It was like YAY another hour to screw over Sean's project. i dunno gain some muscle so i don't look like a lollipop?
Good for you
2852
« on: September 30, 2015, 02:56:45 PM »
Other then Eliab that has to fix his house. What small project do you have started? I unfortunately have to do some body work on my car. Some inconsiderate person hit my car with something in a parking lot and did not even have the common decency to leave a sticky note.  Yeah I know she dirty I have to: -Chip the old paint away - Pop out the dent - Grind the rust out - Re-prime and paint - Re- paint seal - Wash and Wax. Should take me about 2 days.
2853
« on: September 30, 2015, 02:45:51 PM »
I mean yeah it's great that people are mindful of things like people's sexuality, but honestly that is only a fraction of what makes up a person as a whole. It seems like that is the thing that interests people the most though. Let's try to think of other things you could identify about a person besides their sexuality which would be interesting to focus on. How about their taste in music? Or what personality traits they have? How they find their spirituality, whether it be through believing in make believe deities or simply finding the inner self? I mean, it gets extremely tiring having absolutely everything be a joke all the time with people, it really makes it hard to feel interested in anything anyone has to say, when it's always the same bullshit.
I get made fun alot
Because I am sexually Identified as a Attach Helicopter

are you ok
No it's hard fitting in. Been 26 tones isn't easy people think I am fat 12.7 Gatling gun doesn't seem to impress people My Heat seeking rockets scare people. Ever had people call you buzzer heard, Rotor reject or Huey. it hurts man
2854
« on: September 30, 2015, 02:37:44 PM »
I mean yeah it's great that people are mindful of things like people's sexuality, but honestly that is only a fraction of what makes up a person as a whole. It seems like that is the thing that interests people the most though. Let's try to think of other things you could identify about a person besides their sexuality which would be interesting to focus on. How about their taste in music? Or what personality traits they have? How they find their spirituality, whether it be through believing in make believe deities or simply finding the inner self? I mean, it gets extremely tiring having absolutely everything be a joke all the time with people, it really makes it hard to feel interested in anything anyone has to say, when it's always the same bullshit.
I get made fun alot Because I am sexually Identified as a Attach Helicopter
2855
« on: September 30, 2015, 02:35:45 PM »
 Why not post on both
2856
« on: September 30, 2015, 01:10:02 PM »
Why is every teen furry a wolf?
Teen I am 24
oh
why did I think you were younger than me?
He posts like he's 13
Hhahahah right everyone here post like their 12
No, your grasp of the English language is like that of a twelve year-old.
Mhmmm Do you know how to speak 3 languages? if so then your complaint is justified if not SHUT UP
2857
« on: September 30, 2015, 12:57:50 PM »
T4R
Writing this while sitting in my car at 6 AM.
Is everyone OK? How bad is it? What caused it? Anything I can do to help?
Yeah, everyone's okay. The side of my house looks like burnt toast. Apparently the fuse box had crossed wires or something, which caused a fire and sparks two stories high.
Did you have any electrical work done prior to that?
2858
« on: September 30, 2015, 12:39:07 PM »
Why is every teen furry a wolf?
Teen I am 24
oh
why did I think you were younger than me?
He posts like he's 13
Hhahahah right everyone here post like their 12
2859
« on: September 30, 2015, 12:34:17 PM »
Why is every teen furry a wolf?
Teen I am 24
oh
why did I think you were younger than me?
Cause you sit so dam high on your horse you even have trouble seen city from up there
I ain't got no horse.
Srry let me fix that for you Cause you sit so dam high on your Engrapadora
2860
« on: September 30, 2015, 12:31:49 PM »
T4R
Writing this while sitting in my car at 6 AM.
Is everyone OK? How bad is it? What caused it? Anything I can do to help?
2861
« on: September 30, 2015, 12:30:52 PM »
Why is every teen furry a wolf?
Teen I am 24
oh
why did I think you were younger than me?
Cause you sit so dam high on your horse you even have trouble seen city from up there
2862
« on: September 30, 2015, 12:29:47 PM »
If you dislike my profile pic so much block me
2863
« on: September 30, 2015, 12:29:26 PM »
Are you into wolf girls now?
No tall girls
2864
« on: September 30, 2015, 12:28:46 PM »
Why is every teen furry a wolf?
Teen I am 24
2865
« on: September 30, 2015, 12:27:41 PM »
I don't understand why they have to be so damn rude. Like yeah sure it's my job to get your order correct and to your special standards, but I do not get paid enough to deal with your bullshit. If you decided to hand me a $20 bill after you decided to scream racists slurs at me, my coworkers, and other customers I would still say it's not enough. Just because you're black doesn't mean you are exempt from being considered racist which you were so clearly being. I am so happy you are banned from our store, and I will be happy to call the police if you decided to ever show back up at our door. End rant.
No but seriously guys rude customers suck to deal with. What are some good examples of bad customers that you have experienced?
Working on people cars I can agree with you. Some people just like to tell you how to do your job and what should be done. I am doing them a service of fixing their car if they don't like it leave
2866
« on: September 30, 2015, 12:25:28 PM »
Do what you want OP I am joining the Canadian Army
2867
« on: September 30, 2015, 12:25:03 PM »
http://www.cnn.com/2015/09/30/politics/russia-syria-airstrikes-isis/index.html
The airstrike targeted ISIS military equipment, communications centers, vehicles and ammunition, Maj. Gen. Igor Konashenkov said, as part of pinpoint strikes against ISIS ground targets. How do you guys feel about this? Honestly I'm glad Russia is taking care of it. The more people the better, and another powerful country besides the US to fuck up the Middle East even more.
I would be careful with the Russian and Al asad alliance that asking for trouble
2868
« on: September 30, 2015, 12:23:22 PM »
To clear things up  1) My boot camp doesn't start t'ill April 2) I needed a break from this place 3) My avatar picture is my choice. If it doesn't break the rules and you dislike it then that your problem. 4) Call me an furry or an ex-furry that your issue not mine I've gotten over it.
2869
« on: September 25, 2015, 10:09:39 PM »
Off to basic training tomorrow morning.
It's been interesting here to say the least
2870
« on: September 25, 2015, 05:43:32 PM »
Yes it may lead to people not been born with horrible diseases. But humanity tends to weaponize things at a alarming rate. The 1st airplane that flew was in 1903 by the wright brother. In less then 9 year we turned into a machine of wars. Oh look we would the power of the atom to create large amount of power or look we created into the deadliest weapon known to man. We Cannot be trusted
Nearly twenty years ago, in his book “Forbidden Knowledge,” the late Roger Shattuck wrote that modern technology walks along “an increasingly slippery slope little affected by good intentions and individual twinges of conscience.”
Instead, It better left unknown. Not because knowledge is evil but because we are—or at least can be.
it hurts talking to you.
I see the world differently let cut the giant argument and agree no one right or wrong
2871
« on: September 25, 2015, 05:24:46 PM »
2nd) I do find a moral issue with creating different humans. yeah, because experimentation to find cures and to prevent shit like multiple sceloris, lou gherig's disease and other crippling and painful disorders is super immoral.
It's a slippery slop when we start doing shit like that it literally isn't. at all.
Yes it may lead to people not been born with horrible diseases. But humanity tends to weaponize things at a alarming rate. The 1st airplane that flew was in 1903 by the wright brother. In less then 9 year we turned into a machine of wars. Oh look we would the power of the atom to create large amount of power or look we created into the deadliest weapon known to man. We Cannot be trusted Nearly twenty years ago, in his book “Forbidden Knowledge,” the late Roger Shattuck wrote that modern technology walks along “an increasingly slippery slope little affected by good intentions and individual twinges of conscience.” Instead, It better left unknown. Not because knowledge is evil but because we are—or at least can be.
2872
« on: September 25, 2015, 05:20:52 PM »
2nd) I do find a moral issue with creating different humans. It's a slippery slop when we start doing shit like that
Humans have always played God. Dogs came into existence by breeding traits desired in wolves, we created better produce through breeding, fuck back towards slave time we breeded slaves to be stronger. Only difference is now we have more efficient techniques.
Yes but that with a species less advance to us not our own kind. You don't see foxes doing fox experiments on other foxes. What concerns me and should concern you is the often-irresistible human temptation to play God Nearly twenty years ago, in his book “Forbidden Knowledge,” the late Roger Shattuck wrote that modern technology walks along “an increasingly slippery slope little affected by good intentions and individual twinges of conscience.” Instead, It better left unknown. Not because knowledge is evil but because we are—or at least can be.
2873
« on: September 25, 2015, 02:28:40 PM »
A clone of me nope I am sorry I must remove this abomination from earth.
2874
« on: September 25, 2015, 02:27:13 PM »
Hell No that crossing boundaries as a species we should no cross. Playing god is never a good ideal. Get out of here with that garbage This "playing god" mindset is utterly ridiculous. All it's doing is hindering the advancement of medical science.
A good example is what happened with the elric brothers Did you really just use anime as a reason against human experimentation?
1st of all that was a joke 2nd) I do find a moral issue with creating different humans. It's a slippery slop when we start doing shit like that
2875
« on: September 25, 2015, 01:25:13 PM »
Op I was tempered to write down on a doctor form under sex Attack Helicopter
2876
« on: September 25, 2015, 01:20:27 PM »
mhmmmm
Do it myself : Hell No that crossing boundaries as a species we should no cross. Playing god is never a good ideal. A good example is what happened with the elric brothers
Mhmm only the most extreme situation I would consent myself to be experimented on. If I was say severely injured and a government agencies say Hey we can make you better then you were but we have to do some science shit that may hurt and change you like spartans fuck yeah
2877
« on: September 25, 2015, 01:16:33 PM »
 Dat name
2878
« on: September 25, 2015, 01:14:07 PM »
Nursery
What ever it is I want her to treat it
She's great with kids, I swear
Sure
2879
« on: September 25, 2015, 12:51:33 PM »
Nursery
What ever it is I want her to treat it
2880
« on: September 25, 2015, 12:48:57 PM »
What would be the best career choice for your avatar?
Me: mhmmmm Let me guess fighter pilot
Pages: 1 ... 949596 9798 ... 135
|