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

Pages: 1 ... 48 49 [50] 51 52 ... 424
736
Other Calculators / Re: T4x asm documentation
« on: July 24, 2011, 05:28:25 am »
Not yet, but if someone takes the time to work on that document and on the calculator ROM dumps (which can be extracted from the official emulators with my tool linked in the TI-Bank news), it might be the case soon.

Either way, this seems like some progress, as the TI-30 was always completely unprogrammable :)

737
The Axe Parser Project / Re: Axe Parser
« on: July 24, 2011, 05:28:01 am »
I am back to 0.5.3 (which works fine :) ) and I noticed that compiling is much, much faster. Were that many new features added to Axe 1?
Yes, and tons of new features were added, allowing variable names to be longer, forward referencing, a much, much higher variable limit, and other changes.  This translates to slower parsing, but it's more flexible this way. :D

I did not know we could have longer variable names, that's sweet!

738
Are you positive that you sent the two appvars to your calc, World1 and World2 (or World01 and World02 depending on the version you downloaded) and that they are in archive?

Archiving! Let me try that :)

739
If this is your first released game, though, i'm impressed! a question: why do the tiles disappear on the left side of the screen? did you redraw the screen every frame and just not make the tilemap wide enough?
1: yeah, it is
2: I didn't make the rendering area large enough, but that's fixed for Spacky 2 :)

I cannot play your game "SPACKYE", I just get "You melted" and random graphics whenever I press 2ND in the home screen. I have all the files included loaded and Crabcake too.

740
Other Calculators / Re: Make PTT not Delete Groups
« on: July 23, 2011, 06:09:56 am »
Very nice penguin! What an improvement to ti's OS.

741
News / Re: Prizm Video Player and Nspire OS 3.1
« on: July 22, 2011, 01:48:54 pm »
This is looking really good, nice job MPoupe!

And concerning the OS, I think it really is important that TI launches a new OS with fixed bugs...

742
Miscellaneous / Sort of away
« on: July 21, 2011, 03:43:37 am »
I've been sort of way for the last days. Don't worry, I'll be back on Saturday.

The Summer course that I got into to was unexpected :/


On Tuesday, I had a Python Competition, with 6 challenges, I solved 5 and got first place! Friday I'll tell you about the prize ;) Perhaps another Arduino?  O.O

743
This is great news. I remember when I had to downloado each of them somewhere and make a ZIP with all of them for you to download XD Now it's easier :)

744
News / Re: Five new Coders of Tomorrow hired
« on: July 21, 2011, 03:40:45 am »
5 new coders of tomorrow, sweet! :) They are all well-known around here and I congratulate them for their new position!

As leafiness0 said, don't forget to abuse use your powers well ;)

745
[DE] Off-Topic / Re: Problem mit Microsoft Office PowerPoint 2007
« on: July 17, 2011, 10:02:25 am »
Spoiler For For the english speaking Persons in the GERMAN-SPEAKING PART:

I've added a .avi - video into a Microsoft office Powerpoint 2007 - presentation.
But I'm not able to start the video.
Nothing happens if I press PLAY and START and so on.

How to start the video?

Ich habe in eine PowerPoint Präsentation ein .avi video eingefügt.
Aber Ich kann es irgendwie nicht abspielen.

Wie kann man videos abspielen?
Wenn ich auf VORSCHAU klicke, passiert nichts.
Bei Bildschirmpräsentatin auch nichts.

Doppel-Posting in Perioden geringer bis 6 Stunden ist gegen die Regeln, es sei denn, ob es ein Update für ein Projekt ist.

Double posting in periods inferior to 6 hours is against the rules, unless if it is an update to a project.

746
Miscellaneous / Re: I'm Leaving
« on: July 16, 2011, 11:51:43 am »
Ruler, :'( I really didn't expect that, we just had 2 parties because of you :( Good luck with your issues...

Y U HAZ TO GO!!! :'(

See you some day *sniff*

747
Computer Programming / Re: Setting the background of a JFrame
« on: July 16, 2011, 11:19:20 am »
Code: [Select]
import javax.swing.*;
import java.awt.*;

class jframtest {
        public static void main (String[] args) {
                JFrame myFrame = new JFrame();
                myFrame.setDefaultLookAndFeelDecorated(true);
                myFrame.setBackground(Color.BLACK);
                myFrame.setSize(400,400);
                myFrame.setVisible(true);
        }
}

I tried that and it didn't work either, so I investigated on it and found out:

The method "JFrame.setBackground()" has been deprecated on Swing.

In other words, everything about the JFrame relating to it being a container has been rendered void of use. Instead, you have to call javax.swing.JFrame.getContentPane() and use that container.

I tried this and it worked:

Code: [Select]
import javax.swing.*;
import java.awt.*;

class javaframetest {
        public static void main (String[] args) {
                JFrame myFrame = new JFrame();
                myFrame.setDefaultLookAndFeelDecorated(true);
                myFrame.getContentPane().setBackground(Color.BLACK);
                myFrame.setSize(400,400);
                myFrame.setVisible(true);
        }
}

748
The Axe Parser Project / Re: Invalid token?
« on: July 16, 2011, 08:13:28 am »
Invalid Token? Please upload 8XP Source it's easier to help that way :)

749
Official Contest / Axe Contest Judging
« on: July 16, 2011, 06:24:14 am »
Okay, so it turns out the judges download their program from the poll, and they don't get to see the actual email.  I'm sure most of us put info in the email, or said the project wasn't open source, so the zips in the poll didn't not contain those.
Spoiler For original post:
I'm one of the judges of the Axe contest and I'm quite disappointed with the way the entries were sent in.

From the 10 entries:
  • 4 of them don't say which Axe version I should use to compile source code
  • 1 of them doesn't say which is the main file to compile, but says which version I should use
  • 2 of them don't have the source
  • 2 of them don't compile due to errors

This entries won't get 0 of course, but I will talk with the other judges about how to judge those entries. For now, I just want to let you know that you should've followed the rules because we need:

  • Source
  • Axe Version we should use to compile
  • What is the main file

750
[DE] Off-Topic / Re: Rule translation \ Regel Übersetzung
« on: July 15, 2011, 04:55:40 pm »
Gute idee, danke!

Pages: 1 ... 48 49 [50] 51 52 ... 424