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 ... 15 16 [17] 18 19 ... 46
241
« on: May 13, 2013, 02:33:01 am »
Just read throught this, very usefule Though shouldn't function on.paint(gc) drawRoundRect(gc, 100, 50, 20, 15, 5) ... end in the second code block be gc:drawRoundRect(100, 50, 20, 15, 5) then? Because it doesn't seem any different to me (I may as well be wrong, I'm not that good yet )
242
« on: May 13, 2013, 02:14:42 am »
Welcome here , have some more peanuts
243
« on: May 12, 2013, 11:52:14 am »
That looks like one fancy calculator. Reminds me of that touch model of TI. Do we know anything about the hardware/capabilities of the physical calc already?
244
« on: May 11, 2013, 05:43:07 am »
I like 'em, they look shiny
245
« on: May 07, 2013, 03:57:59 pm »
I had eric set up on my windows pc, but lost it during a some maintenance. Now I'm trying to get it back, but I just don't know how anymore. Does anyone have a clear tutorial on what to do (like how to install sid, because there is no exe )? Because I'm pretty lost and confused now :'(
246
« on: May 07, 2013, 03:24:46 pm »
Wow that's epic Also why did you change the topic title
247
« on: May 07, 2013, 02:20:48 am »
Javadoc Javadoc is the documentation of stuff. You can provide a number of tags with it to give information about what it does. A sample could look like:
/** * @author ElementCoder * This class is an example. */ public class Example { /** * @author ElementCoder * @version 1.0 * @param par1 first parameter * @param par2 second parameter * Method description here. */ public void myMethod(int par1, String par2){} }
These are not all the tags you can use, there are more. If you're using Eclipse, the javadoc of a method (if there is any) will show up when hovering over the method. Otherwise it's usually exported along the api/lib in browse-able html format.
Autoboxing Autoboxing is when primitives are automatically converted to their respective Object form. Its counterpart is unboxing, converting an Object to its primitive. Small example:
ArrayList<Integer> myList = new ArrayList<Integer>(); myList.add(1); //Autoboxing myList.add(2); //Autoboxing int x = myList.get(0); //Unboxing
When storing in the list the ints 1 and 2 get converted to Integers automatically. The 4th line automatically converts the Integer to int. All primitives have an Object counterpart: int - Integer; boolean - Boolean; byte - Byte; char - Character; float - Float; double - Double; long - Long; short - Short Edit: added autoboxing.
248
« on: May 06, 2013, 12:28:06 pm »
Battletoads for the NES.
Woohoo that game is epic (though hard) A few weeks ago I also got Sonic 3D Blast and Sonic & Knuckles. That last one seems cool because you can put a Sonic 2 or 3 cartridge on top of it for extra goodies.
That sounds epic, pictures available?
249
« on: May 06, 2013, 02:26:28 am »
Great idea, I usually come across simple problems that I do not see worthy of their own topic You'll certainly hear from me when I get back to Java
250
« on: May 04, 2013, 06:02:18 am »
Actually there has been another falldown game for the nspire. Though it had the same bug with going through the platforms sometimes. On topic: looking good this'll help when I'm bored in class
251
« on: May 03, 2013, 01:02:43 pm »
The Student Software simulates the nspire thus allowing you to calculate, graph, make documents and more on your computer. A 1-year license for the software comes with the calculator IIRC.
252
« on: April 28, 2013, 02:48:55 pm »
So we came up with this in the chat
253
« on: April 28, 2013, 11:11:01 am »
That only changes the stack order of the elements, I need the placement to be different. When removing float it centers, but crawls behind the bar like and when doing float it goes below the bar correctly like but then it doesn't center. I need it to be like the last picture, but centered.
254
« on: April 28, 2013, 09:00:12 am »
I have a problem with the alignment of my elements. I want to have a centered area like on the omni homepage but without the side stuff. The problem i have is that it works fine if I turn off the float property, but then it slips behind the menu bar All code can be found here: https://github.com/ElementCoder/astroEdit: this is fixed now, I left out the float: left part and added <br style="clear: both;"/> below the div of the menubar.
255
« on: April 26, 2013, 02:10:40 am »
I'm fairly sure that is TINCS, without nover the texture mode is something like 7 FPS I think, but that might be a bit off. It's not as smooth as in the video.
Pages: 1 ... 15 16 [17] 18 19 ... 46
|