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: What projects can new programmers build to gain more confidence?

9 pointsby newsoulabout 2 years ago
We often hear that building small to moderate size projects make you more confident as a programmer than reading books or taking courses.<p>Suppose a newly minted programmer who has taken an introductory course on Programming and&#x2F;or Computer Science somewhere and knows the basic constructs of a programming language.<p>What projects can such a person build? Is there a list that is suitable for a beginner like that?

8 comments

mnshabout 2 years ago
I can talk about webdev part, dunno about other areas.<p>When I started, I built simple utilities with just HTML&#x2F;CSS &amp; JavaScript. When I had a solid understanding of these three, then I dove into frameworks and complex stuff.<p>Here are some ideas<p>- Calculator, could be command-line or in a website<p>- To-do app<p>- A pomodoro timer<p>- static webpage (with just HTML&#x2F;CSS), then learn about accessibility, responsive design, design system.<p>- REST API with node (e.g. Express js)<p>- Consume public APIs in JS frontend (or you can use React too)<p>- Building a full stack app with your CRUD API, can also add auth, image CDN etc<p>Basically, gradually raising the complexity with every project or within it by adding a new feature<p>I recently wrote about building projects as beginner (even more ideas here) : <a href="https:&#x2F;&#x2F;mnsh.me&#x2F;blog&#x2F;beginner-ideas" rel="nofollow">https:&#x2F;&#x2F;mnsh.me&#x2F;blog&#x2F;beginner-ideas</a><p>Good luck!
kbranniganabout 2 years ago
CRUD todo that increases in complexity.<p>- Jquery TODO List to learn about the DOM, basic logic and CSS and HTML structure.<p>- JS Todo list with data saved in browser storage<p>- PHP todo list with data saved in a file or database - PHP todo list serving JSON that talks to a front-end client.<p>IF you can make this you will be great.<p>Do not listen to anyone telling you PHP is this PHP is that.<p>It&#x27;s built for the web. It has the most mature tooling for web development.
dallasabout 2 years ago
Small&#x2F;silly things I did early in my career that are milestones in retrospect:<p>1. Compiling my Linux kernel - still relevant 25 years later<p>2. A multi-threaded socket server<p>3. Implementing each of the OO design patterns<p>Other things on-the-job that developers do early in their careers that teach a lot but foist technical debt on to others:<p>1. Automating any thing that you are asked to do manually (be careful human factors-wise)<p>2. Picking an overwrought solution to a problem (e.g. template metaprogramming or some darling language)<p>3. Unit tests for your code in whatever framework that suits. Even just a single test for sanity check purposes<p>Things that I wish some new hires would do:<p>1. RTFM (particularly, know their way around API documentation: usage, return codes, errors, exceptions)<p>2. When advised to RTFM actually do it
stooderrrabout 2 years ago
Building projects is definitely an excellent way to boost your skills! I&#x27;m going to shamelessly plug our site, <a href="https:&#x2F;&#x2F;www.frontendmentor.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.frontendmentor.io&#x2F;</a>.<p>We handle the project ideas and designs, so you can focus on the coding. We try to make it as close to a real-world development workflow as possible. We&#x27;ve got five different difficulty levels and as you get to the Intermediate, Advanced, and Guru levels, there a many full-stack options, if that&#x27;s something that interests you.<p>Hope you find something you like and best of luck!
quickthrower2about 2 years ago
I would say start with stuff that runs on the command line and needs few or none external libraries.<p>A command line game would be fun! Tictactoe, wordle, text adventure game (you move N E S W from room to room, to solve a puzzle plus some other actions)
ianpurtonabout 2 years ago
One possibility is implementing pull requests on open source projects.<p>They would then gain skills such as<p>- Reading other peoples code<p>- The actual process of git cloning and branching<p>- Code review<p>- And the joy of building something other people will use.
lmedinasabout 2 years ago
Here are some ideas:<p>- Command Line Music Player<p>- Homepage&#x2F;Startup page similar to Homer.<p>- Discord Bot<p>- Mastodon client<p>- Simple Markdown editor
mostafashrafabout 2 years ago
Greeeeeat