How long will it take?and any tips?

Discussion in 'Web Programming' started by ClickMe, Apr 21, 2013.

How long will it take?and any tips?
  1. Unread #1 - Apr 21, 2013 at 11:17 AM
  2. ClickMe
    Joined:
    Feb 18, 2013
    Posts:
    73
    Referrals:
    0
    Sythe Gold:
    0

    ClickMe Member

    How long will it take?and any tips?

    Okay so I started learning XHTML yesterday which I know is one of the bottom programming languages but I heard it is best to start off right at the bottom.

    Anyway I can remember quite a lot of the basic stuff but does anyone have any ideas of how I can remember all of the codes for things or does it just come from continual practice?

    Also how long should it take me to master xhtml and where should I progress after that?

    I was thinking maybe... XHTML--->Java Script--->C++ and then after that just seeing where coding takes me :).

    So yeah just any tips :). Btw if it is any help I am almost 15. Oh and also is the best free place to learn all this stuff on YouTube tutorials?
     
  3. Unread #2 - Apr 23, 2013 at 11:18 AM
  4. ClickMe
    Joined:
    Feb 18, 2013
    Posts:
    73
    Referrals:
    0
    Sythe Gold:
    0

    ClickMe Member

    How long will it take?and any tips?

    Bump!
     
  5. Unread #3 - Apr 25, 2013 at 12:55 PM
  6. Moes
    Joined:
    Sep 22, 2012
    Posts:
    3,872
    Referrals:
    9
    Sythe Gold:
    4
    Vouch Thread:
    Click Here
    Heidy Le Kingdoms Player <3 n4n0 Le Monkey In Memory of Jon Green eggs and spam Extreme Homosex MushyMuncher Potamus (2)
    Gohan has AIDS Lumpy Space Princess Pokémon Trainer Wait, do you not have an Archer rank?

    Moes Software engineer
    Retired Global Moderator You Shall Not Pass Dot Net Programmer

    How long will it take?and any tips?

    xhtml = extremely basic.
    i would recommend you to experiment with PHP after you understand xhtml.
    After PHP, Java might be an option.
    don't start c++ yet, learn the basics first.
     
  7. Unread #4 - Apr 25, 2013 at 6:58 PM
  8. yoloswag
    Joined:
    Feb 25, 2013
    Posts:
    9
    Referrals:
    0
    Sythe Gold:
    0

    yoloswag Newcomer

    How long will it take?and any tips?

    Learn C++ first, since php is almost exactly like php, also learn java after you learn C++ you'll be able to understand java and learn the langauge much faster after you learn a basic language such as C++.

    Some C++ topics you should research are, loops, variables, functions, structs, classes. I suggest that you don't use any advance libraries and work with arrays of chars instead of the string class. Simply because it will help you understand how pointer arithmetic works for later on. I can offer some lessons, as I'm taking classes at University at the moment, completely free if you're interested :) PM ME.
     
  9. Unread #5 - Apr 26, 2013 at 4:53 AM
  10. Moes
    Joined:
    Sep 22, 2012
    Posts:
    3,872
    Referrals:
    9
    Sythe Gold:
    4
    Vouch Thread:
    Click Here
    Heidy Le Kingdoms Player <3 n4n0 Le Monkey In Memory of Jon Green eggs and spam Extreme Homosex MushyMuncher Potamus (2)
    Gohan has AIDS Lumpy Space Princess Pokémon Trainer Wait, do you not have an Archer rank?

    Moes Software engineer
    Retired Global Moderator You Shall Not Pass Dot Net Programmer

    How long will it take?and any tips?

    fuck off. you don't even know what you are talking about.
     
  11. Unread #6 - Apr 26, 2013 at 3:09 PM
  12. Pottworth
    Joined:
    Nov 27, 2005
    Posts:
    83
    Referrals:
    0
    Sythe Gold:
    0

    Pottworth Member

    How long will it take?and any tips?

    HTML isn't programming; it's a mark-up language. If you want to build websites then I'd recommend focusing on PHP and JavaScript. However if you want to build software and applications, focus on an Object Orientated language like Java or C#. Personally, I started in Java (the majority of Universities start you on that).

    You'll find that once you learn the principles of one C-based programming language, the others aren't too hard to adjust to.
     
  13. Unread #7 - Apr 28, 2013 at 5:52 AM
  14. Natan
    Joined:
    Aug 2, 2009
    Posts:
    270
    Referrals:
    0
    Sythe Gold:
    0

    Natan Forum Addict
    Banned

    How long will it take?and any tips?

    There's no answer on your question, it's up to your motivation etc.

    Also if you're interested on web languages, then here's good order for you: Html -> Css -> Php -> Js.
     
  15. Unread #8 - May 5, 2013 at 9:25 PM
  16. Spyre
    Joined:
    Oct 24, 2007
    Posts:
    203
    Referrals:
    0
    Sythe Gold:
    0

    Spyre Active Member

    How long will it take?and any tips?

    Front-End Website Development
    This role in web development is responsible for the way things look - website architecture/UX, style, and making sure things work cross-browser.

    Languages used for front-end development:
    - HTML: HTML (including XHTML) is your standard markup language. This physically puts elements and objects in the DOM.
    - CSS: Cascading Style Sheets (CSS) style your elements. CSS is the "heavy lifter" on most websites regarding the style or look of the website.
    - Javascript: Javascript is used to provide interaction with the user. While JS used to be needed to create gradients, make interactive buttons, move things and have carousels (slides), CSS has taken over quite a bit of those responsibilities. Nowadays, JS is usually used for more advanced things such as modal windows, interactive management of elements and positioning, etc. Usually, vanilla Javascript is abandoned for a popular library, such as jQuery, Zepto, or MooTools.

    Back-End Website Development
    Back end development handles most of your server:database communication and is what powers applications, such as account management, form->database communication, etc.

    Languages commonly used for back-end development:
    - PHP: PHP was built to be a server language and is used simply to manage web applications. That's all it does - talks to a database and relays the information to the end user in whatever way it is formatted to.


    ---

    Other Scripting Languages
    Other languages include Python, Ruby, C++, and Java (note that Java and Javascript are not the same language). There are others, I'm sure, but these are the most popular ones that I, as a front end developer, know of.

    These "general scripting langauges" are used for a wide variety of things - not just the web. While they can and are used to build web apps, they are also used to build GUIs, desktop applications, programs, web servers, graphing libraries, etc.

    ---

    Resources
    I would first suggest that you sign up on http://www.codecademy.com - it is an entirely free way for a beginner to learn the basics of most of the languages used today. Some of the courses get into some really advanced things, too.

    As far as what to study... that's entirely up to you. Personally, I learned HTML>CSS>PHP>jQuery>Javascript>Python>Ruby>Rails. Most of what I learned earlier was self-taught; the plethora of online resources now available to you wasn't available back when I was first learning.

    After you've found a niche and discovered what you're comfortable with, I would suggest to subscribe to blogs, get involved with websites like CSS-Tricks and Smashing Magazine, join the Envato network, etc - knowledge is your friend, and there is always someone that knows more than you.

    Most importantly... Have fun!
     
  17. Unread #9 - May 7, 2013 at 12:52 AM
  18. Raid500
    Joined:
    Feb 11, 2007
    Posts:
    592
    Referrals:
    1
    Sythe Gold:
    0

    Raid500 Forum Addict

    How long will it take?and any tips?

    html, php, javascript and throw in css somewhere in there maybe after html. If you're primarily interested in web development then you should also learn the ins and outs of databases like mysql. If you're interested in programming in general I would do:
    Visual basic/C# (they're kind of intertwined), C++, java. Reason for this is because (imo) visual basic is pretty easy and C# is closely related (I'd do vb before c# tho) and then c++ since it is a little less complicated than java (again imo). C++ and java are somewhat related so learning one before the other makes the other easier.

    Good luck.
     
< Free Summer workshop for Students/ Job aspirants @ Aspirant academy | Magento Experts >

Users viewing this thread
1 guest


 
 
Adblock breaks this site