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

Pages: 1 ... 122 123 [124] 125 126 ... 165
1846
Other / Re: How to stop itunes from deleting all of my apps???
« on: November 22, 2010, 05:53:48 pm »
I still have the backup files. Is there another program I can use to restore my ipod with?
Not that I know of.

1847
Other / Re: How to stop itunes from deleting all of my apps???
« on: November 22, 2010, 05:24:40 pm »
Code: [Select]
Installious
Wait, you've jailbroken it. Yeah, you might not be getting that backup.  Try the method I suggested, though.  It should work.

1848
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 22, 2010, 05:22:17 pm »
863: They now think you're crazy. Even crazier than before, when you were programming all class and somehow still managed to ace every test.
So basically what we all do. ;-)
865: You have only been a member since August 10,2010, and already have 752 posts.
866: You eagerly anticipate Axe/KOS by hounding Quigibo/SirCmpwn until they give demos. (Sorry guys :P)

1849
Other / Re: How to stop itunes from deleting all of my apps???
« on: November 22, 2010, 05:20:09 pm »
The questionable methods is probably your problem.  But yes, you can.  In the main menu of your ipod, around where the update button is, there should be a restore button.  You can restore to a previous backup that way.  I would like to know more about these "questionable methods" as this may cause that method not to work.

1850
Computer Programming / Re: Quick guide to Java?
« on: November 21, 2010, 10:32:28 pm »
Are there exceptions, though? I remember a year ago the Java applet for IRC on Omni website stopped working completly for many people. After a few java updates, it seemed to work fine, though.
Java doesn't work on everything.  It must have a JVM or Java Virtual Machine built inside to run the Java ByteCode.

1851
Computer Usage and Setup Help / Re: [good news] New card
« on: November 21, 2010, 10:31:33 pm »
I see.  Glad you are back and got it fixed!

* King Graphmastur welcomes back prince happybobjr.

1852
Oasis / Re: Oasis - cross platform z80 assembler
« on: November 21, 2010, 10:29:41 pm »
So, I just checked out the svn.  The makeFile doesn't build the binary, and the binary that is included with the svn cannot be executed.

This was test on Mac OS X 10.5.8, btw.

1853
Humour and Jokes / Re: What does hell look like?
« on: November 21, 2010, 10:16:52 pm »
Okay, isn't there like 10 xkcd threads just posting a random comic?  Just asking, because it seems like it.

1854
Computer Programming / Re: Quick guide to Java?
« on: November 21, 2010, 10:07:44 pm »
I guess maybe they absolutely want the team to code it in Java. Is it for some sort of java classroom and the teacher decided that it would be in java? That said, in the end, if what is produced is great, I think that's what counts the most, not how it was made. Back in 2004 I remember cases where TI-83+ BASIC games were put down by elitist ASM fanboys just because they were written in BASIC, even if the ASM counterparts weren't even as great (except for speed).
True.  In this case, it's basically ease of coding vs. speed requirements.  I program in Java all the time, but usually won't release something in it unless it can afford to be slow, or doesn't do labor intensive things.

1855
Site Feedback and Questions / Re: 50
« on: November 21, 2010, 05:55:00 pm »
Yeah, 50 is fine.  If that is what it is now, that is.  I currently like how it is.

1856
Computer Programming / Re: Quick guide to Java?
« on: November 21, 2010, 03:54:08 pm »
0] Java in a nutshell. (http://oreilly.com/)
1] Let's see.  There are a few things.  One is the Object Oriented nature of Java.  That isn't that hard to get used to, though.  Another thing is how everything is structured.  It's not really complicated and explained in said book.
2] Not going to explain classes as it's in that book.  As for the others:
* Private refers to a method or class that cannot be really accessed.  For example, a private method cannot be called outside that class.  Mostly used for internal class stuff.
* Public refers to a method that can be called inside the class, inside the package and outside the package.
* Protected refers to stuff that can only be called inside the package, but not outside.
* Static is slightly complicated, as it requires knowledge of something you don't already know, so here we go.  Say I have a class called MyClass.  Say all MyClass did was store a number.  Not really class worthy as there are "native" things like int to take care of that (Although there is the Integer class, but that's beside the point right now), but nevertheless, let's try it.  So, the "constructer" of MyClass takes one argument.  It can have more than one constructer, btw.  So anyway, to create an "instance" of the class, I do this:
Code: [Select]
MyClass variableName = new MyClass(5);
Which creates a variable called variableName which is an instance of the class MyClass.  Now then, any method not declared static applies to the object itself.  So, the static method variableName.toString() would really be MyClass.toString().  In other words, static references the class, whereas no static references the object.

Final words: Just read the book. ;-)

1857
Site Feedback and Questions / Re: 'Oscars'-like Awards
« on: November 21, 2010, 03:25:09 pm »
I don't like it.  I see no point in doing something like this.  I really don't like the POTY awards, though, either.  The way I see it, a feature is nice, but to say one program is considered better than the others should only be done as a competition.  I'm usually a very competitive person, but I see no point if my name is up to be helpful or not.  Sure, it might make people more helpful, but at what price? I could become the most helpful person in the world, giving pointless posts just to sound helpful and try and win the award.

Basically, the way I think about it, is that rewarding a great program is one thing, because it is a great program.  But when you say one program or person is better/more helpful than another, it causes many repercussions.  I think it would be great to win a POTY.  But that should not be my goal, and I think that people might make the "helpful award" their goal.  Just my two cents, though.

1858
OTcalc / Re: [OTZ80] Poll results! (Hardware)
« on: November 19, 2010, 11:48:55 pm »
Yeah, as alberthrocks said, this isn't dead. I'll look into microUSB, though.

1859
KnightOS / Re: KnightOS
« on: November 18, 2010, 09:57:31 pm »
I also have crash alerts, where it will apologize to the user for crashing and try to recover the previous state.
*jaw drops*  Awesome!!!  "Sorry, your calculator just crashed.  Trying to recover..." That would be nice.  Does it ask to recover?  How does it recover?

1860
KnightOS / Re: KnightOS
« on: November 17, 2010, 10:28:23 pm »
Hmm, is there a way to detect if a BSoD byte is sent? If it is, maybe KOS could cancel it as soon as it's detected...
Not really.  BSOD occurs when the screen is put into test mode.  This would require knowing what bytes were written to the port, which, IIRC, isn't possible.  I think that it could correct it, but it would wast time and space.

Pages: 1 ... 122 123 [124] 125 126 ... 165