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 - Epsira

Pages: 1 ... 394041 4243 ... 134
1201
The Flood / Re: happy birthday icy
« on: October 14, 2015, 02:00:47 PM »

1202
The Flood / Re: happy birthday icy
« on: October 14, 2015, 01:36:20 PM »
Das cold man, you str8 icy.

1203
The Flood / Re: Share your current writing
« on: October 14, 2015, 12:27:20 PM »
All I have is academic stuff.
Still qualifies. My poems are for academic purposes, after all.

If I were writing a paper I'd share that... But I don't have any I'm working on atm.

1204
What, you mean getting paid to do shit you otherwise wouldn't normally do?
Sexually speaking, yes.

1205
Anyone have opinions on my consent question?

I'm essentially asking even if people consent, is it really consent when the situation involves money?

Only Tru ambiguously responded with something that could qualify as a cursory answer. I'm open to other ideas.

1206
The Flood / Re: You Know...
« on: October 14, 2015, 12:12:31 PM »

1207
The Flood / Re: Share your current writing
« on: October 14, 2015, 12:10:47 PM »
just wrote my midterm for data structures fam

Code: [Select]
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>

int main(int argc, char * argv[]) {
char op, my_string[5];
float num, num1, num2, fans;
int len, i = 0;

if (argc == 4) {
sscanf(argv[1], "%f", &num1);
sscanf(argv[2], "%c", &op);
sscanf(argv[3], "%f", &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("num1 ^ num2 can't be represented\n");
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
  else {
fans = pow(num1, num2);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (argc == 3) {
sscanf(argv[1], "%c", &op);
sscanf(argv[2], "%f", &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}

else {
printf("Proper input: \n\tnumber operator number\n\t operator number\nEnter your expression: ");
gets(my_string);
len = strlen(my_string);
 
if (len == 5) {
sscanf(my_string, "%f %c %f", &num1, &op, &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("%f ^ %f can't be represented\n", num1, num2);
  }
  else {
fans = pow(num1, num2);
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (len == 3) {
sscanf(my_string, "%c %f", &op, &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
    }
}
Seeing this makes me realise how fucked I am for my own course because I can't code for shit.
bruh do not lose hope because i've been there. Both this semester and last I hit a wall where i was seriously considering chaning majors. Its all built around those basic building blocks. This program is nothing fancy just if, else, printf, etc. Its taken me two years to be to this point too you're only just now starting, you'll get there. ANYONE can code, trust me. Your biggest enemy in programming is overcomplicating things
I'm also interested in coding, but I want to specifically learn about AI and I don't really know where to start with that.
Even something as complex as AI theory is still built upon the basic foundations of programming I.e. if else statements, while and for loops,  stacks, queues, etc.
Thanks. In your experience, are programming classes worthwhile experiences, or is self-education a better route?

1208
The Flood / Re: Share your current writing
« on: October 14, 2015, 12:05:37 PM »
just wrote my midterm for data structures fam

Code: [Select]
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>

int main(int argc, char * argv[]) {
char op, my_string[5];
float num, num1, num2, fans;
int len, i = 0;

if (argc == 4) {
sscanf(argv[1], "%f", &num1);
sscanf(argv[2], "%c", &op);
sscanf(argv[3], "%f", &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("num1 ^ num2 can't be represented\n");
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
  else {
fans = pow(num1, num2);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (argc == 3) {
sscanf(argv[1], "%c", &op);
sscanf(argv[2], "%f", &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}

else {
printf("Proper input: \n\tnumber operator number\n\t operator number\nEnter your expression: ");
gets(my_string);
len = strlen(my_string);
 
if (len == 5) {
sscanf(my_string, "%f %c %f", &num1, &op, &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("%f ^ %f can't be represented\n", num1, num2);
  }
  else {
fans = pow(num1, num2);
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (len == 3) {
sscanf(my_string, "%c %f", &op, &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
    }
}
Seeing this makes me realise how fucked I am for my own course because I can't code for shit.
bruh do not lose hope because i've been there. Both this semester and last I hit a wall where i was seriously considering chaning majors. Its all built around those basic building blocks. This program is nothing fancy just if, else, printf, etc. Its taken me two years to be to this point too you're only just now starting, you'll get there. ANYONE can code, trust me. Your biggest enemy in programming is overcomplicating things
I'm also interested in coding, but I want to specifically learn about AI and I don't really know where to start with that.

1209
The Flood / Re: You Know...
« on: October 14, 2015, 12:02:31 PM »
When we gonna go Jew killing, bro?
Sometime after chocolate dragon girls become more mainstream, I think.

1210
The Flood / Re: Share your current writing
« on: October 14, 2015, 10:58:07 AM »
No, sorry. Not even my rl friends get to see that yet.
Your avatar is from Oglaf.
Bless your soul.
Vien showed me the cartoon and told me I should use the avatar.
Vien is just wondeful, isn't he?

1211
The Flood / Re: You Know...
« on: October 14, 2015, 10:55:20 AM »
How are things and why'd you drop the orange text?

If your answer is boring for the orange text one, invent one and let me guess at whether it's true or not.
Hmmm... Well once upon a time I was masturbating with an orangecicle and it melted in an inconvenient way. I was cleaning orange out for hours.
Can't stand the sight of it.
True or false? You might be surprised.

Oh yeah, the first part of your question... This is probably the best I've been in years honestly, and I hope to expand that in the future.

1212
The Flood / Re: Share your current writing
« on: October 14, 2015, 10:52:44 AM »
No, sorry. Not even my rl friends get to see that yet.
Your avatar is from Oglaf.
Bless your soul.

1213
The Flood / Re: Wake up people!
« on: October 14, 2015, 10:50:20 AM »
Well it looks like Christmas came early this year.

1214
The Flood / Re: Opinion thread
« on: October 13, 2015, 11:24:43 PM »
Regular icing is disgusting.

1215
The Flood / Re: You Know...
« on: October 13, 2015, 11:21:01 PM »
why do you keep disappearing
I get bored and try to jumpstart projects whenever I go on hiatus.
At any given time I have at least three on mind.

1216
The Flood / Re: You Know...
« on: October 13, 2015, 11:14:34 PM »
Have I had a net positive influence on you, throughout our communication? I'd like the most honest answer possible, please >>
Yes, I'm much more self-reliant and proactive as a result of our discourses.
Also, I've had more time to think on how I'd like to present myself and now have something that coincides more closely with attitudes I'll have to exhibit for my goals (if I start really reaching for them).

1217
The Flood / Re: All of Sep7agon vs 1,000,000 8 yr olds
« on: October 13, 2015, 11:04:55 PM »
Our best option would be to destroy all teleporter systems and use the supercarrier's massive girth to make Raspberry jam.


1218
The Flood / Re: You Know...
« on: October 13, 2015, 10:57:44 PM »
Am I Naoto?
I just don't know you that much, so I can't really say... And I didn't really know Nao-kun very well either :(
I seriously don't know why I associate you two.

1219
The Flood / Re: I'M NOT MAZ, YOU GOT DAMN CUCKS
« on: October 13, 2015, 10:50:30 PM »
Quote
I DON'T EVEN HAVE A DOG
Well no duh, they probably found out you fucked it and took it away
Damn son, you just endered his whole pineapple.

1220
The Flood / Re: You Know...
« on: October 13, 2015, 10:46:57 PM »
did you finish those errands?
I'd post a mr. Krabs reaction gif if I could :(
So many disappointing things tonight.

1221
The Flood / Re: You Know...
« on: October 13, 2015, 10:43:00 PM »
Oh shit, who are the last two?
Famous duelists/ronin.

Kojirō was famous for using a nodachi in his duels, which was given the name "the drying pole"
Is the washing pole in DS II a reference to this?

1222
The Flood / Re: You Know...
« on: October 13, 2015, 10:40:11 PM »
You're ruining this forum with your never ending attention whoring. Fucking off yourself.
Surely you jest.


1223
The Flood / Re: You Know...
« on: October 13, 2015, 10:32:40 PM »
Would you date a skeleton?
Yes unconditionally. I've always wanted to literally jump somebody's bones and have it mean something.

is that broken image avatar intentional

I have noticed it's broken, but I'm too lazy to really fix it (not to mention the editing options on mobile get pushed out of the screen ::)

1224
The Flood / Re: You Know...
« on: October 13, 2015, 10:29:53 PM »
What's your favorite thing to do in Fall?
Pretending I'm a Heian era Japanese poet and watching the moon through the dyed leaves.
>Heian Era

Literally kill yourself
>Obviously a Kamakura scumbag.
>Implying

Yo, if you're not finna ball in the Edo, Tokugawa, or Meiji Jidai, then get the FUCK out of my face
But do you have Saigyo?
Do you have Murasaki Shikibu?
Do you have Sei Shōnagon?
No, you don't, you've got Zeami who made plays ABOUT these people.

I've got a legendary entourage.
>Says the nigga who doesn't have Ieyasu
>Says the nigga who doesn't have Hideyoshi
>Says the nigga who doesn't have Nobunaga
>Says the nigga who doesn't have Musashi
>Says the nigga who doesn't have Kojirō

Get the F U C K out of my face
Oh shit, who are the last two?
It's true that the Sengoku Jidai is fucking awesome and that's just pretty much indisputable, but the first novel belongs to my time, and Shōnagon could put any of those men to public shame with her wit.
And Saigyo? They'd be too busy crying from his beautiful poems to even consider killing him.

1225
The Flood / Re: You Know...
« on: October 13, 2015, 10:21:05 PM »
What's your favorite thing to do in Fall?
Pretending I'm a Heian era Japanese poet and watching the moon through the dyed leaves.
>Heian Era

Literally kill yourself
>Obviously a Kamakura scumbag.
>Implying

Yo, if you're not finna ball in the Edo, Tokugawa, or Meiji Jidai, then get the FUCK out of my face
But do you have Saigyo?
Do you have Murasaki Shikibu?
Do you have Sei Shōnagon?
No, you don't, you've got Zeami who made plays ABOUT these people.

I've got a legendary entourage.

1226
The Flood / Re: Holy shit bby
« on: October 13, 2015, 10:18:25 PM »
I wonder what type of ice cream she likes most.

1227
The Flood / Re: You Know...
« on: October 13, 2015, 10:15:55 PM »
What's your favorite thing to do in Fall?
Pretending I'm a Heian era Japanese poet and watching the moon through the dyed leaves.
>Heian Era

Literally kill yourself
>Obviously a Kamakura scumbag.

1228
The Flood / Re: You Know...
« on: October 13, 2015, 10:14:23 PM »
What's your favorite thing to do in Fall?
Pretending I'm a Heian era Japanese poet and watching the moon through the dyed leaves.

How big?
6 ft.

1229
The Flood / Re: You Know...
« on: October 13, 2015, 10:10:28 PM »

1230
The Flood / AMA You Know...
« on: October 13, 2015, 10:08:46 PM »
I've only made an AMA once on one of my birthdays... And someone called me out for ruining the forum with attention whoring.

Then posted an AMA not half a year later >:(

So I think I'll try this again.
And I might reciprocate questions if I feel like it.

Pages: 1 ... 394041 4243 ... 134