Page 4 of 6 FirstFirst ... 23456 LastLast
Results 46 to 60 of 87

Thread: Programmers

  1. #46
    Join Date
    24th January 2005 - 15:45
    Bike
    2022 Suzuki GSX250R
    Location
    Manawatu
    Posts
    2,209
    Quote Originally Posted by parsley
    I've been programming since I was 8, got a Masters in Software Engineering and been doing it professionally since 19 (ish).

    But at least I'm not a geek!
    Correct - you are an Ubergeek to whom we lesser geeks must bow...
    Motorbike Camping for the win!

  2. #47
    Join Date
    18th November 2004 - 11:00
    Bike
    big gay1 that I am not licenced to use
    Location
    Whangarei
    Posts
    2,545
    Quote Originally Posted by Jeremy
    Hey it's not my fault most people don't know that you have to do three things.

    1) Strip out the debug info, that switch is there for a reason.
    2) Switch the JVM to server mode. Watch as everything runs about 5x faster.
    3) Use strings properly, stringbuffers are there fora reason.
    dont even say java. dont even think of it - dont even imply its good I will hurt you and your ... "code"?


  3. #48
    Join Date
    24th January 2005 - 15:45
    Bike
    2022 Suzuki GSX250R
    Location
    Manawatu
    Posts
    2,209
    Quote Originally Posted by Warren
    But is it also possible to get a girlfriend?
    That is a gross generalisation! Green bling duly awarded.
    Motorbike Camping for the win!

  4. #49
    Join Date
    22nd April 2004 - 15:31
    Bike
    GSX-R600K3
    Location
    lower hutt
    Posts
    852
    Quote Originally Posted by Warren
    But is it also possible to get a girlfriend?
    Life is difficult because it is non-linear.

  5. #50
    Join Date
    18th November 2004 - 11:00
    Bike
    big gay1 that I am not licenced to use
    Location
    Whangarei
    Posts
    2,545
    Quote Originally Posted by dhunt
    bahayhhahahahahahahahaha


  6. #51
    Join Date
    3rd July 2005 - 22:03
    Bike
    2005 ZX6R
    Location
    New Zealandish
    Posts
    336
    Java IS THE BEST LANGUAGE TO LEARN FROM SCRATCH. Garbage Collection and a huge API mean its easy to program and to achieve your goals. It has a strong focus on good Object orientation with out many of the difficulties. Java also has one of best textbooks Headfirst Java or something. And all the software is free.

    Next would be Delphi, its pascal with Object oriented features.
    Excellent Developement enviroment. Its incredibly easy to make windows programs with. Just point and click then add specialised code. The environment is much easier to use than VB.

    STAY AWAY FROM VB its shite. Get delphi instead.

    C, C++ : The benefits of these languages are unusable without years of experience. I have spend years learning these and still find it redundant unless building games or commercial level applications. There reason for this is that external code is usually cumbersome for increased efficiency (DirectX , windows API).

    If you want to do web stuff you need php+sql.

  7. #52
    Join Date
    7th November 2004 - 11:00
    Bike
    Aquired by locals
    Location
    Groote Eylandt
    Posts
    6,606
    I am getting help from a good mate of mine who does alot of programming and is sorted by quite a few companies in CHCH. I wont tell you what I plan on learning because Im not going to jinx it
    To every man upon this earth
    Death cometh sooner or late
    And how can a man die better
    Than facing fearful odds
    For the ashes of his fathers
    And the temples of his Gods

  8. #53
    Join Date
    1st August 2004 - 16:19
    Bike
    nothing :(
    Location
    Auckland
    Posts
    2,128
    Quote Originally Posted by Sniper
    I am getting help from a good mate of mine who does alot of programming and is sorted by quite a few companies in CHCH. I wont tell you what I plan on learning because Im not going to jinx it
    If you need any help just let me know i might be able to help or google it
    Second is the fastest loser

    "It is better to have ridden & crashed than never to have ridden at all" by Bruce Bennett

    DB is the new Porridge. Cause most of the mods must be sucking his cock ..... Or his giving them some oral help? How else can you explain it?

  9. #54
    Join Date
    7th November 2004 - 11:00
    Bike
    Aquired by locals
    Location
    Groote Eylandt
    Posts
    6,606
    Thanks Enigma. I'll try google things first so I dont bother you with annoying things, but I'll PM you with anything harder
    To every man upon this earth
    Death cometh sooner or late
    And how can a man die better
    Than facing fearful odds
    For the ashes of his fathers
    And the temples of his Gods

  10. #55
    Join Date
    7th November 2004 - 11:00
    Bike
    Aquired by locals
    Location
    Groote Eylandt
    Posts
    6,606
    For those who are curious, Im learning C and then moving onto VB.net. Seems pretty strait forward. Thanks for all the help guys. Wolf, you especially mate!!
    To every man upon this earth
    Death cometh sooner or late
    And how can a man die better
    Than facing fearful odds
    For the ashes of his fathers
    And the temples of his Gods

  11. #56
    Join Date
    26th September 2004 - 11:51
    Bike
    '90 GSXR250 in black
    Location
    Dunnas
    Posts
    1,646
    VB is a sack of shit, it encourages bad coding such incorrect ending of statements, and you should check out www.howstuffworks.com for really good tutorials on just about any language

  12. #57
    Join Date
    29th December 2003 - 12:00
    Bike
    ..soon, soon..
    Location
    Paris
    Posts
    271
    Quote Originally Posted by Pathos
    Java IS THE BEST LANGUAGE TO LEARN FROM SCRATCH...
    ..Next would be Delphi, its pascal with Object oriented features.
    I learned Java at uni and thought it was the dog's until I started working and got into Delphi (i.e. Object Pascal). Delphi is a wonderful programming environment because it is very structured and extremely easy to read (a good programmer can make it almost read like regular english).

    For learning I'd recommend Delphi, but you'd have to find a way of getting the Delphi IDE (Integrated Development Environment). Plus, Borland (creators of Delphi) have been in a bit of a slump since MS headhunted their best and brightest to work on their .Net project... Work-wise, Delphi's not the best language to pick up.

    Java's got heaps of freebie IDEs out there, but it isn't as structured as Delphi, and hence you can end up becoming a sloppy coding due to it. Have the automatic garbage collection can be a real liability if you have to move over to a language that requires you to manage your memory usage. On the other hand, the syntax is quite similar to C and .Net, so the transition will be a bit easier.

    C/C++ exposes you to even more danger of becoming really sloppy with your code, so beware!

    I'd steer clear of web-programming until you get the fundamentals first, otherwise you might pick up bad habits again!
    Slob by name, not by nature..

  13. #58
    Join Date
    7th November 2004 - 11:00
    Bike
    Aquired by locals
    Location
    Groote Eylandt
    Posts
    6,606
    I have a copy on Delphi on disk. Guys, I dont think you understand. Im not using VB. Im using the newer, VB.Net that microsoft now use.
    To every man upon this earth
    Death cometh sooner or late
    And how can a man die better
    Than facing fearful odds
    For the ashes of his fathers
    And the temples of his Gods

  14. #59
    Join Date
    8th April 2005 - 23:14
    Bike
    Joe2 the ALMIGHTY
    Location
    Christchurch
    Posts
    1,520
    Quote Originally Posted by Sniper
    I am wanting to learn the basics of computer programming. I know my way around a computer quite well and I know a little bit about writing html. But could someone point me in the right direction on what language to use or some tutorials of programming please. Even if someone would be nice enough to maybe teach me a little
    PHP/mysql is the way to go, i have loads of shit to confuse you... I can put it on CD for you, for Saturday.

  15. #60
    Join Date
    7th November 2004 - 11:00
    Bike
    Aquired by locals
    Location
    Groote Eylandt
    Posts
    6,606
    Thanks, so have you managed to get a new front tyre?
    To every man upon this earth
    Death cometh sooner or late
    And how can a man die better
    Than facing fearful odds
    For the ashes of his fathers
    And the temples of his Gods

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •