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 - Jim Bauwens

Pages: 1 ... 41 42 [43] 44 45 ... 125
631
News / Re: An official TI-Nspire theme editor!
« on: April 05, 2012, 05:42:16 am »
I doubt that custom backgrounds are possible ( because of the way the home screen is programmed).
But you never know with all the Ndless hackers around :)

632
Lua / Re: Numstrat - Stumbling into Lua
« on: April 04, 2012, 07:21:01 am »
Lua doesn't have list, arrays or matrices.
The only thing similar are tables, and tables blow all of the other things away.
You can easily combine tables to get a matrix:

Code: [Select]
matrix= {
    {1,2,3},
    {4,5,6},
    {7,8,9}
}

print(matrix[2][3]) -- prints 6

You can put any lua object in a table, and you can use any object as a key.
Lua tables can also be manipulated by metatables and metamethods, making them extremely cool. But that is a bit more advanced :)

633
Ndless / Re: Ndless bFLT loader
« on: April 03, 2012, 11:23:03 am »
Very nice :D

634
Other Calculators / Re: If only it were real
« on: April 02, 2012, 10:22:25 am »
Who says it's fake :D

Juju, ever heard of SD card support? The Nspire OS already supports it :)

635
Ndless / Re: Ndless bFLT loader
« on: April 02, 2012, 10:17:48 am »
Great work tangrs!

I think this (and the other loader stuff), deserve a news here :)

636
News / Re: Introducing the TI-Nspire CX mini Presenter
« on: April 01, 2012, 07:40:20 am »
 :o

637
News / Re: Reflash your Nspire CX Diags without RS232!!!
« on: April 01, 2012, 07:39:44 am »
Nice work!

638
TI-Nspire / Re: Nspire audio?
« on: March 31, 2012, 01:44:43 pm »
Awesome!!

639
TI Z80 / Re: Connecting GSM modem
« on: March 31, 2012, 01:02:58 pm »
115200 baud is the highest speed most hardware supports, so I suppose the modem will not be more.
If you can't time the signal correctly, you could probably put a little circuit in between that takes care of it (something similar to an arduino)

640
Other Calculators / Re: Ncubate - Enhanced TI-Nspire emulator
« on: March 31, 2012, 11:18:30 am »
We are also planning to update Ncubate with Ndless v3.1 compatiblity.
That is great news! Thanks :)

641
General Calculator Help / Re: TI NSPIRE CAS+ Manual
« on: March 30, 2012, 04:53:40 am »
I posted links in the thread. Sadly only French and Dutch.

642
Other Calculators / Re: TI Nspire CAS+ ---- Is it worth it?
« on: March 30, 2012, 03:22:17 am »
I think there are guidebooks for the CAS+ somewhere on TI's website, I've stumbled on them once. I don't remember where exactly, but I'll take a look if I can find them again.

I have found the French manuals and dutch manuals for the CAS+. Can't seem to find any English one.
Dutch : http://bwns.be/jim/Getting_Started_with_TI-Nspire_CAS_NL.pdf
French: http://tiplanet.org/forum/archives_voir.php?id=1576 and http://tiplanet.org/forum/archives_voir.php?id=1577

643
Lua / Re: 15Puzzle for TI-nspire Lua
« on: March 29, 2012, 02:02:50 pm »
Ha, I'll stilll use Luna+shellscripts+TiLP. Nothing beats that!
I have EEPro building integrated in my editor (geany), and with one press of a button it builds EEPro (which exists out of many seperate lua files) and uses TiLP to send it to my CX (or uses PCspire).
Just awesome :)

644
TI-Nspire / Re: Nspire audio?
« on: March 29, 2012, 02:39:24 am »
Nice!!

645
Lua / Re: 15Puzzle for TI-nspire Lua
« on: March 28, 2012, 04:34:54 pm »
Well, I can assure you TI is did much work to keep <3.1 Lua scripts work fine on 3.2. They are clearly dedicated to this, so I wouldn't worry that much.

Pages: 1 ... 41 42 [43] 44 45 ... 125