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

Pages: 1 ... 43 44 [45] 46
661
TI-Nspire / Re: Jonius7 General Projects Topic
« on: April 11, 2012, 02:18:24 pm »
Would you mind if I continue with Cosmic Legions?

662
TI-Nspire / Re: TI-nspire Hold 'em - Basic and Lua
« on: April 11, 2012, 02:04:36 pm »
It sounds very familiar? To what?
I mean reducing many lines of code into just a few lines. (say 300 to 20 becuase loops are more useful :P)

663
TI-Nspire / Re: TI-nspire Hold 'em - Basic and Lua
« on: April 11, 2012, 10:56:07 am »
Lua sounds great! I'll definitely want to see that happen.  :D
Seeing how you improved your code, let's say it sounds very familiar XD Especially with my current project :P

P.S. Your list of programs in your stadium seems interesting. Is there a possibility I could have a look at the source/get all of em?

664
Introduce Yourself! / Re: I forgot...
« on: April 03, 2012, 10:08:24 am »
***ElementCoder wonders how much bags of peanuts there are... O.O

665
Minecraft Discussion / Re: My new Bukkit Server!
« on: April 03, 2012, 09:18:21 am »
It's down  :-[
If you still need a tester, notify me as soon as it's up and running  ;D

666
Introduce Yourself! / Re: I forgot...
« on: April 03, 2012, 09:11:12 am »
wow that's a big bag o' peanuts :o

667
Introduce Yourself! / I forgot...
« on: April 03, 2012, 05:02:06 am »
I forgot to introduce myself  *.* So here I am :P
I've developed quite some things for the TI-Nspire (BASIC) and now learning Lua for even better programs :P I'm also learning java atm and did some C++ sometime ago, in a far, distant world, where everything is hard.....
And I'm starting Astronomy this year.
Well that's about it.

[edit] I'm also a proud Minecraftian

668
News / Re: Introducing the TI-Nspire CX mini Presenter
« on: April 01, 2012, 07:56:42 am »
Want :P

Imagine:
1. Install ndless
2. Hook up a 500Gb harddrive with movies on it
3. Install video player for nspire
4. Profit  ;D

(5. and of course gaming on huge (relatively) screen :P)

669
News / Re: USB support for Ndless
« on: April 01, 2012, 07:46:30 am »
This is awesome!
All those games, videos, images and lots of other stuff  :o
[grabs 1TB harddrive]  8)

Ndless team, you amaze me again.  :thumbsup:

670
TI-BASIC / Re: Problem with Nspire CX CAS
« on: March 31, 2012, 08:42:00 am »
Short and simple answer: yes   ;)
Here's how:
1. Create a Notes page :P
2. Go to Menu>Insert>Math Box (or do Ctrl+M).
3. Type the name of your variable in the mathbox and press enter.
4. If you want to change the settings, position your cursor inside the math box and go to Menu>Math Box Options> Math Box Attributes (or Ctrl+Menu>Math Box Attributes) and change settings to your needs.

I hope this was helpful.

671
TI-BASIC / Re: 83+ to nspire nx rewrite fail
« on: March 27, 2012, 10:15:01 am »
Also, what will your tutorials be covering?  If they're as descriptive as the post you left me, I will surely check them out! Thank you!

I plan to make them as descriptive as my post, with useful examples and quizes to test knowledge :P

@Jonius7: yeah, lets say I took a forced break. School and such, and with exams upcoming I don't know how much time I can spend around here and coding stuff. I'm doing a little too much atm so I'm a bit *.* (learning java, learning lua (does anyone know a good tutorial?), playing a lot of guitar :P)

672
TI-BASIC / Re: 83+ to nspire nx rewrite fail
« on: March 26, 2012, 05:14:46 am »
First of all, input can be gained from the Request (for numerical values) and RequestStr (for strings).
The major problem that's causing all the trouble is that you don't close the if statements.
On the TI-Nspire you have to do this:
Spoiler For Spoiler:
If <condition> then
<actions to perform>
EndIf

Also, all the variables are ALWAYS equal to themselves. So v=v no matter what. So you will always get four results.
Here's how I would've done it:
Spoiler For Spoiler:
Your code, but with closed if statments. Will always return four answers
Spoiler For Spoiler:
Define gaslaw(p,v,n,t)=
Prgm
If p=p Then
 Disp ((0.08206*n*t)/(v))
EndIf
If v=v Then
 Disp ((0.08206*n*t)/(p))
EndIf
If n=n Then
 Disp ((p*v)/(0.08206))*t
EndIf
If t=t Then
 Disp ((p*v)/(0.08206))*n
EndIf
EndPrgm

Another option: make the variable to solve different from the others. The gaslaw for example would never have negative numbers or zero, so consider this (Stop terminates the program):
Spoiler For Spoiler:
Define gaslaw(p,v,n,t)=
Prgm
If p<0 Then
 Disp ((0.08206*n*t)/(v))
 Stop
EndIf
If v<0 Then
 Disp ((0.08206*n*t)/(p))
 Stop
EndIf
If n<0 Then
 Disp ((p*v)/(0.08206))*t
 Stop
EndIf
If t<0 Then
 Disp ((p*v)/(0.08206))*n
 Stop
EndIf
EndPrgm

Personally, I would do this:
Spoiler For Spoiler:
Define gaslaw(p,v,n,t)=
Prgm
If p=0 Then
 Disp "p=",((0.08206*n*t)/(v))
ElseIf v=0 Then
 Disp "v=",((0.08206*n*t)/(p))
ElseIf n=0 Then
 Disp "n=",((p*v)/(0.08206))*t
ElseIf t=0 Then
 Disp "t=",((p*v)/(0.08206))*n
Else
 Disp "Error: nothing to solve, check syntax."
EndIf
EndPrgm

Finally, not really needed, if you want nice input:
Spoiler For Spoiler:
Define gaslaw(p,v,n,t)=
Prgm
Request "Enter p:atm=",p
Request "Enter v:l=:",p
Request "Enter n=",n
Request "Enter t:k=:

If p=0 Then
 Disp "p=",((0.08206*n*t)/(v))
ElseIf v=0 Then
 Disp "v=",((0.08206*n*t)/(p))
ElseIf n=0 Then
 Disp "n=",((p*v)/(0.08206))*t
ElseIf t=0 Then
 Disp "t=",((p*v)/(0.08206))*n
Else
 Disp "Error: nothing to solve, check syntax."
EndIf
EndPrgm

I hope this was helpful. And if you want to learn, check my tutorial (link coming soon in my sig)

673
News / Re: Rules and positions update
« on: December 09, 2011, 02:56:24 am »
I can help with the dutch translation if it's needed.

674
This is awesome :D Wonder what more we could do...

675
TI-Nspire / Re: [WIP] BlockBreaker Nspire (Lua)
« on: June 23, 2011, 11:49:50 am »
That menu looks awesome  :w00t:
I'm learning Lua now, but for  now, I think I'll stick to a simple menu   :P

Pages: 1 ... 43 44 [45] 46