ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Archives :: News :: TI APP Development Contest Results

TI APP Development Contest Results
Posted by Eric on 29 September 2001, 22:10 GMT

Well, it's sure been quiet around here lately, but TI has finally announced the winners to their APP Development Contest, which ended on August 15. The winners receive a paid 3-month opportunity to develop application software for TI, a trip to a calculator conference, and lots of other goodies. Congratulations to the winners.

Update (Eric): TI has notified me that there was an error on the page that has since been fixed. Brandon Sterner's Symbolic Differentiation App was tied for first place, rather than coming in second.

 


The comments below are written by ticalc.org visitors. Their views are not necessarily those of ticalc.org, and ticalc.org takes no responsibility for their content.


Re: TI APP Development Contest Results
dietsche Account Info
(Web Page)

I for one have to say WAHOOO!!!
looks like I'll have a robot and 83+se to play with... AND i don't have to go to any conferences etc...
...not bad for a port gone horribly wrong...
:)

and...related but unrelated but related....:
I can't wait TI to release a freeware key for the 89/92+ apps...

     30 September 2001, 08:38 GMT

Re: Re: TI APP Development Contest Results
Barrett Anderson  Account Info
(Web Page)

WELL, i get a PS2, robot thingy, TI-83Silver Edition, and bunch of developement stuff that i don't even know what it is, and i submitted a GAME that took less than 2 hours to make which is probably the most simple thing you have ever seen, and a GOOD portion of the judging was EDUCATIONAL VALUE, originality (check out race2 to see why it's not original), and other stuff which i probably got ZERO points for. and my winnings all add up to over $500 of stuff or so.

     30 September 2001, 16:56 GMT

Re: Re: Re: TI APP Development Contest Results
dietsche Account Info
(Web Page)

hehe... I wasn't the only one that got a late start then... 10 days before the due date, someone convinced me to enter... 10 days later and about 4 hours worth of learning the sdk and 4 hours of actuall programming I had a program that worked... hmmm... now all i need is an incentive (read freeware private key or shareware private key) to finish it so it meets my standards...

     30 September 2001, 21:27 GMT


Re: Re: Re: TI APP Development Contest Results
Kerey Roper  Account Info
(Web Page)

Well, you didn't exactly have a whole lot of competition in the under 16 category.

     1 October 2001, 23:05 GMT

Re: Re: TI APP Development Contest Results
Peter Martijn Kuipers  Account Info

That about counts for me too, I'm glad with the 'bot and 83plus SE. Having seen the calculation above.
I think the prize value exeeds the amount of work put into the app.
But hey, you don;t hear me complain ;-)

     30 September 2001, 20:49 GMT


Re: Re: TI APP Development Contest Results
Samuel Stearley
(Web Page)

So ti adds ams restrictions to the calcs and then they sign a flash app that applies a start utility to bypass said restrictions.

So anyways when will one see this latest ash?

The rules said that no direct graphics access to video memory was allowed so did ti allow the home text-edit hack?

And Congratulations.


-Samuel

     1 October 2001, 16:04 GMT


Re: Re: Re: TI APP Development Contest Results
dietsche Account Info
(Web Page)

>So ti adds ams restrictions to the calcs and then
>they sign a flash app that applies a start utility to
>bypass said restrictions.
The irony of it all :)
I get the feeling that TI has some internal conflicts going on relating to calculators... thus the inconsistencies. I wonder if they are realizing that every 'protection' they try gets beaten (we have some awesome programmers among us)... so then what do they do? Give in, try harder?

>So anyways when will one see this latest ash?
As soon as I get my new computer so I can continue development on it, and I get a freeware key so I can sign it... otherwise never.

>The rules said that no direct graphics access to
>video memory was allowed so did ti allow the home
>text-edit hack?
I didn't use any of the hacks. Instead, it keeps a static buffer of ~253 bytes containing the last keypresses. The auto complete suggestions are sent via a paste event. The highlighting is done by inserting the character 0x2 at the appropriate places in the suggested text (see the sdk docs for more about 0x2). This method is not as intelligent as the old method...

Furthermore, the only features that were included are the auto complete, Custom Menu, and a stripped down (but nicer) version of editdb.

I used the same method that has been recently discussed on the TIGCC message board for detecting key combinations in lieu of _rowread. I would prefer to use rowread because that does not interfere with any hot key combinations of the os or other programs... ex. if the os has the same hot key combo, one would press one key and then press the other rather than hold both keys down together.

At the risk of an wild tangent i feel the need to discuss the sdk for a moment...
1. Overall, right now TIGCC is much better than the sdk.
2. the sdk will be very nice for writing flash apps once completed. (Hopefully it will get a better sim though).
3. TIGCC will remain the best for creating ram programs. Especially ones that need to be able to access the inner workings of the calcs... GCC is superior to the sdk's compiler too...

I had some very bad experiences with the sdk while doing the port. Some code that should have cut'n pasted didn't... in fact, i had to completely rewrite it. The code in question involved some moderately heavy pointer arithmetic. Also, I ran into several bugs in the template code that is generated.... some of them result in crashes. Needless to say, I wasn't very happy about spending 3 hours hunting down bugs that weren't mine.

>And Congratulations.
Thanks :)

Also, I have to say thanks to Scott and Mike for encouraging me to enter the contest and giving me pointers on the sdk :)

-Greg

     2 October 2001, 01:28 GMT

Re: Re: Re: Re: TI APP Development Contest Results
lalu

<<Also, I have to say thanks to Scott and Mike for encouraging me to enter the contest and giving me pointers on the sdk :)>>

Same here! :) Especially for TI-Basic extensions.

     2 October 2001, 02:08 GMT


Re: Re: Re: Re: TI APP Development Contest Results
Samuel Stearley
(Web Page)

i introduced a bug into complete a while back by directly writing in the handle of the home entry line to code. The bug occurs when the handle of the entry line changes, which i can force it to on ams 2.05 by trying to graph a function with an undefined variable, and when the undefined error occurs I select the "goto" option and the function is placed into the entry line and the handle has changed. Anyways I fixed it by writing in the pointer to the handle.

And stuff like 2nd+enter for the entry option results in text being pasted.

So it seems like this flash app based ash could be buggy.

Stop rambling Sam


-Samuel

     2 October 2001, 02:42 GMT


Re: Re: Re: Re: Re: TI APP Development Contest Results
dietsche Account Info
(Web Page)

it is possible that there could be bugs in the app version of ash that i submitted for the contest...especially considering I have never tested it on my calc and only worked on it for just over a week.
I am not quite understanding how the bug you just mentioned would affect the app though... I'll have to try it sometime. The APP dosen't deal with handles at all... instead, it makes use of object frames and the CM_PASTE event to do its job.

-Greg

     2 October 2001, 06:27 GMT


Re: Re: Re: Re: Re: Re: TI APP Development Contest Results
Samuel Stearley
(Web Page)

>I am not quite understanding how the bug you just mentioned would affect the app though.

meaning that the contents of your internal buffer could be made obsolete without your realization.

-Samuel

     2 October 2001, 15:29 GMT


Re: Re: Re: Re: Re: Re: Re: TI APP Development Contest Results
dietsche Account Info
(Web Page)

hmmm... that would not be good.
The APP version does reset the buffer when a non-auto complete key is pressed though...

Greg

     2 October 2001, 17:01 GMT


Re: Re: Re: Re: Re: Re: Re: Re: TI APP Development Contest Results
Samuel Stearley
(Web Page)

Ack with such a big buffer I thought you were simulating the entry line. So flash app ash now works like complete, (or rather how complete used to work)

-Samuel

     3 October 2001, 13:52 GMT

Re: TI APP Development Contest Results
Barrett Anderson  Account Info
(Web Page)

"been quiet around here for a while" - is there a reason for this? i have seen staff members reply to comments ALL THE TIME - but the poll still hasn't been changed - is it possible that you are trying to keep bandwidth usage to a minimum since there are being SO MANY downloads in back to school time? i have definately noticed a slowing of speed on this site. (especially with the last 450 comment thingy)
GO TO MY SITE!!!

     30 September 2001, 21:50 GMT

Re: Re: TI APP Development Contest Results
Nathan Haines  Account Info
(Web Page)

Nah, mostly there just hasn't been much calculator news. It happens sometimes, especially over the summer. I expect it'll pick up before long.

     30 September 2001, 23:39 GMT


Re: Re: Re: TI APP Development Contest Results
Barrett Anderson  Account Info
(Web Page)

ok... if there's just 'no news', then why hasn't the survey been updated in over 2 months?!?!?!?! please, if you are a staff member and have access to the survey thingy (do all of them?) update it! maybe it can be something related to school.. like "how much do all of your books combined weigh for this year?" or ANYTHING.. the survey ALONE not being updated is really making this site feel static and boring.

     1 October 2001, 01:18 GMT


Re: Re: Re: Re: TI APP Development Contest Results
JoelThePenguin  Account Info

Perhaps they're seeing how people like you react.

     1 October 2001, 06:26 GMT


Re: Re: TI APP Development Contest Results
lalu

<<GO TO MY SITE!!!>>

LOL. Again?

     1 October 2001, 06:56 GMT


Re: Re: Re: TI APP Development Contest Results
Barrett Anderson  Account Info
(Web Page)

even better, go to my site, wait 10-15 seconds, press refresh, wait 10-15 seconds again, press refresh etc.... do that as many times as you want. $$$

     2 October 2001, 03:14 GMT

Re: Re: Re: Re: TI APP Development Contest Results
lalu

How about "go to my site, download EQW and be happy!" :)

     2 October 2001, 07:34 GMT


Re: Re: Re: Re: TI APP Development Contest Results
no_one_2000_  Account Info

Well, atleast you're not saying

"Hm... very interesting...

EVERYONE GO TO MY SITE SO I CAN GET HITS! IT HAS REALLY REALLY FUNNY YO MOMMA CAPS!"

That was a P-A-I-N. (That spells pain!)

     3 October 2001, 03:06 GMT

1  2  3  4  5  6  7  

You can change the number of comments per page in Account Preferences.

  Copyright © 1996-2012, the ticalc.org project. All rights reserved. | Contact Us | Disclaimer