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 ... 42 43 [44] 45 46
646
News / Re: Game Boy Advance emulation reaches TI-Nspire CX
« on: August 05, 2012, 08:08:40 am »
Quote
P.S. Does anyone have an english version of the guide to safely search for overclock frequencies with nover?
Basically:
* do not change the AHB frequency from the default of 66 MHz, otherwise you're likely to face data corruption;
* as some calculators fail to run in a stable manner at a CPU frequency of 222 MHz, you should not overclock past 210 MHz, probably even 200 MHz (10% margin from known instability).
I think CPU speeds don't need as much caution, because typically you get an instant reboot if it's too high. If you're at the speed level directly below instant reboot, you might occasionally get a random reboot in some programs (maybe due to certain CPU instructions being used). For example, I ran at 246MHz for 17 hours straight in gbc4nspire, but 246MHz occasionally crashes in gpSP-Nspire. 240MHz has never caused problems in any program for me.

Ok, thanks for the tips. But for now I think I'll first see how it runs without overclocking, just to be safe :)

647
News / Re: Game Boy Advance emulation reaches TI-Nspire CX
« on: August 04, 2012, 11:37:49 am »
This is awesome! More time going to waste with all my favorite games with me on my calc :P Guess the time has come to reinstall ndless again :D

P.S. Does anyone have an english version of the guide to safely search for overclock frequencies with nover? My french is not what it used to be :/

648
News / Re: Secret Nspire OS popups!
« on: June 25, 2012, 10:32:50 am »
This looks amazing! Nice work. I wish I could do these things.  :-\

649
News / Re: Unreal Tournament on the TI-Nspire?
« on: June 25, 2012, 08:21:18 am »
This is awesome  :thumbsup:. Does this mean serious gaming is getting closer and closer or am I wrong?  :w00t:

650
Lua / Re: [Contest] Osmos
« on: June 11, 2012, 10:12:35 am »
This is just awesome :D I love Osmos, great game. I can't wait till this gets released.

651
News / Re: TI-Nspire OS 3.2 is out!
« on: June 11, 2012, 08:55:48 am »
Has anyone else noticed the dramatic decrease in speed in the notes app and TI-BASIC (and probable some other places too)? It's unbearable. Loops, for example, are very slow with printing results to the screen, really annoying since I was developing something that does that a lot. I read that the slowness in the notes app is caused by bad XML, it's a tree with a leaf for every word O.O (and a word has a lot of params). I think I'll return to OS 3.1 again for now...

This loop finished in +/- 20 sec on OS 3.1 and in approx 2 min. ( :o) on OS 3.2
Code: [Select]
Local i
For i,1,100
Disp i," ",(i^2)-1
EndFor


grilled : https://groups.google.com/forum/?fromgroups#!topic/tinspire/_mB8zLLoCLg

I said I read it somewhere.  I'm not claiming I discovered it, I read it, ran the example on my calc and decided to post it, and then forgot where I read it. So if it seems like I claim it as my discovery, sorry for that :), I was just pointing to it.

652
Introduce Yourself! / Re: Introduce my self xd
« on: June 11, 2012, 05:16:52 am »
Welcome :D and have even moar :P
!peanuts


653
Computer Programming / Re: JList Index
« on: June 11, 2012, 04:56:05 am »
Thanks, that example helped me. It now works fine.

654
News / Re: TI-Nspire OS 3.2 is out!
« on: June 10, 2012, 07:48:14 am »
Has anyone else noticed the dramatic decrease in speed in the notes app and TI-BASIC (and probable some other places too)? It's unbearable. Loops, for example, are very slow with printing results to the screen, really annoying since I was developing something that does that a lot. I read that the slowness in the notes app is caused by bad XML, it's a tree with a leaf for every word O.O (and a word has a lot of params). I think I'll return to OS 3.1 again for now...

This loop finished in +/- 20 sec on OS 3.1 and in approx 2 min. ( :o) on OS 3.2
Code: [Select]
Local i
For i,1,100
Disp i," ",(i^2)-1
EndFor

655
Computer Programming / Re: JList Index
« on: June 09, 2012, 05:50:07 am »
I see. Could you help me? I just can't get it to work. When using 'this', it gives an error about 'this' being impossible to use in a static context and when I remove the static, it gives an error that no enclosing type is available. I don't see how to fix this. Is there something I'm missing?

656
News / Re: TI-Nspire OS 3.2 is out!
« on: June 08, 2012, 11:51:45 am »
Teacher software can be downloaded here: http://education.ti.com/calculators/downloads/US/Nspire-Update/Select-Software-Name fill in the form, and you can get it.

657
Computer Programming / JList Index
« on: June 08, 2012, 09:49:34 am »
I'm having some trouble with getting which index of the list is selected. The list (JList) is in a scrollpane, I added a ListSelectionListener and in the listener I gave it the task to return the selected index. But it always returns -1. The code is below. What am I doing wrong?

List:
Code: [Select]
DefaultListModel kubesN = new DefaultListModel();
Code: [Select]
final String kubes[] = { "Bedrock", "Water", "Dirt", "Grassy Dirt",
"Rock", "Wood", "Green Leaves", "Old Citronox", "Short Grass",
"Tall Grass", "Wood Rose", "Mushlite", "Stellar Sand",
"Creeping Vines", "Hanging Grass", "Cactus", "Citronox",
"ESCorp Box", "Cracked Rock", "HardRoq", "Pyrite",
"Cactus Root", "Cactus Flower", "Blue Mineral", "Blue Crystal",
"Copper", "Hangar Ceiling Lighting", "Copper Arrow",
"Bound Copper", "Copper Wire Mesh", "Hangar Lighting",
"Purple Leaves", "Pink Leaves", "Moon Earth",
"Grassy Moon Earth", "Moon Rock", "Moon Dust", "Lumen Rock",
"Dead Lumen Rock", "Lumen Rock Column", "Moon Water",
"Moon Rock Column", "Cracked Moon Rock", "Purple Stain",
"Pink Stain" };
java.util.Arrays.sort(kubes);
JList kube = new JList(kubes);
kube.setModel(kubesN);
ListListener listlistener = new ListListener();
kube.addListSelectionListener(listlistener);
for (int i = 0; i < kubes.length; i++)
kubesN.addElement(kubes[i]);
kube.setVisibleRowCount(5);
kube.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane kubeView = new JScrollPane(kube);

ListSelectionListener:
Code: [Select]
private static class ListListener implements ListSelectionListener{
public void valueChanged(ListSelectionEvent e){
if (!e.getValueIsAdjusting()){
int index = kube.getSelectedIndex();
System.out.println(index);
}
}
}
}

658
News / Re: TI-Nspire OS 3.2 is out!
« on: June 08, 2012, 07:13:07 am »
i'm testing the OS in the calculator, using tnoc and downgradefix, it can return to previous versions of the OS without problem,  the teacher software works perfectly and the new scriping tool looks great, now any one can open a tns file and create or edit the script with lua, also the scriping tool let you see in realtime what can your code do at the actual state of the programation
it's amazing
Now that we know one can go back to OS 3.1  :), does ndless still work (I assume it does, but just to be sure)? nvm, it does.
Well, I'm gonna upgrade too, mess around a bit and explore the new functions. Though I am a bit scared... :-\

659
TI-Nspire / Re: Jonius7 General Projects Topic
« on: April 13, 2012, 05:00:36 pm »
Just one question, would you be planning for a Basic or Lua version?
Well, first a basic version, because I don't know Lua very well (yet) :P

Also your Demo casino program looks nice, has there been any other progress on that?
No. Ever since I uploaded it, I just never got back to it.


Also I am creating a new website to house my TI-nspire progress:
http://www.tistadium.co.cc
Awesome! I'll check it right now.

P.S Could you give me some more info about what you had in mind for it to be?
P.P.S I might not start with it now because of my quite large project, so I don't know when I will. But it sounded really interesting to me and thought it would be a shame if it wouldn't be finished :)

660
can someone upload revenge (minecraft music video) in a .tns format?

Well, maybe I'm doing it wrong, but when I tried I got a really HUGE file. I'm looking into it atm.

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