TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: If I want to learn programming should I start with mobile or Web app?

2 pointsby jserna90almost 9 years ago
Hi HN,<p>I want to teach myself how to program and build a simple app but don&#x27;t know where to start. Should I build a mobile or Web app? Google is a bit overwhelming because it gives so many different options so I was wondering if someone can point me in the right direction?<p>Thank you

5 comments

grimgramalmost 9 years ago
I would start from the beginning using something like C. Get familiar with the fundamentals and how programs work before moving on to something higher level.<p>I always see people starting off with python, Java, or JavaScript, but I feel that if you do that you are missing some core concepts which will take you a long way. This knowledge you will gain by struggling with memory management in C will give you an appreciation when you finally decide to move on. It will also provide you with a foundation for deeper understanding when exploring how things work in these higher level languages.<p>It may be a pain, and an unpopular opinion, but I think it is the best way to learn the basics, and the basics are important.
brudgersalmost 9 years ago
Between mobile and the web, I&#x27;d recommend the web. In terms of learning programming however, I&#x27;d recommend starting in a language ecosystem where the community values teaching programming to new comers. In my opinion, Racket and Processing are good places to start learning to program:<p>Racket: <a href="https:&#x2F;&#x2F;docs.racket-lang.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;docs.racket-lang.org&#x2F;</a><p>Processing: <a href="https:&#x2F;&#x2F;processing.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;processing.org&#x2F;</a><p>Most web development tools and nearly all mobile development platform assume that the developer is a professional. The tools are complex. The documentation assumes significant familiarity with programming.<p>Good luck.
artellectualalmost 9 years ago
It depends on what to want to do. If you are learning because you want to get a job in the market I would suggest picking up web application development. Web application developers are in higher demand than mobile developers. This is based on me working with multiple web agencies and observing their hiring ratio. Usually it&#x27;s 4-5 Web App developer to 1 mobile developer. Another thing is good web developers are a rarity. Mobile developers have flooded the market.<p>There is more demand for Web App developers than Mobile Developers<p>But if you are starting a company and want to build your idea which is a mobile focused product I would suggest start with mobile, you will be able to execute on your idea faster.
评论 #12100467 未加载
a3nalmost 9 years ago
&gt; I want to teach myself how to program<p>Great!<p>&gt; Should I build a mobile or Web app?<p>As artellectual says, it depends on what you want to do, between those two.<p>But there are many more types of software beyond web or mobile apps. You could write personal programs that run locally, for your own use (and which are a good way to learn, since you&#x27;re scratching your own itch). There&#x27;s math, science, embedded, financial, etc. Any of these might be standalone programs, or they might run on a web server with a browser front end. You might program on the front or the backend.<p>If you want to learn &quot;to program,&quot; here are a few resources:<p><a href="https:&#x2F;&#x2F;docs.python.org&#x2F;2&#x2F;tutorial&#x2F;" rel="nofollow">https:&#x2F;&#x2F;docs.python.org&#x2F;2&#x2F;tutorial&#x2F;</a><p><a href="https:&#x2F;&#x2F;www.ruby-lang.org&#x2F;en&#x2F;documentation&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.ruby-lang.org&#x2F;en&#x2F;documentation&#x2F;</a><p><a href="http:&#x2F;&#x2F;docs.oracle.com&#x2F;javase&#x2F;tutorial&#x2F;" rel="nofollow">http:&#x2F;&#x2F;docs.oracle.com&#x2F;javase&#x2F;tutorial&#x2F;</a><p><a href="http:&#x2F;&#x2F;racket-lang.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;racket-lang.org&#x2F;</a><p><a href="http:&#x2F;&#x2F;docs.racket-lang.org&#x2F;htdp-langs&#x2F;index.html" rel="nofollow">http:&#x2F;&#x2F;docs.racket-lang.org&#x2F;htdp-langs&#x2F;index.html</a><p><a href="https:&#x2F;&#x2F;duckduckgo.com&#x2F;?t=lm&amp;q=learn+c+programming&amp;ia=web" rel="nofollow">https:&#x2F;&#x2F;duckduckgo.com&#x2F;?t=lm&amp;q=learn+c+programming&amp;ia=web</a><p><a href="https:&#x2F;&#x2F;www.khanacademy.org&#x2F;computing&#x2F;computer-programming" rel="nofollow">https:&#x2F;&#x2F;www.khanacademy.org&#x2F;computing&#x2F;computer-programming</a><p>More broadly:<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Computer_programming" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Computer_programming</a><p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Outline_of_computer_programming" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Outline_of_computer_programmin...</a><p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Portal:Computer_programming" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Portal:Computer_programming</a>
blackflame7000almost 9 years ago
Neither, you should start on a desktop&#x2F;laptop learning a core language like C&#x2F;C++ before moving on to mobile.