General Discussion Thread

Started by Dr. Pezus, May 16, 2014, 06:00 PM

0 Members and 6 Guests are viewing this topic.

the-pi-guy

What would people think of playing chess together?  

Legend

Quote from: the-Pi-guy on Jun 11, 2015, 06:51 PMWhat would people think of playing chess together?  
I'd lose?

the-pi-guy

Quote from: Legend on Jun 11, 2015, 07:14 PMI'd lose?
That's the spirit!  
Is anyone interested in a chess tournament?  

Legend

Today is going to be a big day, and we've yet to even have npd.

Quote from: the-Pi-guy on Jun 11, 2015, 07:19 PMThat's the spirit!  
Is anyone interested in a chess tournament?  
Sure

the-pi-guy


Legend


Dr. Pezus

Been awake and working for 24-25 hours now. Only 1.5 hours left

Xevross

Kevin Spacey is about to become Sir Kevin Spacey. Interesting choice in the birthday honours!!

darkknightkryta

Quote from: the-Pi-guy on Jun 11, 2015, 07:19 PMThat's the spirit!  
Is anyone interested in a chess tournament?  
Only after a Street Fighter tournament.

the-pi-guy

Quote from: darkknightkryta on Jun 13, 2015, 08:10 PMOnly after a Street Fighter tournament.
*nods* well okay then.  


-------------------------------------

Making a program to parse through text and solve simple equations is much harder than I imagined.  

Legend

Quote from: the-Pi-guy on Jun 13, 2015, 09:45 PM*nods* well okay then.  


-------------------------------------

Making a program to parse through text and solve simple equations is much harder than I imagined.  
How simple are the equations?

Sounds like you need a regular expression!

the-pi-guy

Quote from: Legend on Jun 13, 2015, 09:48 PMHow simple are the equations?

Sounds like you need a regular expression!
Just calculator stuff.  
Stuff like this.  
sin(2pi)+2^2-4*2+ln(20)
3^3^(2sin(Pi))

darkknightkryta

Quote from: the-Pi-guy on Jun 13, 2015, 09:51 PMJust calculator stuff.  
Stuff like this.  
sin(2pi)+2^2-4*2+ln(20)
3^3^(2sin(Pi))
Do you have to parse that stuff and then do the calculations?  Are you making the file yourself?

Legend

Quote from: the-Pi-guy on Jun 13, 2015, 09:51 PMJust calculator stuff.  
Stuff like this.  
sin(2pi)+2^2-4*2+ln(20)
3^3^(2sin(Pi))
Google seems to have lots of results

Google

the-pi-guy

Quote from: darkknightkryta on Jun 13, 2015, 10:01 PMDo you have to parse that stuff and then do the calculations?  Are you making the file yourself?
Yep, that's the plan.  So far I made everything myself.
 
Quote from: Legend on Jun 13, 2015, 10:02 PMGoogle seems to have lots of results
Google
Yeah, I'm sure there's even a bunch that I could just download and use.  
But I'm having fun breaking it down.  
It's hard because there's a lot to consider, like checking between
sin(2pi)^2    and sin(2pi)*2
A lot of functions and have to be sure they are done in the right order so things don't go out the window.