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

Pages: 1 ... 117 118 [119] 120 121 ... 239
1771
Casio Calculators / Re: Old school Casio calculator watches...
« on: December 10, 2012, 11:26:21 am »
I don't know, I still like watches a bit too much.

Besides, my calc RAM clears all the time :P
Same for me, and this allows to do even funnier things :P
When they ask me what time it is, I first take my 84+SE out from my pocket, they look at me like I am E.T. then I say "wrong one" (because the time is wrong since the last RAM Clear) and take out the CX CAS from the other pocket and tell them the time while they look at me like I am (E.T.)² XD

1772
The Axe Parser Project / Re: Which Axe version do you use?
« on: December 10, 2012, 11:17:52 am »
I haven't encoutered any bug in Axe 1.2.0 but I still think I'll downgrade back to 1.1.2 because the grey was better :(

1773
TI Z80 / Re: AxeRL
« on: December 10, 2012, 11:16:32 am »
Spent all night coding in map data structures only to be struck down by random RAM clear  :banghead:
We all need to learn to backup. It is just sad you had to learn it the hard way.

Axe has an "auto backup" option, it copies your code in an archived appvar each time you compile it (only works if you compile an unarchived code). This way, even if you lose the original copy, you only lose your progress since the last compilation.

zStart also allows you to edit archived programs (among other amazing things) and automatically reinstalls its hooks after each RAM Clear so it can also be a solution to your problem :)

1774
TI Z80 / Re: [Axe] Robbox
« on: December 10, 2012, 11:11:17 am »
I am not working on it at the moment because of the Espace-TI contest, and I won't work on it during the holidays because this is the only moment I can work on TinyCraft, but then, I'll resume this project :)

1775
Casio Calculators / Re: Old school Casio calculator watches...
« on: December 10, 2012, 04:03:54 am »
*digital
and my 84+ fits in my pocket perfectly :D So does my CX so I usually carry them both around in my pockets. :P
Hehe, same for me (even though my 84+ is an 84+SE and my CX is a CX CAS) :P
And when people ask me what time it is, I usually put my hand in my pocket, they expect me to take my phone out, and then I lol at their face when they see me taking a calc out XD

1776
[FR] Programmation Axe Parser / Re: [Axe parser] : projet worms
« on: December 10, 2012, 01:24:38 am »
(Lol, ça me fait toujours bizarre de tomber sur un topic en français soudain :P)

Et moi en ce moment, c'est surtout la prépa qui m'occupe, plus que mes projets :P
Mais effectivement, j'ai aussi TinyCraft (occupe bien mes vacances), Robbox (occupe mon temps de midi à l'école), KoFiX (basse priorité) et mon entrée pour la compétition EspaceTI (ne sera plus un problème après le 20), donc ça m'arrangerait si Matref prenait ma place :P

1777
News / Re: Portal reaches 8000 downloads in 1 week
« on: December 09, 2012, 07:05:43 am »
I can't believe I have to wait till there's a Z80 emu for nspire since I fried my usb port D:
Don't you have a SilverLink ?

1778
I just made up a name when creating a ticalc account :P
* Sorunome checks what he said his name is
Yeah, that's what people tell me when I say why I don't have an account. But see, if BuilderBoy put a fake name, what would the Portal interview look like ? "Hello all, Donald Duck just made Portal". That doesn't look as serious as with "Alex Marcolina" (not saying that I think I will get featured but why not hope ? :P)

1779
Pokémon Topaze isn't on ticalc.org? O.O

Wasn't it finished a long while ago? ??? I think it should definitively go to ticalc.org (and maybe Omni archives) if that is the case.
It depends on your definition of "finished" :P
It is fully playable but it still needs a real item engine.
The reason why I didn't upload it to ticalc is that it requires an account, and an account requires my real name -.-°
If it didn't ask for my real name, I would make an account and upload it but eh :P

1780
The Axe Parser Project / Re: Features Wishlist
« on: December 08, 2012, 01:08:12 pm »
add, subtract(, multiply, devide), display, compare
Substract and display are already present ;)
But multiply, divide and compare are still missing :P

That would be very hard to do, I would imagine. Axe is pretty much entirely built to work with 16-bit values.
Don't try to tell me something is impossible for you, I won't believe you :P

But just wondering, what kind of things would you want to do with 32-bit values?
I can't even imagine all the physics Builderboy could do if he had the precision offered by 3 and 4 bytes.

1781
TI Z80 / Re: PROGRAM: Polynomial Math Utility
« on: December 08, 2012, 01:04:41 pm »
Would you make the program have some hook then and call at some function on the homescreen (like symbolic)? That would be epic! :D
That would be hard for a basic program to install hooks :P

Thanks. Better yet, I'm trying to design an asm version. Can someone help me out with routines for all 4 operations... multiplying, adding, dividing, and subtracting 16.8 fixed point numbers...?
Ah yeah, sorry, didn't see that one -.-°
Then, a hook would be great :D

Yes, but I was thinking of nested stuff like ((x+1)(x+2)(x+3)+1)/(x^2+1)

Also, to optimise your code:
Code: [Select]
ClrHome
Input Str1
InString(Str1,"+→A
sub(Str1,1,A-1->Str2
sub(Str1,A+1,length(Str1)-A->Str3
Disp Str2
Pause Str3
:D

hmmm...
* Xeda112358 ponders
Yeah, I knew it could be optimized, I really never code in Basic :P
But nested stuff would be pretty hard in Basic since it has to keep trace of everything O.O

1782
TI Z80 / Re: PROGRAM: Polynomial Math Utility
« on: December 08, 2012, 07:52:39 am »
Well in ugly basic (it's been a while since I last programmed with that :P) it can be done like that:

ClrHome
Input Str1
For(A,1,length(Str1))
If sub(Str1,A,1)="+"
Then
sub(Str1,1,A-1)->Str2
sub(Str1,A+1,length(Str1)-A)->Str3
End
End
Disp Str2
Disp Str3
Pause

Of course, this code only supports "+" but "*" and "-" can easily be added ;)
Here is a screenshot below to show what that code produces
The problem I see with "+" is that there are a lot of "+" already in the two operands so the program could not see the difference between those and the operator one :P
But anyway, that would be great for * and / :)

1783
TI Z80 / Re: PROGRAM: Polynomial Math Utility
« on: December 08, 2012, 07:26:47 am »
Would you make the program have some hook then and call at some function on the homescreen (like symbolic)? That would be epic! :D
That would be hard for a basic program to install hooks :P

Great program anyway :D
I have a request though. Instead of doing "operand 1", "operand 2", "operation", couldn't it just input the calculation then look for an operation sign and guess alone what the operation is and what are the operands ?

1784
Some calc games get lots of attention on ticalc.org when released, but as soon as they get off front page news, they're quickly forgotten unless their title has "Mario", "Zelda" or "Pokémon" in them. Eg Alien Breed 5 already gets less than 15 downloads a week there now. D:
So my Pokemon Topaze will be lucky when I upload it to ticalc ? :P
(if I ever upload it there)

1785
The Axe Parser Project / Re: Features Wishlist
« on: December 08, 2012, 07:11:07 am »
Feature request: Somehow make it able to use more than 2 byte variables :D
There is already a lib for adding, substracting and displaying 3 and 4 bytes numbers but I agree that native support for all operations in 3 or 4 bytes would be great :D

Pages: 1 ... 117 118 [119] 120 121 ... 239