TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Best way to teach yourself how to program?

14 点作者 cme大约 15 年前
I started a business around a simple web app. I outsourced the development as I am a non technical founder and have gone into this alone. I have always been fascinated with web startups and apps in general. I would like to try teaching myself how to program. I took a basic HTML class in college, but will need to refresh on this. But once I have HTML nailed down where do I go from there? Any websites, books, or other recommendations would be greatly appreciated.<p>Thanks!

8 条评论

seven大约 15 年前
To learn more about html and css, just download your favourite websites to your local filesystem, start to edit and watch the results. Try to get some basic concepts about programming. Those first hours are probably not very exciting, but are of great value later. Then you could start to learn more about web development by reading and modifying open source applications. Start with something simple like a guestbook. Then try to do something similar on your own. Best way to learn programming is to do it. Modify and watch the results. Have fun!
kd5bjo大约 15 年前
The best way to teach yourself how to program is to pick a program you'd like to write, and write it. It will be rough going, but it's important to learn not only the incantations, but also when each one is appropriate. There are plenty of sources for the former, but I haven't ever found a good tutorial (in any field) for the latter.<p>In your case, you will probably want to pick some small thing that you want to be different about the program you have, and then figure out how to make that happen.
th大约 15 年前
I would try to learn the client-side (the within-the-browser stuff) markup/styling/programming before jumping into the server-side programming. Understanding how browsers handle the HTML (markup), CSS (styling), and JavaScript (programming) takes time. I think it's much easier to learn and apply a server-side language (PHP, Perl, etc.) after you have a good understanding of the content the server-side language will be throwing at the browser to handle.
Magneus大约 15 年前
Use the academic resources that are available on the web.<p>MIT's OpenCourseWare has tons of content on there. I haven't used it for anything except SICP, but you should be able to find some relevant material: <a href="http://ocw.mit.edu/" rel="nofollow">http://ocw.mit.edu/</a><p>Google recently opened up Google Code University. They seem to have a lot of tutorials on there. <a href="http://code.google.com/edu" rel="nofollow">http://code.google.com/edu</a><p>Also, I found this professor's lectures pretty amusing: <a href="http://www.youtube.com/watch?v=hE7l6Adoiiw&#38;feature=PlayList&#38;p=6B940F08B9773B9F&#38;playnext_from=PL&#38;index=1" rel="nofollow">http://www.youtube.com/watch?v=hE7l6Adoiiw&#38;feature=PlayL...</a><p>There's tons more out there. Good luck!
markkoberlein大约 15 年前
If you are interested in learning Python I would go through the Writing your first Django app tutorial on <a href="http://docs.djangoproject.com/en/dev/intro/tutorial01/" rel="nofollow">http://docs.djangoproject.com/en/dev/intro/tutorial01/</a>
Thiscanbeit大约 15 年前
<a href="http://www.reddit.com/r/carlhprogramming/" rel="nofollow">http://www.reddit.com/r/carlhprogramming/</a><p>This was a good source for me. Good luck with it.
alastair大约 15 年前
I've found <a href="http://www.railstutorial.org/" rel="nofollow">http://www.railstutorial.org/</a> to be a great introduction to RoR.
cme大约 15 年前
Thanks for the help everyone!..I am looking forward to the challenge