Search found 13 matches

by digiTsai
Mon 16 May, 2005 8:19 pm
Forum: Off Topic
Topic: Gmail's Counter
Replies: 16
Views: 9617

I can see the source fine.
I doubt the 2GB+ is just a hoax though, though I wouldn't put my life on that.
They're just so rich.
by digiTsai
Fri 06 May, 2005 12:38 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

He probably should if he sets it as a starting program, so if someone turns the calc on, they can't just take the batteries out to clear the ram and the variable along with it if they can't get past the password.
by digiTsai
Tue 03 May, 2005 12:29 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

:o its possible to archive and unarchive through a program?
by digiTsai
Tue 05 Apr, 2005 2:37 am
Forum: Discontinued Projects
Topic: [MARIO] Mario as it is now
Replies: 120
Views: 152606

ooohh

thanks lol.
by digiTsai
Tue 05 Apr, 2005 12:20 am
Forum: Discontinued Projects
Topic: [MARIO] Mario as it is now
Replies: 120
Views: 152606

The Calc GS only seems to let me edit gst files.
Is there a newer version? :?
by digiTsai
Mon 04 Apr, 2005 3:28 am
Forum: Discontinued Projects
Topic: [MARIO] Mario as it is now
Replies: 120
Views: 152606

Where is the map file?
I cannot find "data/level.inc" :?:
by digiTsai
Sun 03 Apr, 2005 3:40 am
Forum: Program Ideas
Topic: Not so much a program, as a php script...
Replies: 31
Views: 21060

I could try to do something like this...but I am kinda good in PHP.

Just tell me what to do and I can try. like what do I need to include and stuff

Also, I am kinda confused by your diagram.

Might take me a while.
by digiTsai
Wed 30 Mar, 2005 4:39 pm
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

I think it does this
(0<X)<86

So if it is greater than 0, then the 0<X will be the value 1

Im not sure though
by digiTsai
Wed 30 Mar, 2005 1:45 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

How do you test the speed of your programs?
by digiTsai
Wed 30 Mar, 2005 1:34 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

I dunno if this will be faster. It does bring it down by 1 byte though (2 if you do it for the "y" also) X+7(Ans=26)-7(Ans=24->X If Ans>86 or Ans<0:Then Ans+7(Ans<=1)-7(Ans>=87->X End To X+7(Ans=26)-7(Ans=24 If Ans>86 or Ans<0:Then Ans+7(Ans<=1)-7(Ans>=87 End Ans->X
by digiTsai
Wed 30 Mar, 2005 1:22 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

I found another one

instead of

Code: Select all

While 1
If Ans
Then
commands
End
End
Do this:

Code: Select all

While 1
If not(Ans
End
commands
End
by digiTsai
Wed 30 Mar, 2005 1:16 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

Code: Select all

If Ans>86 or Ans<0:Then
Ans+7(Ans<=1)-7(Ans>=87->X
End 
Why do you have a Then and an End there?
by digiTsai
Wed 30 Mar, 2005 12:50 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 152913

crap i had to register :(
O well, at least there wasn't an activation email


You could try factoring, though I do not know if it will be faster

Code: Select all

X+7(Ans=26)-7(Ans=24->X 
to

Code: Select all

X+7((Ans=26)-(Ans=24->X 
There are a few places you could factor at.


Virtuoso