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

Pages: 1 ... 73 74 [75] 76 77 ... 208
1111
General Calculator Help / Re: memory failure 84+
« on: December 31, 2011, 07:15:41 pm »
Well, the VAT is a funny beast. I'm sure that it wouldn't be terribly difficult to corrupt.

1112
General Calculator Help / Re: memory failure 84+
« on: December 30, 2011, 08:45:00 am »
Do you use the command that moves the variable allocation position in axe? Putting that in the wrong place could easily cause what darl pointed out.

1113
Lua / Re: Nspire Basic
« on: December 30, 2011, 12:21:35 am »
hehe yeah...:P

TI was nice and gave us Lua to use on OSes above 2.1. I don't know much about it, but there's a ton of people on this forum who do (I stuck to 2.1 so I could keep ndless, but with ndless 3 I'll switch)

Also, you actually posted in the Lua subforum :P Change the title to "Getting started with Lua" or something similar and you'll be all set.

1114
Lua / Re: Nspire Basic
« on: December 30, 2011, 12:14:55 am »
not yet ;) but there's already a closed beta, so it can't be very far off.

Have you considered Lua? It's much better, being a real language and all. Not to mention faster. AND it can be programmed on-calc if you send the right progs.

1115
Lua / Re: Nspire Basic
« on: December 30, 2011, 12:07:18 am »
No menus on the nspire
XXX->Varname (up to 16 chars IIRC) and that can be literally anything from matrices to strings to ints to floats
no way to display pics directly. Plotting points can be a method that takes forever. Also, there's no output command.

The best way I've found to do any sort of proper display method was the text box, or regular disp with matrices.

You should also become VERY familiar with the string commands:

Left()
Mid()
right()
str & str
instring()

See the nspire catalog for a syntax example. Left takes a number of chars starting from the left of a string and returns that substring. same goes for right. Mid is identical to the 84+ sub(). & is the equivalent of str+str in 84+ basic. Instring finds the position of one string inside of another, and returns a particular int (0 I think) if it doesn't find any. It gives the first one then stops, so multiples are undetected.

request and requeststr are the only ways of getting in-prog input, but there are also inline args when you run the program. ex. prog(a,b,c) where a b and c are vars of any type that become vars in your program.

Local var is a great way of avoiding variable collisions between progs, it makes it so a var doesn't affect a var by the same name outside the program. Example:

Out of program:
6->a

in program:
local a
"hello"->a
end program:

disp a
 - Returns 6

No way to exit PTT from basic :P that's one of the many uses for ndless. besides, you can't run basic progs from within PTT anyways, unless you make them on the spot.

I probably got one or two things wrong, but that's about as far as BASIC can go while remaining inside one program. If you're not afraid of using multiple programs

1116
Humour and Jokes / Re: If there was tech support in botswana...
« on: December 29, 2011, 11:56:20 pm »
Because society is too stupid to vote for people based on intelligence.

Why can't politicians leave well enough alone?

1117
General Calculator Help / Re: memory failure 84+
« on: December 29, 2011, 11:48:06 pm »
Axe syntax bugs can cause....interesting.....results. :P

1118
TI-Nspire / Re: GBA emulator for nspire?
« on: December 29, 2011, 11:33:11 pm »
I wasn't trying to make a point on nspire capability of emulating the GBA. Calc84 would be a far superior source for that than me. I was just saying that the DS, while capable of SNES emulation, is not capable of true GBA emulation as we've seen thus far. Heck, it might even be capable of a TI-Boy style emulation, although no one has tried.

1119
TI-Nspire / Re: GBA emulator for nspire?
« on: December 29, 2011, 03:41:06 pm »
That's not technically true, since the GBA screen is limited to 32,768 colors. The Hardware is theoretically capable of addressing more, but the screen isn't, so the GBA is limited to the same overall color pallete as the SNES, with the exception of the pallete limitation.

1120
TI-Nspire / Re: GBA emulator for nspire?
« on: December 29, 2011, 02:52:59 pm »
The graphics are very similar looking, but the hardware is different as are the capabilities. For one thing, the SNES and GBA have the same color range (65535 colors IIRC) but the SNES can only use a 256-color pallete at any time, a choice from that color range, where the GBA can use them all simultaneously.

Also, GBA emulation is not really possible on the DS without certain allowances. Note that the only GBA games run on the DS not to use extra hardware (google DSTWO flash cart) were actual games run through Slot 2. This is because it runs the actual GBA hardware inside, making the job significantly easier. The DSTWO adds a 500mhz cpu contained in the cart which helps even more. The DS can't really emulate the GBA by itself, as far as I've seen. The hardware isn't up to snuff.

Note that accessing the GBA hardware is (supposedly, I'm not going to stick my neck out here in case someone came up with new stuff) technically incapable of running the GBA hardware form from the DS card slot, which would be more akin to emulation.

1121
The Axe Parser Project / Re: Bug Reports
« on: December 29, 2011, 02:47:23 pm »
I don't think it would have very much leeway in affecting other things, since it's just reading from the wrong spot to print stuff on screen. Worst case scenario: You accidentally Print an unreadable char and something happens (do those even exist in TI-ASCII?)

1122
Humour and Jokes / Re: If there was tech support in botswana...
« on: December 29, 2011, 01:06:59 pm »
Because that's exactly what it is.

Why doesn't the Gnome 3 dev team see all the pain they put me through?

1123
TI-Nspire / Re: TI-Nspire GB Emulator
« on: December 29, 2011, 01:02:54 pm »
Nice job! There really isn't a better solution than running at exactly the right speed, now is there? :P

1124
Humour and Jokes / Re: If there was tech support in botswana...
« on: December 29, 2011, 08:47:26 am »
tell him to post about it in hot dog's Doom effec thread

1125
Other Calculators / Re: A new different 3.0.2 Nspire OS
« on: December 29, 2011, 08:36:29 am »
Have you noticed any differences yet, such as ndless being blocked or something like?

Pages: 1 ... 73 74 [75] 76 77 ... 208