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 ... 92 93 [94] 95 96 ... 125
1396
Math and Science / Re: Loop all possible words algorithm
« on: August 05, 2011, 10:38:50 am »
Here is a verson in Lua ;D
Code: (Lua) [Select]
a="a"

function increment(str)
        len = #str
        if len==0 then
                return "a"
        end
        bt = str:byte(len)
        if bt<122 then
                str = str:sub(1, len - 1) .. string.char(bt+1)
        else
                str = increment(str:sub(1, len - 1)) .. "a"
        end
        return str
end

print(a)
for i=1,100 do
 a=increment(a)
 print(a)
end

1397
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: August 05, 2011, 03:08:51 am »
1857: You listen to Omnimaga radio from your calculator (computer --> calculator --> sound)

1398
EDIT: Another update! Pastes from http://paste.bwns.be/ also work :D

w00t, its actually being used \o/

1399
Thanks Levak, this will be useful for me, as I use gedit for all my programming :)

1400
TI 68K / Re: Punix
« on: August 04, 2011, 01:32:49 am »
Nice to see that you are making progress :)
Everything sounds very interesting!

1401
Computer Projects and Ideas / Re: [Computer] Falling Blocks
« on: August 04, 2011, 01:14:26 am »
Cool, can't wait to try it :)
Also, I get already nervous by just looking at the video x)

1402
News / Re: The 1st homemade Nspire dock connector
« on: August 03, 2011, 06:44:24 pm »
I just soldered directly to the pins x)

1403
TI-Nspire / Re: [Nspire Entry] Falling Blocks
« on: August 03, 2011, 05:40:26 pm »
Well, at least your code will be good :)
If Linus would think "its open source, and if other people can ruin the code, why should I make it good?", Linux wouldn't be as good as it is now ;)

1404
News / Re: The 1st homemade Nspire dock connector
« on: August 03, 2011, 05:21:40 pm »
Very nice :D

1405
Well, compiling Linux for the nspire isn't the hardest part, the hardest part is getting it boot. You will need to make a bootloader to do that.
To make this you will need to spend lots of hours in it, and lots of research. The link DJ posted contains interesting stuff, handy if you want to start.

Good luck :)

1406
TI-Nspire / Re: [TI-Nspire] Make3D - TI-Basic to Lua
« on: August 03, 2011, 05:59:12 am »
Hmm, very interesting!
Thanks for pointing it out :)

1407
Lua / Re: Controlling external hardware through Lua
« on: August 02, 2011, 01:48:13 am »
Thanks apcalc :)

1408
Lua / Re: Sound with nspire Lua
« on: August 02, 2011, 01:46:45 am »
DJ, you can hear a bit sound in the video I posted :)
Sadly though its only one channel.

Adriweb, I'd like to be a beta tester :)
BTW, I have ideas to improve sound, just need to try it.

1409
TI-Nspire / Re: notepad for the nspire
« on: August 02, 2011, 01:42:51 am »
Wow, Lua syntax highlighting !
This will be great when ndless 3 get released :)

1410
TI-Nspire / Re: [Nspire Entry] Falling Blocks
« on: August 02, 2011, 01:38:33 am »
You can also let on.save return the highscore as a list. This will then be the parameter of on.restore next time the script gets opened :)
Bullet-proof :p

Pages: 1 ... 92 93 [94] 95 96 ... 125