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

Pages: 1 ... 57 58 [59] 60 61 ... 96
871
Ndless / Re: Ndless 1.7 for TI-Nspire
« on: October 23, 2010, 07:32:29 pm »
First, I don't think Ndless 1.4 will work with OS 1.7, only OS 1.4. :)

Pull a battery, put it back in, and hold doc, ee, ente, and onr, then delete the OS and send the one you want!

Heh, yeah I had to figure that out the hard way :)

But hallelujah! It worked :D, in the maintenance menu, I chose option 4 to completely format (if anyone else gets into my position) and then went on to install any OS.

Much appreciated, apcalc :)

You're Welcome! :)

Also, by doing a complete format, you deleted all of the documents on the calc.  For the future, a safer option would be option #2, which only deletes the OS, but the files are safe.

872
Ndless / Re: Ndless 1.7 for TI-Nspire
« on: October 23, 2010, 07:06:07 pm »
First, I don't think Ndless 1.4 will work with OS 1.7, only OS 1.4. :)

Pull a battery, put it back in, and hold doc, ee, ente, and onr, then delete the OS and send the one you want!

873
Humour and Jokes / Re: Good bye and good luck to you all.
« on: October 23, 2010, 04:07:30 pm »
I wonder if there's a maximum amount of nested spoilers supported...

Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
Spoiler For Spoiler:
<object width="425" height="344"><param name="movie" value="
&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="
&hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>

All that work opening all of those up, and what do I get... :P

* apcalc eats DJ Omnimaga

874
Jumpman 68K / Re: Jumpman Test
« on: October 23, 2010, 09:19:27 am »
Wow, I just noticed this!

Great job, Ranman! :)

875
TI-Nspire / Re: RPG Style Health Bars for the TI-nspire!!!
« on: October 22, 2010, 10:04:27 pm »
The screenshot seems to be working for me. :)

876
TI-BASIC / Re: Nspire IF bug? :O
« on: October 22, 2010, 05:29:27 pm »
a:="conteudo" is the same as "conteudo"→a

877
TI-BASIC / Re: Nspire IF bug? :O
« on: October 22, 2010, 05:19:28 pm »
It is similar to the "->" key of the TI-84/89 calcs, only the syntax is opposite.  Instead of "5->x", you would type "x:=5".

The Nspire has the store command too, so I have no idea why they have this also.

878
TI-BASIC / Re: Nspire IF bug? :O
« on: October 22, 2010, 05:00:45 pm »
Well, the way I understand it, nsolve( gives a very crude approximation of the solution.  It is very likely that the repeated solutions are not equal out to the 12th decimal place.

Try:

Code: [Select]
Define LibPub nsolver(eq,x)=
Prgm
:Local a,b,c
:a:=−100
:b:=nSolve(eq,x=−100)
:Disp "Solutions: "
:Disp b
:While a≤100
:  a:=a+1
:  c:=nSolve(eq,x=a)
:  If round(b,5)≠round(c,5) Then
:     Disp c
:     b:=c
:  EndIf
:EndWhile
:EndPrgm

879
Other Calculators / Re: TI Calculator IR Link
« on: October 21, 2010, 09:35:09 pm »
well i would make 2 then give one to a friend in a discrete package in math class then we would play Pong or some shit all block wirelessly XD

My plan exactly. :P

880
Other Calculators / TI Calculator IR Link
« on: October 21, 2010, 09:27:26 pm »
I was browsing this page on ticalc.org: http://sami.ticalc.org/irlink/e_intro.htm

I was wondering, would this be possible to use on the current TI-89 Titanium.  I see there is a version of the link program available for the original TI-89/TI-92, but I question whether it would work on the TI-89 Titanium.  I kinda want to build this link, but I wouldn't want to have to write a link program myself, so if the program won't work in the first place, it would be pointless to build the hardware.  Could anyone here provide some insight on this?  Thank you! :)

881
TI-Nspire / Re: Would an NES emulator be possible on Nspire?
« on: October 20, 2010, 07:25:07 pm »
Nice!  Great job, as always, Goplat! :D

882
General Calculator Help / Re: Manual Ndless Install
« on: October 20, 2010, 03:30:19 pm »
Yeah, not quite.  gbc4nspire is one of the primary reasons I installed Ndless, and it's not working.

I don't know if this is the issue, but you can't use the version of gbc4nspire on ticalc.org on Ndless 1.7.  You have to use Goplat's edited version on United TI or TI-Bank.

883
General Calculator Help / Re: Manual Ndless Install
« on: October 19, 2010, 10:10:04 pm »
Yes, but there are instructions on how to compile it in doc/(I forget the name :P).  If you need any help, feel free to ask!

884
General Calculator Help / Re: Manual Ndless Install
« on: October 19, 2010, 09:58:52 pm »
That is the well known "Power Management Bug".  That is a bug present with OS 1.1 and all Nspires made after 2007.  Pick up a copy of calc84's reset.tns, and before you turn your Nspire off, leave the cursor over this document.  Once Ndless is installed, every time you turn on your Nspire, press enter and it will reboot, causing the screen to come on.

885
General Calculator Help / Re: Manual Ndless Install
« on: October 19, 2010, 09:53:38 pm »
Ndless 1.7 is not completely stable, and it does take several tries to get it installed.

Nspire8x is a program by BrandonW that allows you to organize files, etc., on an Nspire from a TI-84.  It also has a port of the Ndless installer, so you can install Ndless from it.

Pages: 1 ... 57 58 [59] 60 61 ... 96