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 ... 82 83 [84] 85 86 ... 125
1246
Other Calc-Related Projects and Ideas / Re: The nspire Keypad Connector
« on: September 16, 2011, 03:01:47 am »
Thanks a ton :D

1247
News / Re: The TI-Nspire ViewScreen is a true Nspire too!
« on: September 15, 2011, 03:32:05 am »
Interesting :)
Maybe the TI Nspire navigator is also a Nspire calculator.
I know that the TI Navigator (non nspire) runs Linux, so maybe there is a little change that its an nspire platform (hardware), but the software is Linux.
That is at least what I'm wishing :p

1248
Lua / Re: questions about starting LUA programming
« on: September 14, 2011, 12:28:53 pm »
Quote
Two days is really short I think and a normal person will make it in 5-6 days. Give an example of what you think to be a "simple" program/game.
Yes, we all know you are not normal :p

Personally I didn't think it was hard, but if its the first time you program, it can be a bit hard.

1249
TI-Nspire / Re: [TI-Nspire] Make3D - TI-Basic to Lua
« on: September 14, 2011, 04:58:03 am »
Indeed, very good job :)
And, this idea will be useful for many other programs :)

1250
News / Re: Doing too much with the TI-Nspire dock connectors?
« on: September 14, 2011, 03:37:15 am »
Very nice :)
But I had fun soldering directly to the dock port :p

1251
News / Re: Omnimaga Rules Update
« on: September 13, 2011, 05:04:49 am »
I like this rule because many times people have a good reason behind things they do, while other people might not understand why.
For example, I do stuff different than other people, simply because my computer isn't the most powerful one. It makes my life more easy doing it my way, rather than the other way :)

1252
TI-Nspire / Re: NSpire Gamekit - a game framework for Ndless (WIP)
« on: September 13, 2011, 04:57:06 am »
Looks very interesting :)
Sadly enough I'm not in the Ndless camp, but in the Lua one, so I can't test it.

I wish you good luck with it, and most of all, have fun :D

1253
TI-Nspire / Re: More optimized,faster Ti 84+ emulation on Ti nspire(Idea)
« on: September 13, 2011, 04:02:25 am »
@z80man, the nspire has a serial port, in the dock connector ;)
And the emulator itself sounds great :D

1254
Lua / Re: Exact Lua
« on: September 13, 2011, 03:54:00 am »
I would suggest to use math.eval and call basic function to do the calculation. But sadly enough getNum and getDenom don't work good through math.eval.
But ... gcd() (greatest common divisor) does, so I made my own function:
Code: (Lua) [Select]
function exact(n)
local n_int, n_float = math.modf(n)

local n_size = math.pow(10, #tostring(n_float)-2)

local num = n_float * n_size
local denom = n_size

local gcd = math.eval("gcd(" .. num .. "," .. denom .. ")")

num = num/gcd
denom = denom/gcd

return n_int, num, denom
end

It works like this:
Code: [Select]
big, num, denom = exact(13.125)big will be 13
num will be 1
denom will be 8
So, 13 1/8 .

It doesn't do any error checking though, thats your task :p

1255
TI-Nspire / Re: [Lua] Image Editor
« on: September 12, 2011, 03:17:47 pm »
Very nice :)

1256
News / Re: Doing too much with the TI-Nspire dock connectors?
« on: September 12, 2011, 02:32:55 am »
Yes, I know, but I'm not going to open my calc to find out :)
Unless you send me some to test :p

1257
News / Re: Doing too much with the TI-Nspire dock connectors?
« on: September 10, 2011, 02:47:16 am »
Maybe, I don't know. As far as I can see it doesn't print to any other port on the dock.

1258
Lua / Re: Add function to the gc class
« on: September 09, 2011, 05:11:29 pm »
You can run the mac version from the terminal, but I don't know right away how to do that.
Lemme poke someone who knows it :)

1259
Lua / Re: Add function to the gc class
« on: September 09, 2011, 02:38:01 pm »
Try running the software from cmd, and look at the output when running a lua script with print(). You should see it in the console :)

And yes, I could put the print functions we created on inspired-lua :D

1260
News / Re: Doing too much with the TI-Nspire dock connectors?
« on: September 09, 2011, 02:37:17 pm »
Well, it ins't actually removed (I tested it today), it just doesn't print to the console/serial port anymore (which renders it useless).

Pages: 1 ... 82 83 [84] 85 86 ... 125