[Tutorial] The Independant Java Tutorial

A forum where you can announce your awesome project(s).

Moderator: MaxCoderz Staff

koolmansam375
Extreme Poster
Posts: 479
Joined: Fri 17 Dec, 2004 11:09 pm
Contact:

Post by koolmansam375 »

I use Eclipse as my Java IDE but whatever :-/ . Netbeans is also a good one (a little bloated tho).

Id really like to learn GUI programming (our school will do that next year) and the tuts on the Java website are... not good at helping me understand how they work :x
Image

Pongwars shall live!

blog is down atm. :-(
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

I'll get to that later... I was stuck on GUI programming as well! :) Thanks tr1p for the everlasting support!
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

the "/p" in "dir /p" is called a flag, right?
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
User avatar
tr1p1ea
Maxcoderz Staff
Posts: 4141
Joined: Thu 16 Dec, 2004 10:06 pm
Location: I cant seem to get out of this cryogenic chamber!
Contact:

Post by tr1p1ea »

Yeah, flag, parameter, option ... any should be ok :).
"My world is Black & White. But if I blink fast enough, I see it in Grayscale."
Image
Image
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

how does the Command Line Compiling tutorial look so far?
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
Duck
Sir Posts-A-Lot
Posts: 231
Joined: Sat 18 Dec, 2004 3:38 am

Post by Duck »

Nice initiative.

My (university) professors' tutorial is also freely downloadable. I think its pretty good if you're an absolute beginner in programming. Its the first course we get at uni.

Dutch version (PDF):
http://www.cs.uu.nl/docs/vakken/imp/diktaat/imp.pdf

English version (DOC):
http://www.cs.uu.nl/docs/vakken/imp/diktaat/sci2003.doc
Last edited by Duck on Mon 09 May, 2005 7:36 pm, edited 1 time in total.
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

well, I've gotta finish the basics in order to graduate!
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
User avatar
dysfunction
Calc Master
Posts: 1454
Joined: Wed 22 Dec, 2004 3:07 am
Location: Through the Aura

Post by dysfunction »

Hmm, once I finish my Java class I might use this to continue with my Java study, though I think I'll spend more time developing my C++ skills.
Image


"You're very clever, young man, but it's turtles all the way down!"
User avatar
benryves
Maxcoderz Staff
Posts: 3087
Joined: Thu 16 Dec, 2004 10:06 pm
Location: Croydon, England
Contact:

Post by benryves »

Patori wrote:the "/p" in "dir /p" is called a flag, right?
"Switch" is generally accepted term.
CoBB
MCF Legend
Posts: 1601
Joined: Mon 20 Dec, 2004 8:45 am
Location: Budapest, Absurdistan
Contact:

Post by CoBB »

Patori wrote:how does the Command Line Compiling tutorial look so far?
I don't think it's a good idea to include a whole DOS crash course in a Java tutorial, it's beside the point; you should just link to a good one. It is more important to talk about the Java specific issues. Command line compilation doesn't necessitate using an actual command prompt anyway, since everything could go into a batch file.
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

I know... I got aggravated writing it... I wanted to get on with explaining the structure of a Java program.... and then variables....
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

*bump*

tutorial 2 finished.
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
User avatar
Timendus
Calc King
Posts: 1729
Joined: Sun 23 Jan, 2005 12:37 am
Location: Netherlands
Contact:

Post by Timendus »

CoBB wrote:
benryves wrote:It looks fine in Lynx too.
I'm a w3m person, but whatever. :)
If I'm not mistaken, w3m requires a graphical environment, and Lynx only a command line...
Anyway, I just use Firefox :)
http://clap.timendus.com/ - The Calculator Link Alternative Protocol
http://api.timendus.com/ - Make your life easier, leave the coding to the API
http://vera.timendus.com/ - The calc lover's OS
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

me too.... so what do you guys think about tut 2?
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
CoBB
MCF Legend
Posts: 1601
Joined: Mon 20 Dec, 2004 8:45 am
Location: Budapest, Absurdistan
Contact:

Post by CoBB »

Timendus wrote:If I'm not mistaken, w3m requires a graphical environment, and Lynx only a command line...
Why? It's a console/filter program.

Patori: you'll still need to better distribute verbosity; some things are not explained, some seem to be overtalked (like the part about commenting). You don't say anything about 'static', 'void', 'System' or 'out', and also you should provide a definition of OOP that explains the basic idea in a sentence or two besides linking to a long article. Classes are not objects: objects are instances of classes; classes are more like types, although there is some mingling. Import doesn't 'include' packages, it just brings in the public interface of the package in the current namespace, so you don't need to qualify the identifiers every time you use them (except when they are ambiguous).
Post Reply