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 - Xeda112358
Pages: 1 ... 125 126 [127] 128 129 ... 317
1891
« on: April 06, 2012, 03:42:35 pm »
Xeda112358: That's actually extremely cool, I didn't expect anyone to be that near me. Also, are the numbers in your username a reference to the Fibonacci series?
Yes it is in reference o.o I do rather enjoy the sequence I was glad to note that you made a program for it, but I was wondering if you were using the recursive form or the closed form... (the closed form is a function where you input n and it returns the nth Fibonacci number).
1892
« on: April 06, 2012, 03:26:15 pm »
Cool
Why peanuts ?
I don't know, actually o.o It is like a Omnimaga tradition We always give new members peanuts (I think it started as a joke, but then it became more standard).
1893
« on: April 06, 2012, 03:21:35 pm »
Hi heyy It is nice to see you here We have a some Casio programmers and french programmers here, too EDIT: And here are some peanuts!
1894
« on: April 06, 2012, 03:18:47 pm »
Thanks for the peanuts.
No problem Also, you live in Upstate New York? I live out in the finger lakes area
1895
« on: April 06, 2012, 03:08:39 pm »
Awesome name, by the way And welcome here o.o I like z80 assembly, just sayin' >.> Oh, and peanuts are for you!
1896
« on: April 06, 2012, 02:50:47 pm »
Not my AI o.o Mine chases down player 1 in the hope it will trap player 1 However, I didn't have time to code it all properly
1897
« on: April 06, 2012, 02:46:44 pm »
I'd like to see
1898
« on: April 06, 2012, 02:42:08 pm »
Hmm, AND and OR (and even XOR) are math operations... So what they really do is perform Bit-Wise logic. For example, if you do "3 and 6", it will return 2. The reason is if you AND these two: 0000000000000011 (this is 3 in binary) 0000000000000110 (this is 6 in binary) 0000000000000010 (you get this which is 2) The result has a 1 bit only if both bits from the inputs are 1. So, if you did this: If A=3: and B=6
You would be doing this: If (A=3) and (B=6)
However, doing this will result in 0 no matter what: If A=6 and B=3
Lets say B=3 and A=6. The reason is that if you break it down: A=6 and B=3 A=6 and 1 A=0 0
See the issue? 6 and 1 returns 0
1899
« on: April 06, 2012, 02:21:41 pm »
I have made some appearances on tout82 (they do mostly 82, 82 STAT, and 83 calcs). Here on Omni we have a growing french community, too, and there have been two big contests in France this past year (zContest 2011 and TI-Concours still under way). Both had/have quite a few participants which is cool
1900
« on: April 05, 2012, 10:39:54 pm »
Yeah, it is $585 a month for the two of us, but I need to make a security deposit of the same, too. So I need to pay $1170 the first month But yeah, NYC apartment prices would be terrifying And if I get the GSoC thing, I can be a programmer over the summer and it will look good on a resume when I apply for other jobs
1901
« on: April 05, 2012, 10:21:47 pm »
Oh right, that stuff. X.x. I hope your grades are going better atm too. Btw any luck finding a decent appartment at a decent price? Your profile says "NY" which scares me, because I heard about appartment prices there and...
I am in western New York (far from NYC ). I live where there are trees and stuff everywhere and you can see the stars in the night sky Um, but yeah, we have an apartment that we are going to settle for for $585 a month (we would have preferred if they had $450, though ) That is just barely in our budget realm, so now we need jobs and I am hoping I get the Google Summer of Code thing That will help a lot.
1902
« on: April 05, 2012, 10:13:33 pm »
1903
« on: April 05, 2012, 09:49:40 pm »
I have lots of times throughout the year where I do not have internet (about 21 weeks per year, so about 5 months), so certain times I am not as active Though when I am active, I try to maintain a 5.0 or better posting average And DJ_O has good advice, I think, for keeping activity up. For example, right now I have tons of IRL stress, so I cannot really work on projects. However, I try to keep up a few posts every day and I check in here often. Plus, if there are answers that I can provide, it makes me feel good In any event, Omni is still pretty active, right? EDIT: @Juju: So you have an extra TI-8x to spare for a contest? * Xeda112358 runs
1904
« on: April 05, 2012, 05:01:20 pm »
o_O Je ne sais pas le problème, mais peut-être vous pouvez obtenir un screenie? Aussi, je pense que l'auteur de PolyPatch84 est Critor, mais les "patches" sont par BrandonW et thepenguin77 pour le pluspart. Donc, peut-être vous pouvez les demandez? (erm, désolé pour la grammaire )
1905
« on: April 05, 2012, 02:37:33 pm »
Yeah, that stuff is going to be really scary You might want to include using ! before a Repeat and While as a way to negate and stuff. Also, the way Grammer parses conditions is that it executes all the way to a newline token, so if you use : to separate lines and math in a condition, it will work out. For example: Repeat 3*A:+7:*3:-37 <<stuff>> End
That line parses to: (((3*A)+7)*3)-37)
Pages: 1 ... 125 126 [127] 128 129 ... 317
|