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 - Adriweb

Pages: 1 ... 93 94 [95] 96 97 ... 115
1411
Lua / Nspire Lua SDK Mockup
« on: November 05, 2011, 02:08:25 pm »
Here's a Photoshop mockup I made :








This is real, btw ^  (Xcode)

Feel free to comment :P

1412
TI-Nspire / Re: [Lua] Tactical Wars CX
« on: November 04, 2011, 02:14:04 pm »
Oh, I perfectly understand you you're probably right :D

1413
TI-Nspire / Re: [Lua] Tactical Wars CX
« on: November 04, 2011, 02:02:04 pm »
They indeed look awesome, but I am scared in advance at the .tns size, since these are all TI.Images .... :o

Good Luck :D

1414
Miscellaneous / Re: Who has a twitter account?
« on: November 03, 2011, 06:44:01 pm »
I have two :

Adriweb : http://twitter.com/Adriweb

and TI-Planet (automatic from RSS feed) : http://twitter.com/TiPlanetNews

1415
TI Z80 / Re: LightsOff
« on: November 03, 2011, 06:56:10 am »
dat screenshot is the awesomeness ;)

1416
Humour and Jokes / Re: A Rage-Comic I made ... (about TI)
« on: November 03, 2011, 06:54:24 am »
it is indeed boinc, but that's just out of pure random ... I was too lazy to screenshot a real download :P

1417
Lua / Re: Time/homescreen on nspire CX
« on: November 02, 2011, 06:22:45 pm »
Not for now since there is no real way without using ndless to access the RTC (clock)...

You can however program a [relative] clock using timer.getMilliSecCounter() and asking the user for a starting time...


And no, no customizable homescreen for now (maybe with Ndless3, we'll see..)

1418
Humour and Jokes / A Rage-Comic I made ... (about TI)
« on: November 02, 2011, 06:17:24 pm »
Levak had troubles installing & activating a Nspire Software and I decided to do that ;-)

(btw : "COPAING" is like "friend")



Any commentz ? :D

1419
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: November 02, 2011, 04:49:06 pm »
they made a better screen powered calculator : Nspire (and more recently the Npsire CX)

1420
TI-Nspire / Re: [lua] Logo interpreter
« on: November 02, 2011, 10:38:31 am »
This is awesomeeeeeeee

Congratulations !

For the Lua contest, right ? :D

1421
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: November 02, 2011, 08:06:54 am »
Ok :-)

We can only hope TI agree with all that, but that won't be the case soon I guess...

But for now, we're basically talking for nothing since Ndl3ss isn't out nor ready to be released, and OSLauncher will probably need some rewriting, if it's ever re-done.

1422
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: November 02, 2011, 07:58:22 am »
Messing with our own machine is not illegal since we bought it, own it.

I think that what would be illegal (or close to illegal, "borderline") is a detailed instructions manual on how to do it.

It's obiviously not the same, but it could be like a "how to build a nuclear weapon" or something. By itself, it can be chemistry for example, but the consequences can be dangerous.

1423
Lua / Re: Chemical Reaction Analysis (Graphical Lua program)
« on: November 02, 2011, 06:26:00 am »
Updated the archive and everything again.

It now comes with a real chemical equation for the demo >.> (sorry, lol)

It should work for non-CAS.

Here's the TI-Basic part source code :

Code: [Select]
Define LibPub avancement_en()=
Prgm
:Local i,tmp1
:DelVar lnoms
:DelVar lmoles
:DelVar lcoeff
:DelVar lreste
:DelVar reactlim
:luasignal:=−1337
:nbrreact:=0: nbrprod:=0
:While nbrreact=0
:   Request "How many reagants ? ",nbrreact
:EndWhile
:For i,1,nbrreact
:   RequestStr "Symbol of reagent n°"&string(i)&" ? ",lnoms[i]
:   Request "Coefficient of reagent n°"&string(i)&" ? ",lcoeff[i]
:   Request "How many moles of reagant n°"&string(i)&" ? ",lmoles[i]
:EndFor
:Disp "---------"
:While nbrprod=0
:   Request "How many product(s) ? ",nbrprod
:EndWhile
:For i,nbrreact+1,nbrreact+nbrprod
:   RequestStr "Symbol of product n°"&string(i-nbrreact)&" ? ",lnoms[i]
:   Request "Coefficient of product n°"&string(i-nbrreact)&" ? ",lcoeff[i]
:   Request "How many moles of product n°"&string(i-nbrreact)&" ? ",lmoles[i]
:EndFor
:Disp "---------"
:reactlim:=0
:xmax:=9000
:For i,1,nbrreact
:   tmp1:=((lmoles[i])/(lcoeff[i]))
:   If tmp1<xmax Then
:       reactlim:=reactlim+1
:       xmax:=tmp1
:   Else
:       If tmp1=xmax Then
:           xmax:=−1
:       EndIf
:   EndIf
:EndFor
:If xmax>0 Then
:    Disp "Limitant reagent : n°",reactlim
:    Disp "Xmax = ",approx(xmax)," mol."
:Else
:    xmax:=((lmoles[1])/(lcoeff[1]))
:    Disp "Stoechiometrical proportions."
:    Disp "Xmax = ",approx(xmax)," mol."
:EndIf
:For i,1,nbrreact
:    lreste[i]:=approx(lmoles[i]-xmax)
:    If i≠reactlim Then
:       Disp "There is/are ",approx(lmoles[i]-xmax)," moles of ",lnoms[i]," left."
:    Else
:       lreste[i]:=0
:       Disp "There is no more ",lnoms[i]
:    EndIf
:EndFor
:For i,nbrreact+1,nbrreact+nbrprod
:    lreste[i]:=approx(lmoles[i]+lcoeff[i]*xmax)
:    Disp lreste[i]," moles of ",lnoms[i]," has/have been made."
:EndFor
:xmax:=string(approx(xmax))
:luasignal:=42+rand()
:Disp "---------"
:Disp "The summary table is in the following tab."
:EndPrgm

Screenshot of version 1.25 :

1424
General Calculator Help / Re: Ndless 3.0 for Nspire
« on: November 02, 2011, 05:56:17 am »
I think he meant a TI-84 Plus SE emulator for the Nspire CX Cas (and of course OS 3.0). I bet in the future it might be possible to put the CAS CX OS on a regular CX, though, although explaining how to do so on the forums would be against the rules since it's illegal.
That's why we got Ti-Planet :p :p

We would accounce the news but probably not make a tutorial about how to do it, it is indeed illegal and both dangerous for the TI and the community.

Here's a quick explanation for everybody :

The TI-Nspire product line relies heavily on the institutions that gives the exam acceptance agreement, and if more and more website were to disclose info on how to transform your non-CAS calc into a CAS one, this would negatively affect the institutions, which could very potentially say that the Nspire can't be allowed anymore (cas AND non-cas).
Of course, there wouldn't probably be a point anymore for TI to commercialize the Nspire since it'd become kinda useless for most of its users (high school students etc.). And then guess what ? No more TI-Nspire community.
Frightening, eh?


Hoping I'm clear enough to be understood since hacking is Nspire is awesome but we have to know that about certain points like nCas -> CAS, we all have to be careful, for the sake of both TI and the community behind it.

1425
TI-Nspire / Re: nTris - Tetris for nSpire -
« on: November 01, 2011, 03:31:11 pm »
Compasstech removed the link on the day we linked to it >.>

the direct link to the archive should still work, though

Pages: 1 ... 93 94 [95] 96 97 ... 115