The Grey Labyrinth is a collection of puzzles, riddles, mind games, paradoxes and other intellectually challenging diversions. Related topics: puzzle games, logic puzzles, lateral thinking puzzles, philosophy, mind benders, brain teasers, word problems, conundrums, 3d puzzles, spatial reasoning, intelligence tests, mathematical diversions, paradoxes, physics problems, reasoning, math, science.

   
The Grey Labyrinth Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups    RegisterRegister  
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

SK needs java help

 
Reply to topic    The Grey Labyrinth Forum Index -> Off-Topic
View previous topic :: View next topic  
Author Message
SaberKitty
one can always be hopeful...


PostPosted: Wed Jul 09, 2003 10:58 am    Post subject: 1 Reply with quote

i'm taking compsci and... well.. i'm kinda sucking at it. i have a mental block against using semicolons or something (well... that was what 30 out of 33 of my errors were last time )
yeah- so if you wanna be helpful and stuff i'd appreciate it- i'll have aim open when i get to class

(the teacher is nice and would help, only there's like 26 other kids who need help too- blah)

thanks sooooo much,
SK
Back to top
View user's profile Send private message Send e-mail
Dragon Phoenix
Judge Doom



PostPosted: Wed Jul 09, 2003 11:12 am    Post subject: 2 Reply with quote

Here, have a few:

;
;
;;
;
;;;
;;
;;;;;
;;
;
;

;
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Mackay
Saviour of Spiders



PostPosted: Wed Jul 09, 2003 12:20 pm    Post subject: 3 Reply with quote

I recommend the Whitlams. Best. Band. efvvver.
Back to top
View user's profile Send private message Send e-mail AIM Address
Dragon Phoenix
Judge Doom



PostPosted: Wed Jul 09, 2003 12:24 pm    Post subject: 4 Reply with quote

Sweet. She's doing a Soopy.
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Vinny
Promiscuous enough



PostPosted: Wed Jul 09, 2003 2:02 pm    Post subject: 5 Reply with quote

you know how to find me SK.

<--- comp sci major

Why the heck are they teaching Java in high school? Why aren't they teaching C++ or Pascal or something. Blah.

Or do you mean javascript?
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
extropalopakettle
No offense, but....



PostPosted: Wed Jul 09, 2003 5:39 pm    Post subject: 6 Reply with quote

How would C++, or Javascript, be more appropriate?
Back to top
View user's profile Send private message
Vinny
Promiscuous enough



PostPosted: Wed Jul 09, 2003 8:59 pm    Post subject: 7 Reply with quote

Java is a painful language to learn on.
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Digglu
Daedalian Member



PostPosted: Wed Jul 09, 2003 10:25 pm    Post subject: 8 Reply with quote

yeah but once you get the hang of it it's like the greatest thing ever

------------------
"You may not make sense, but at least you're enthusiastic about it"

Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
wordcross

<memstat>



PostPosted: Thu Jul 10, 2003 12:07 am    Post subject: 9 Reply with quote

I actually did a Pascal>C++>Java sort of progression. Pascal, imo, is a good language to start with for people who need practice with general syntax (i.e. semicolons). Nowadays most highschools start with C++ (My favorite language, but only because i'm better at it ). Java, i agree, is a painful way to be introduced to compsci.

I'll help where i can, if you need me and noone else is around who's better at it

------------------
If a person with multiple personalities threatens suicide, is that a hostage situation?
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger
Beartalon
'Party line' kind of guy



PostPosted: Thu Jul 10, 2003 12:13 am    Post subject: 10 Reply with quote

I'm here too if you want help, but I'm not on AIM that much.
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
SK
Guest



PostPosted: Thu Jul 10, 2003 2:41 am    Post subject: 11 Reply with quote

do any of you know how i can get to the gl if the school blocks pretty much any unknown site?
ive tried typing in the ip but it doesn't work for the gl- any ideas?
Back to top
MacadamiamaN
Intentionally left blank



PostPosted: Thu Jul 10, 2003 2:45 am    Post subject: 12 Reply with quote

I think Digglu showed me a thing on his site that was a kind of applet that let your browse the internet through the applet, while the URL that the tyrannical powers above are looking at remains the same.
Back to top
View user's profile Send private message Visit poster's website
Neo
Daedalian Member



PostPosted: Thu Jul 10, 2003 2:46 am    Post subject: 13 Reply with quote

When my school had the GL blocked, we figured a temp way around it. Go to an online translator, (we used babelfish) and translate www.greylabyrinth.com/forums from any language (we used German, since we could puzzle out some f'ed up words from that, Korean works well too) to English. The page appears in a frame, so you should be able to browse it freely. Some words are "translated" wierd, and sometimes it won't translate an entire page, and if I remember correctly, sometimes there were wierd cookie errors, but it was better than no GL.
Back to top
View user's profile Send private message
SK
Guest



PostPosted: Thu Jul 10, 2003 12:55 pm    Post subject: 14 Reply with quote

Yay! it works! is there a way to do it with graphics too? they're all xes.

-SK
Back to top
extropalopakettle
No offense, but....



PostPosted: Thu Jul 10, 2003 4:04 pm    Post subject: 15 Reply with quote

Quote:
Java is a painful language to learn on.


As compared to C++??? No, I don't think so.

First, there's the whole memory management issue in C and C++. Not an issue in Java.

Then there's the subtleties of multiple inheritance (not an issue in Java).

And constructors, destructors, copy constructors ...

Java is definitely a simpler language to work with than C++. If you want to write programs with nice interfaces that will run anywhere (anywhere that matters), then it's certainly better than C or C++ or anything else.
Back to top
View user's profile Send private message
wordcross

<memstat>



PostPosted: Thu Jul 10, 2003 4:53 pm    Post subject: 16 Reply with quote

but most students don't start learning that stuff until they've mastered the basics of syntax and function code. Beginner students jumping right into Java have to learn all about classes and object oriented programming before they can even write the simplest program. It's much easier just to write some functions and call them from Main, that way it's broken down into understandable bits.

Also, learning C++ requires (later in the course) a discussion on pointers and memory which will benefit any programmer, even though Java does away with pointers. Granted, Java is easier to use once you've learned it, but C++ is a more gradual learning experience, imo, and so is better for those who lack previous compsci knowledge.

------------------
If a person with multiple personalities threatens suicide, is that a hostage situation?
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger
Sparhawk
Daedalian Member



PostPosted: Thu Jul 10, 2003 5:47 pm    Post subject: 17 Reply with quote

What about Visual Basic? I think that is the best current starter language. It is easy to learn, has a great IDE, and doesn't have any semicolons!

The problem with C++ and Java is that to use them properly you need to understand OOP, which is not an easy concept to grasp.
Back to top
View user's profile Send private message Send e-mail
wordcross

<memstat>



PostPosted: Thu Jul 10, 2003 5:56 pm    Post subject: 18 Reply with quote

well, ideally, if a student wanted to take the time to go through levels and things, s/he could go basic>pascal>C++>Java or whatever, but realistically, since most schools start with C++ anymore, i think I would opt to use that as a beginner level course.

------------------
If a person with multiple personalities threatens suicide, is that a hostage situation?
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger
Digglu
Daedalian Member



PostPosted: Thu Jul 10, 2003 6:06 pm    Post subject: 19 Reply with quote

SK go to http://dons.usfca.edu/efende2/window.html it's sorta the same thing as babelfish, as in the page you want appears in a frame, and it should work the same, but a little easier

[edit]and in case you're wondering, the pages you go to within the frame will not appear in the history or the address bar[/edit]

------------------
"You may not make sense, but at least you're enthusiastic about it"



[This message has been edited by Digglu (edited 07-10-2003 02:09 PM).]
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Digglu
Daedalian Member



PostPosted: Thu Jul 10, 2003 7:05 pm    Post subject: 20 Reply with quote

oh something else that tends to work is emailing a link to the gl frontpage to yourself in hotmail or whatever, then opening it into the hotmail window frame, you should be able to browse normally through that too

------------------
"You may not make sense, but at least you're enthusiastic about it"

Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Neo
Daedalian Member



PostPosted: Thu Jul 10, 2003 7:11 pm    Post subject: 21 Reply with quote

SK, i don't think there is.

And that only works if your school isn't uber-stupid and blocks all the email sites like my school does.
Back to top
View user's profile Send private message
Sessie
Saucy Chica



PostPosted: Thu Jul 10, 2003 9:31 pm    Post subject: 22 Reply with quote

We started in Pascal and then went to C++, and I think next semester I'm getting into assembly, which Diggs has told me is...painful. Next semester, though, they're switching the introductory language from Pascal to Java.

...

I suddenly realized that this post has no point at all. I guess I just saw CS stuff going on and thought, "OOH!! I sort of know what they're talking about! Let me post! Yay!"
Back to top
View user's profile Send private message Send e-mail AIM Address
Digglu
Daedalian Member



PostPosted: Thu Jul 10, 2003 9:47 pm    Post subject: 23 Reply with quote

well it's not really "painful" but it's really annoying to debug (on the plus side though, it teaches you how to interpret hex values straight from the main memory ). that, and it takes 4 commands just to print something out...after a little bit though you get used to it because it does exactly what you tell it to do heh. yup. have fun with it

------------------
"You may not make sense, but at least you're enthusiastic about it"

Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Sessie
Saucy Chica



PostPosted: Thu Jul 10, 2003 9:54 pm    Post subject: 24 Reply with quote

Don't all of them do exactly what you tell them to do?
Back to top
View user's profile Send private message Send e-mail AIM Address
SK
Guest



PostPosted: Thu Jul 10, 2003 10:13 pm    Post subject: 25 Reply with quote

oh well, it doesn't really matter much any more- as of thismorning they have a login thingy for the internet and not just the computers- apparntly, while going from the school's homepage to babelfish to the gl, i accessed 147 inappropriate sites(who would have think it?)
2 of which were the gl (the home page and the forums).
the teacher didn't have a problem with it but we thought it was rather funny i was the top offender(the next person down the list was some kid that dowenloaded like 60 songs durning the course of the day)

anywho, we apparently can't use the internet anymore at all because any popup add deemed "innapropirate" sends us to the office- any download suspends us or something. and no more aim!
mucho blah!

-SK
Back to top
Neo
Daedalian Member



PostPosted: Thu Jul 10, 2003 10:16 pm    Post subject: 26 Reply with quote

SK, how'd you pull that off? Don't you type URL's like normal people?
Back to top
View user's profile Send private message
SK
Guest



PostPosted: Thu Jul 10, 2003 10:26 pm    Post subject: 27 Reply with quote

yeah- i think that there was some popup from babelfish or something and i dind't see it and it changed or something- otherwise, i have no idea wqhat happened
unless osmeone elase logged in as me (very possible)
meh, i don't care.

yesterday blackjack and nim, tomorrow wumpus world! (apparently we need to save the princess!- i'm very excited!)
Back to top
Digglu
Daedalian Member



PostPosted: Thu Jul 10, 2003 10:33 pm    Post subject: 28 Reply with quote

actually sessie what i mean by exactly is if you tell it to put stuff at a certain spot in memory, it will do that. with assembly you do a lot of low-level stuff you can't do in languages like java. java saves time by doing stuff for you but it's akin to saying "run to the nearest tree" as opposed to "lift your left leg, move it forward, plant it down, push off of it, etc". it's kinda fun to use when messing with your friend's computers remotely heh

------------------
"You may not make sense, but at least you're enthusiastic about it"

Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Sessie
Saucy Chica



PostPosted: Thu Jul 10, 2003 10:40 pm    Post subject: 29 Reply with quote

Yeah, I knew what you meant. You just reminded me of my CS I professor, whose favorite thing to say was, "Computers have a really bad habit of doing exactly what you tell them to do."
Back to top
View user's profile Send private message Send e-mail AIM Address
MacadamiamaN
Intentionally left blank



PostPosted: Fri Jul 11, 2003 12:08 am    Post subject: 30 Reply with quote

SK, your school is very tyrannical, is it public?
Back to top
View user's profile Send private message Visit poster's website
Digglu
Daedalian Member



PostPosted: Fri Jul 11, 2003 12:37 am    Post subject: 31 Reply with quote

hm if it were public i'd think it'd be less tyrannical, at least that's how things are here
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
SK
Guest



PostPosted: Fri Jul 11, 2003 12:49 am    Post subject: 32 Reply with quote

public- but it's because it's connected to the entire school system. I have to log in through my school, even though i'm taking cs at a diff hs. apparently last year, some kids downloaded a few viruses and they had to take the entire school system( elementary middle and HS) off the network while they removed it from every computer. since then, they've been internet nazis.
Back to top
Vinny
Promiscuous enough



PostPosted: Fri Jul 11, 2003 12:53 am    Post subject: 33 Reply with quote

~agrees with Wordcross

you can't just jump straight into OOP (that's Object Oriented Programming for SK) when you're a complete newbie to computer programming. Pascal is the best language to learn in imho. C++, Javascript, VB let's you become familiar with compiling and language interpretation concepts, subroutines and functions, i/o parameters, return value, etc, before slapping you with the concept of Objects, Methods, Inheritance, etc.

I don't know, maybe I am just being old fashion.
Back to top
View user's profile Send private message Send e-mail Visit poster's website AIM Address
Neo
Daedalian Member



PostPosted: Fri Jul 11, 2003 1:03 am    Post subject: 34 Reply with quote

SK, I'd vote on the somebody else logging in. I don't get any popups from babelfish.
Back to top
View user's profile Send private message
Beartalon
'Party line' kind of guy



PostPosted: Fri Jul 11, 2003 2:47 am    Post subject: 35 Reply with quote

It could have also been someone logging in before her. It only takes one doofus to open a pop-up, and they doofuses are popping up all over the place.
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
Beartalon
'Party line' kind of guy



PostPosted: Fri Jul 11, 2003 2:49 am    Post subject: 36 Reply with quote

And: I'd also say start with VB, or Pascal.

It will be hard though to find a current commerically viable language that isn't OOP. Microsoft is soon pulling the plug on what is now it's legacy stuff. I wish I had learned C++ along with Java and VB.
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
SK
Guest



PostPosted: Fri Jul 11, 2003 10:30 am    Post subject: 37 Reply with quote

java isn't bad- i mean it is intensive since summer school is from 7:50 until 2:20- so that's quite a lot of programming, but the language isnt' that hard- (although a also now keep forgetting the eyntax for arrays and have to go look it up in my notes)
i don't see the problem wiht learning java since the AP compsci test is in java.... (our teacher thinks we could probably cover the ap comsci stuff by the end of the course and then he'll teach us ai stuff(w00t!))
it's spiffy and not too hard- it's very much like solving puzzles

-SK
Back to top
Display posts from previous: by   
Reply to topic    The Grey Labyrinth Forum Index -> Off-Topic All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Site Design by Wx3