Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Coding for beginners

Options
  • 28-10-2012 7:14pm
    #1
    Registered Users Posts: 5,652 ✭✭✭


    I stayed away from a degree/career in computers because I never gave coding a real go. I thought that I'll never be as good as the experts so didn't bother going much further than basic HTML.

    I recently started learning Javascript on Codecademy.com and would recommend it to anyone looking a place to start.

    Are there any other resources aimed at beginners?
    What other language should I try and pick up?


Comments

  • Registered Users Posts: 5,246 ✭✭✭conor.hogan.2


    Udacity.com and Coursera.com and edx.com all have beginner level proper University level courses. All much better than codeacademy imo, as they actually teach you and don't ask you to mostly blindly change method calls etc to see what happens.

    Try one (or taste all and pick one) and see where you go from there.


  • Registered Users Posts: 5,652 ✭✭✭fasttalkerchat


    Udacity.com and Coursera.com and edx.com all have beginner level proper University level courses. All much better than codeacademy imo, as they actually teach you and don't ask you to mostly blindly change method calls etc to see what happens.

    Try one (or taste all and pick one) and see where you go from there.

    Thanks for that. I'm thinking to go for C++ next.
    What about Cisco? I've heard their hardware qualifications are good.


  • Registered Users Posts: 31 agricamera


    I stayed away from a degree/career in computers because I never gave coding a real go. I thought that I'll never be as good as the experts so didn't bother going much further than basic HTML.

    I recently started learning Javascript on Codecademy.com and would recommend it to anyone looking a place to start.

    Are there any other resources aimed at beginners?
    What other language should I try and pick up?

    I would start off by learning PHP

    You will be able to build a simple web application (register, log in, access controls to pages etc) in a matter of hours and you will very quickly be able to 'code' things.

    You'll learn much faster if you are actually trying to build something, rather than just following a course. Once you have figured out the basics, start building a web application, Google till your heart is content and register ac account on Stack Overflow for when you get really stuck :D


  • Registered Users Posts: 2,021 ✭✭✭ChRoMe


    Thanks for that. I'm thinking to go for C++ next.
    What about Cisco? I've heard their hardware qualifications are good.

    I'd strongly advise not going to C++ next, perhaps have a look at Java or C#.

    C++ is incredibly complex and unforgiving, its not for the faint of heart.


  • Registered Users Posts: 5,652 ✭✭✭fasttalkerchat


    Thanks for the advice everyone.

    Just out of interest, I saw some jobs are asking for knowledge in Java, C++ or C#. Its not necessary for the job but would be an advantage.
    What level would I need to be at before it would be worth mentioning.


  • Advertisement
  • Registered Users Posts: 2,021 ✭✭✭ChRoMe


    Thanks for the advice everyone.

    Just out of interest, I saw some jobs are asking for knowledge in Java, C++ or C#. Its not necessary for the job but would be an advantage.
    What level would I need to be at before it would be worth mentioning.

    When you can show some sort of a personal project, doesn't really matter what it does. Just so that you can demonstrate taking a requirement, build a solution and deploy it.


  • Registered Users Posts: 92 ✭✭jgh_


    Why is everybody scared of C++? :(


  • Registered Users Posts: 31 agricamera


    jgh_ wrote: »
    Why is everybody scared of C++? :(

    Because it is like trying to learn to run before you can walk and would put most people off coding for life if they tried to learn it as a first language with no prior experience :cool:


  • Registered Users Posts: 14,336 ✭✭✭✭jimmycrackcorm


    jgh_ wrote: »
    Why is everybody scared of C++? :(

    Various reasons but the biggest issue is having to manage memory to ensure you deallocate everything you use.


  • Registered Users Posts: 92 ✭✭jgh_


    Oh come on, we all learn to clean up after ourselves as children ;)

    I agree it's probably not a great starting point these days (though for whatever reason it was my 1st choice as a teenager), but it's not nearly as terrifying as people like to suggest.


  • Advertisement
  • Registered Users Posts: 2,021 ✭✭✭ChRoMe


    jgh_ wrote: »
    Oh come on, we all learn to clean up after ourselves as children ;)

    I agree it's probably not a great starting point these days (though for whatever reason it was my 1st choice as a teenager), but it's not nearly as terrifying as people like to suggest.

    Its not terrifying but its a bad choice for a lot of common development domains these days. Squeezing performance with pointers is only applicable in some very specific cases, and those cases are reducing everyday.

    Even just nonsense compiler errors and separate header files are enough to make me not want to develop in it tbh.


Advertisement