Java, The Ultimate Programming Language

A Member? Please Login  
type your username and password to login
Date: October 10, 2008, 08:37 PM
248532 members and 147332 Topics
Latest Member: quicksmart
Nairaland [Nigerian Forum] Home Help Search Who is currently online? Login Register
Nairaland Forum  |  Technology  |  Webmasters (Moderators: SAM MILLA, uspry1)  |  Java, The Ultimate Programming Language
Pages: (1) (2) Go Down Send this topic Notify of replies
Author Topic: Java, The Ultimate Programming Language  (Read 458 views)
Gamine (f)
Java, The Ultimate Programming Language
« on: March 25, 2008, 06:16 PM »

I'm at the point where i have to choose which language to completely
delve into.
Our lecturers keep drumming Java into our ears,
I have a choice betwn C++, Java, VB, PHP & attached web PL's

I need the advise of programming gurus.

What do i do? Undecided
smartsoft (m)
Re: Java, The Ultimate Programming Language
« #1 on: March 25, 2008, 06:24 PM »

it all boils down to what you want to do,  you say you like web right ? so, ? if you like software development choose  Java or .NET

but it all boils down to what and what you want to do.
my2cents (m)
Re: Java, The Ultimate Programming Language
« #2 on: March 25, 2008, 07:25 PM »

1) go for what is "hot" in your place of residence. Why? because you will get a job quicker.  In the realm of web dev in Naija, I would say that would be PHP

2) After that, like a kung-fu master, have a second side language, so that if #1 flops, you have back-up. I am thinking Java/JSP here.
Gamine (f)
Re: Java, The Ultimate Programming Language
« #3 on: March 25, 2008, 09:58 PM »

Yay!!

PHP. hmm I'm quite comfy with this one.

as for JAVA? Undecided not too sure ooh.

But hey men, thanks Wink
smartsoft (m)
Re: Java, The Ultimate Programming Language
« #4 on: March 26, 2008, 01:55 PM »

To me don't know about others  JAVA to me is pretty hard man ! i dread peeps who really do it well  i agree with my friend 2cent, not a enough peeps out there even uses JSP.
Gamine (f)
Re: Java, The Ultimate Programming Language
« #5 on: March 27, 2008, 12:35 PM »

aah!!! If you people think Java is hard!

i wonder wetin i go do now ooh!!!  ShockedEmbarrassed
RuuDie (m)
Re: Java, The Ultimate Programming Language
« #6 on: March 27, 2008, 01:39 PM »

If you're looking 4 one thats SIMPLE to learn. . . .  then I suggest VB would suit you just fine! But if you can just make up your mind 2 Java and you am learn well, well hmmmm. . . .  you go be hot cake oh!
Afam (m)
Re: Java, The Ultimate Programming Language
« #7 on: March 27, 2008, 02:03 PM »

The majority of web applications out there run on PHP and unless majority of the developers out there are just wrong then I suggest you stick to PHP.

As a matter of fact PHP can be adapted to the desktop not just the web.
RuuDie (m)
Re: Java, The Ultimate Programming Language
« #8 on: March 27, 2008, 02:08 PM »

@ Afam,

really interested in PHP but don't know how 2 get started. . . . .  got any clues?
RuuDie (m)
Re: Java, The Ultimate Programming Language
« #9 on: March 27, 2008, 03:36 PM »

Will PHP work with Win server IIS ?
Afam (m)
Re: Java, The Ultimate Programming Language
« #10 on: March 27, 2008, 04:18 PM »

Quote from: RuuDie on March 27, 2008, 02:08 PM
@ Afam,

really interested in PHP but don't know how 2 get started. . . . .  got any clues?

www.php.net is a good place to start. Will be boring no doubt but it will help in understanding what's up with the language. Don't force yourself to understand everything for now.

Looking at web applications and trying to figure out how you can replicate them will work like magic.

Remember, you cannot think programming without thinking in a logical manner.

If it cannot work in your head most likely it will not work when you write the code.

Quote from: RuuDie on March 27, 2008, 03:36 PM
Will PHP work with Win server IIS ?

Yes, it will.

Search for apache2triad and install on your windows platform and you will be good to go.
Gamine (f)
Re: Java, The Ultimate Programming Language
« #11 on: March 27, 2008, 10:24 PM »

Yeah thanks,

For my project i used PHP to build a GUI

with MySQL.

I guess i will stick with PHP Smiley

But Java. . . .   . Embarrassed
naijafan (m)
Re: Java, The Ultimate Programming Language
« #12 on: March 27, 2008, 11:04 PM »

PHP to build GUI Huh

bet u were referring to HTML Wink
Gamine (f)
Re: Java, The Ultimate Programming Language
« #13 on: March 28, 2008, 09:56 AM »

Yes , PHP to build a GUI
.
naijafan (m)
Re: Java, The Ultimate Programming Language
« #14 on: March 28, 2008, 11:15 AM »

Quote from: Gamine on March 28, 2008, 09:56 AM
Yes , PHP to build a GUI
.


don't mean to be rude, but scripting languages don't build GUIs.

They take care of the business logic and database interaction

Presentation (GUI) is done in HTML, Flash or Flex most of the time.

Sorry.
Dual Core
Re: Java, The Ultimate Programming Language
« #15 on: March 28, 2008, 11:57 AM »

Quote from: Gamine on March 25, 2008, 09:58 PM
Yay!!

PHP. hmm I'm quite comfy with this one.

as for JAVA? Undecided not too sure ooh.

But hey men, thanks Wink

php is a scripting lang
java is an object oriented (programming) lang.
both of them can't be compared Smiley

Quote from: Gamine on March 28, 2008, 09:56 AM
Yes , PHP to build a GUI
.


php deals with your back-end which includes database interactions, session management and the likes.

Quote from: smartsoft on March 26, 2008, 01:55 PM
To me don't know about others  JAVA to me is pretty hard man ! i dread peeps who really do it well  i agree with my friend 2cent, not a enough peeps out there even uses JSP.

bro if u say this of JAVA what would u say of C++ that lets u do things all by yourself, take for example the feature of gabage collection in java, doesn't it make work all together easy. i'll put my money on the java syntax over c++ syntax any day.

whats so hard in java, its all about getting and setting things, calling methods and importing packages.
a simple java class to tell u ma name could be

public class myId()
{
String id;
       public displayId()
             {
                  id =  "dual core";
                  System.out.println("my nairaland id is "+ id);
             }

public static void main(String [] args)
      {
              myId idObj = new myId();
              idObj.displayId();
      }
}

that's not hard to understand, make any c++ guy help map out the c++ equivalent of this, then u can compare.
we don't have to see any programing language as hard, though some have steep learning curves, when we got the determination, we can always do it.

Quote from: Gamine on March 27, 2008, 10:24 PM
Yeah thanks,

For my project i used PHP to build a GUI

with MySQL.

I guess i will stick with PHP Smiley

But Java. . . .   . Embarrassed
GUI = Graphical User Interface
the right thing to say would be that u used html embedded in php
php aint got nada to do with presentation logic.
naijafan (m)
Re: Java, The Ultimate Programming Language
« #16 on: March 28, 2008, 12:40 PM »

Quote from: Dual Core on March 28, 2008, 11:57 AM
GUI = Graphical User Interface
the right thing to say would be that u used html embedded in php
php aint got nada to do with presentation logic.

abeg help me tell Gamine o.

she's prolly confused because of the .php extension

@Gamine
the .php extension is to tell the webserver to process the PHP scripts in the file, as the webserver wouldnt be trying to figure that out all by itself.
mambenanje (m)
Re: Java, The Ultimate Programming Language
« #17 on: March 28, 2008, 07:22 PM »

why are some guys scaring others off Java.
 Java to me is a universal language and if you claim you are a software developer be it web or desktop or enterprise you should get your hands on java and you wont regret it.
 Knowing java will give you a wider understanding of modern day programming and after java you can take a week to learn php and code better Object Oriented php than the procedural stuffs most people do which is crapy. you can take another week to learn C# and start building some desktop applications like notepad Wink
 or another week to learn ruby on rails and build web apps like www.twitter.com within one week. or you can just improve your skills in java an start building things like gmail with google web toolkit and eclipse
 if you got the time and brains invest into java and you wont regret it.

So @ Poster I would advice you to use one bullet to shooot all programming languages and your best shot is java [IMHO]
 I learned java and now I code in C#, php, actionscript 1.0,2.0 3.0 , python, ruby on rails and a couple of others not to mention. because of java I leaned jquery (www.jquery.com) in one night. Java is about best practises and industry standards, so go in for that.
smartsoft (m)
Re: Java, The Ultimate Programming Language
« #18 on: March 28, 2008, 07:35 PM »

all those code, just to tell me your name when i can actually tell you, your name just like this

<?php
echo 'smartsoft';
?>

and run it through the browser and it will tell you my name straight
Dual Core
Re: Java, The Ultimate Programming Language
« #19 on: March 28, 2008, 09:49 PM »

@smartsoft
what in the two phrases "programming language" and "scripting language" do u not understand?  Duh?!
naijafan (m)
Re: Java, The Ultimate Programming Language
« #20 on: March 28, 2008, 09:51 PM »

Quote from: smartsoft on March 28, 2008, 07:35 PM
all those code, just to tell me your name when i can actually tell you, your name just like this

<?php
echo 'smartsoft';
?>

and run it through the browser and it will tell you my name straight

Dual Core was demostrating how easy it is to use initialize classes as objects and call functions in them. Hello?
Now, do just that in PHP  Wink
Gamine (f)
Re: Java, The Ultimate Programming Language
« #21 on: March 28, 2008, 11:37 PM »

Naijafan

Oga programmer,

As small fish wey no know wetin HTML be.Sorry ohh! Cheesy
 d database e no part of the GUI whether e dey back or front.


Dual core, thanks ooh

i should realy have stated, embedded in HTML
its all Good! Grin
naijafan (m)
Re: Java, The Ultimate Programming Language
« #22 on: March 29, 2008, 09:48 AM »

Quote from: Gamine on March 28, 2008, 11:37 PM
Naijafan

Oga programmer,

As small fish wey no know wetin HTML be.Sorry ohh! Cheesy
 d database e no part of the GUI whether e dey back or front.
  Huh

Gamine (f)
Re: Java, The Ultimate Programming Language
« #23 on: March 29, 2008, 02:39 PM »

LOL Cheesy
you know we have an understanding Wink

Back to the Ól board, PHP

but Java here i coooooooome!!!! Grin
webpro (m)
Re: Java, The Ultimate Programming Language
« #24 on: March 29, 2008, 02:56 PM »

what am i to say?
in2gold (m)
Re: Java, The Ultimate Programming Language
« #25 on: March 29, 2008, 03:43 PM »

@ first poster
I believe in java very much,php cannot be compared with java. they are 2 different things here.
java can be used in a variety of ways like animation,roll over image, making a file submit form etc.while php deals with html stuffs and is web related.
i will say in my own opinion try php first before java because for now php seem to be the bomb.
in2gold (m)
Re: Java, The Ultimate Programming Language
« #26 on: March 29, 2008, 03:50 PM »

you can visit  www.thesitewizard.com for more tips
smartsoft (m)
Re: Java, The Ultimate Programming Language
« #27 on: March 29, 2008, 07:31 PM »

in2gold  i think mean to say javascript not java huh ?
naijafan (m)
Re: Java, The Ultimate Programming Language
« #28 on: March 30, 2008, 03:08 AM »

Quote from: smartsoft on March 29, 2008, 07:31 PM
in2gold  i think mean to say javascript not java huh ?

and must have ended up misinforming the poor girl Embarrassed
onizzy
Re: Java, The Ultimate Programming Language
« #29 on: March 30, 2008, 03:31 AM »

guys!
u'all seem good wit this stuffz
I'm a computer sci grad n I'm ashamed 2 say i don't no much about d whole tin
i want to learn some stufz
so do any of u guys offer lessons or
know where i can go for hands-on practicals?
i reside in ph so it might be a longshot
hopin 2 hear some good news from someone though.
b good y'all
cheerzzz Grin
naijafan (m)
Re: Java, The Ultimate Programming Language
« #30 on: March 30, 2008, 11:16 AM »

Quote from: onizzy on March 30, 2008, 03:31 AM
I'm a computer sci grad n I'm ashamed 2 say i don't no much about d whole tin

don't be ashamed. 90% of my class werent into computers. But now bag a BSc in Computer Sciencewith good grades for that matter. Wink
While I ended up with somethn close to a third class Cry Lips sealed

Quote from: onizzy on March 30, 2008, 03:31 AM
i reside in ph so it might be a longshot
erm. . . erm. . . Dual Core might be of help in that case. He does Java and resides in PH.
RuuDie (m)
Re: Java, The Ultimate Programming Language
« #31 on: April 04, 2008, 03:46 PM »

@ Afam,

Please a li'l overview on Apache2triad, i'm sure you've used it. . . . . .  are you saying that with this apache thingy installed on my Windows, i ain't g'onna need 2 install MySQL seperately ?
The documentation i read on it bemuses me some. . . . . .
 Cms (content Management Systems)  Who Developed This Site  Online Payments From Nigeria  Page 2
Pages: (1) (2) Go Up Send Topic to Friend by E-mail Reply 
Google
 
Web www.nairaland.com
Sections: TV/Movies (2) Music/Radio (2) Celebrities Job Talk Jobs/Vacancies (2) Career Talk Romance Books Politics Sports Fashion Travel
Health Schooling Religion General(2) Business Webmaster Programming Computers Phones Cars & Trucks

Links: Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9 Page10

Nairaland is owned by Oluwaseun Osewa
Nairaland Forum | Powered by SMF 1.0.12.
© 2001-2005, Lewis Media. All Rights Reserved.