I'm interested in programming, but it seems to me that I can't get into it. Every time I've tried to learn a language and stuff by looking through tutorials or books I'd never get past the part where I use the syntax to make something. And by interest, I mean that I read stack overflow a lot, coding horror, and stuff but the actual coding part is hard for me to get into. Did anybody start this way? How did you get past this block?
|
3
|
|||||
|
|
|
I don't think programming is something you can learn from books, at least not at the beginning - I learnt by doing. Back in the days when floppy disks were 8", graphics were blocks on the screen, and BASIC was the only language available to me my school had a computer programming course, our head teacher taught it, but didn't really understand what he was teaching, and me, being a smart assed kid (who grew up into a smart assed adult), want to see what the 380Z could do. That caused my initial interest - but it wasn't until I wanted to write something for myself that I really started to learn. Myself and my best friend both had different computers, and we both wanted to prove we were better than the other, that was the driving force. So it was the desire to write something, anything, to prove we could that did it. We ended up writing text based adventure games, and I even got the listing printed in one of those "Type this in" magazines at the time. My point is reading constrains you to theory, you learn by doing and by making mistakes and in fact reading too much may constrain you. For example reading about "advanced" topics such as IoC, unit testing and so on aren't really topics for beginners, and frankly aren't that necessary when you start out because you need to have coded stuff and made mistakes and wondered about your code quality to appreciate them. So set yourself a little project. Catalogue your books, your CDs, your DVDs, or write a shopping list program, or a little game, something, anything that's useful to you. Make your mistakes, use reading to move you forward a little each time, until you have something that works, then start reading more to discover how you should do it "properly" as opposed to just making it work. Worked for me anyway. |
||||||||
|
|
|
I started here two years ago i was in high school then :) really good content it will help you get started |
||
|
|
|
|
Hi man, There is nothing call as impossible under the sun. Never feel that you cannot do... it's only practice, patience , hard working and never give up motto that counts at the end. Every one falls for the first time. Any person who are there in the StackOverflow or any author's book which you are reading didn't not attain the fame in just one day. Every body worked hard in sometime of their life, given the proper time for their growth, learned from others and kept on practising, so they are here. I have often heard many peoples says like "Java is easy or dot net is easy or C/C++ is tough". Tell me if any logical problem is given to you say to find the factorial of number and if you choose any language of your choice, will you not be able to get the correct output? So what I suggest is that, don't go behind learning more and more languages. Pick up any one of your choice,but focus more on your logic.Start from the beginning; from the very first chapter. Solve the problems. Start with basic and then go to solve for tougher. Try with varieties. This is the only thing that will be with you forever irrespective of whether the language is booming in the market or is a moribund one. Remember "Even Rome was not built in a day". Practice and practice until you succeed. Best of luck. (: |
||
|
|
|
|
In my opinion start with something very simple. |
||
|
|
|
|
I am also an unexperienced beginner, i think you should first try to solve funny problems, to build your knowledge, and then go on advanced problems. Go for it! |
||
|
|
|
|
If you're really new to this gig then I suggest you try Alice, and/or Greenfoot... They both enable you to "see results quickly"... whilste sneakilly and indelibly burning the fundamental concepts of ALL computer programming (assignment, sequence, selection, and iteration) into your thick scone... as well as some core OO concepts which will serve you well for the rest of your career. And most of all Have Fun! ... Find a problem which interests you, and is (you guess) within your capabilities (Hint: a YouTube knock-off might be a little over-optimisitic) and continue exploring it. Just for instance:
If you do something everyday that delights, engages. and challenges you then you'll likely live a fulfilling life ;-) Cheers. Keith. |
||
|
|
|
|
When you learn a language, try to learn it by using it while learning. For example, you can begin with a simple `Hello world!' program. Your first working program will make you happy. Keeping to the spirit, learn a bit more of the language (again, do-while-you-learn). Try to code simple programs such as generating even/odd numbers, prime numbers, sorting numbers, factorials, et cetera. Once you are comfortable with them, you may try to implement something that will be useful to you. |
||
|
|
|
|
|
||
|
|
As others have said, you want to start simple and work your way up. In that regard, I reccommend Lua. It has simple and easy to understand syntax, is quite flexible and fast, and has tons of libraries for everything from web development to game development! google "lua" or go to LuaForge. |
||
|
|
|
|
Please see: How do Programmers go about learning programming? How did you learn to be a programming guru? Learning Programming: Depth first or breadth first? I'm sure there are others... |
||
|
|
|
|
When you start programming, trying to take the first step of writing you own program can be difficult and overwhelming. The easier to start programming is to change existing code. Take example code of the tutorial and try to change it, maybe only one line, and see what happens. After you get more comfortable with changing the code, try to add something the program. |
||
|
|
|
|
find yourself a task instead of trying to read the books... something that would keep you interested... say 1st aim would be a hello world program. 2nd could be writing it a 1000nd time... set yourself a dead line and then meet it. also find your self an ultimate goal... mine was to design a chess engine that would eventually beat me... really helped me keep going :) Best of luck |
||||
|
|
|
I'd recommend finding a simple, real problem that you have and solving it. For example, write a simple script to solve your Sudoku puzzle or send an email if the load on your system reaches a certain threshold. Start small and always iterate your work when you're learning (keep cleaning it up, adding things if necessary, etc.). Most of all, have fun :) |
||||||||
|
|
|
As with any craft, it takes time to get used to. It maybe one day that everything just "click". Before that, everything may appear to be mysterious or hard to understand. Meanwhile, try doing some projects, like print out all numbers that are divisible by 3 from 1 to 1000. Or find all the prime numbers from 1 to 1000. Or draw dots so that they form a circle (you can use canvas tag on Firefox). Each simple thing can build up your confidence and your foundation for doing some more difficult next time. |
|||
|
|
