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 ... 15 16 [17] 18 19 ... 46
241
Lua / Re: Add function to the gc class
« on: May 13, 2013, 02:33:01 am »
Just read throught this, very usefule :) Though shouldn't
Code: [Select]
function on.paint(gc)
        drawRoundRect(gc, 100, 50, 20, 15, 5)
        ...
end
in the second code block be
Code: [Select]
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 :P )

242
Introduce Yourself! / Re: Im leo
« on: May 13, 2013, 02:14:42 am »
Welcome here , have some more peanuts :P
!peanuts

243
News / Re: Discover the Casio ClassPad Ⅱ (fx-CP400) software
« 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
OmnomIRC Development / Re: OmnomIRC changelog and suggestions
« on: May 11, 2013, 05:43:07 am »
I like 'em, they look shiny :3

245
Computer Programming / Eric4 IDE
« 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
Miscellaneous / Re: Achievement ! Get featured by TI :D
« on: May 07, 2013, 03:24:46 pm »
Wow that's epic :D Also why did you change the topic title XD

247
Computer Programming / Re: Some Java questions
« 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:
Code: [Select]

/**
*  @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:
Code: [Select]
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
Gaming Discussion / Re: Your best video game pickups.
« on: May 06, 2013, 12:28:06 pm »
Battletoads for the NES.
Woohoo that game is epic (though hard) :D
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
Computer Programming / Re: General Java Questions
« 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 :P

250
TI-Nspire / Re: nFalldown for NSpire
« 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 :P

251
General Calculator Help / Re: TI Nspire CX CAS Questions?
« 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
Humour and Jokes / Re: Weird/funny pictures thread
« on: April 28, 2013, 02:48:55 pm »
So we came up with this in the chat :P

253
Web Programming and Design / Re: Alignment problem.
« 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
Web Programming and Design / [Solved]Alignment problem.
« 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/astro

Edit: this is fixed now, I left out the float: left part and added <br style="clear: both;"/> below the div of the menubar.

255
News / Re: Blow nethams in Bomberman Rush!
« 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