DEV Community

Cover image for Projects: how to avoid getting swamped
Alexandre Valsamou-Stanislawski
Alexandre Valsamou-Stanislawski

Posted on • Originally published at noima.xyz

Projects: how to avoid getting swamped

The other day I posted about getting started with React. I received a lot of positivity and good vibes from the DEV community (Thanks 🙇‍♂️). In the process, I also received some great suggestions, and one of them was to propose some starter project ideas. This suggestion threw me on the memory lane of projects I made to learn new technologies.

I did a review of some of the projects I made. Amongst the projects, some were complete failures; some I continue to use today. Along the way, I found some things that I might be of interest.

This article is a summary, with the goal of each project, how it went and, what we can learn from them.

Disclaimer Not every advice is for everyone: I’m a product-oriented person, and I can’t do tech for the sake of it; if it’s not your case, I’d love to hear about your point of view when you learn.

Before you go any further, here are the key learnings (TL;DR):

  • Be super clear about what you want to achieve: learning or making something
  • Set yourself a “done” goal
  • If you deeply understand what you’re building, it helps with the other parts of the project
  • If you have mastered the tech, it helps you focus on what you’re building

The Blog engine

The first project is one of my earliest, and a pretty failed one too. Back in the early 2000s, blogging was a thing, and being online was very attractive and yet not very accessible. Blogger launched in 99, and the initial release year of WordPress is 2003. So making a blog engine did not seem that bad of an idea.

When I started the project, I had a very vague idea of what I should do. To prevent you from going on the same path, here is what I expect of a minimal blog engine:

  • You must be able to write content
  • You must be able to publish content
  • The content must be visible on the website in a structured form, once published
  • You may have multiple writers
  • Only the writer(s) can write and publish content

This kind of project is a perfect fit when you want to learn a new backend technology. Here are some of the things you learn:

  • Database access
  • CRUD interfaces
  • Backend MVC
  • Authentication
  • Making UI’s

It’s no surprise that with such a list of things to learn that this project is the goto example for back-end frameworks, such as Rails or Django.

In my case, I ended up writing no content or so and with an unfinished product. I couldn't decide between the technical aspects of the project and my will to write content. Also, I didn’t know what it means to write anything; I didn’t have any idea of what an editorial line could be.

I did not learn explicitly from this experience then. But it gave me some hints for building my next projects.

Video games

It is tough to make a single list of requirements for a game. So here are some general objectives that could apply to any game:

  • You must have an understandable goal (survive)
  • You must be able to evaluate yourself (with points for example)
  • It must be fun (visual effects and sound are essential)

This kind of project is perfect for trying out UI libraries (React) or API (Canvas). Libraries do not have video games as their primary target, which makes this type of project exciting for potential performance issues. On the other hand, raw API’s tend to be very low-level, and there are no game primitives to help you, which is also very good for practicing abstraction.

Little shooter 1 in action Little shooter uses Canvas 2D API. I feel the game is a bit too hard, try it here

I picked a kind of video game I love (2D vertical shooters), and it helped me focus on learning the skills I wanted (Canvas 2D). The second time, it was even more manageable, and I could deepen the story I wanted to express even though I used other technologies (React and DOM).

Little shooter 2 intro screen Little shooter 2 is an improvement on the game side and also a complete rewrite, try it for yourself and tell me what you think in the comments.

Making a video game framework is an interesting exercise as well, even though you have to spend time on things that are not the game itself. The framework is a means to an end when making a video game, be careful. And also, I haven't finished any games with the framework I made; I guess that counts against the idea of making a framework.

A graphing tool

This one is very niche and yet one of my favorite personal projects. I was deep into making animations with Loop, and because I was on this purely functional trend, I was making super complex functions. To understand what I was doing, I decided to graph them.

In a few words, here is what you need for the simplest graphing tool:

  • You must be able to manage a set of functions
  • You must be able to check the functions visually
  • You should be able to use the mouse to navigate (drag, zoom in / out)

Doing so, I ended up writing a library and then a UI. I needed this tool to understand what I was doing; therefore, it was crystal clear to me what I wanted to implement. And because of that, the UI was evident, and picking up a new front-end framework was not an issue (BackboneJS).

FunctionXplorer UI The FunctionXplorer UI is pretty usable, in spite of its old age. Try it for yourself

Learning from the past projects

To get the best of a personal project, I find best to:

  • Set a clear objective for focus and self-evaluation
  • Restrict the scope (business knowledge, requirements or technology) to focus even more on your objective
  • Do something that you like to keep the motivation going

The good thing is that those hints apply very well on the business side too. As a professional, if you are aware of those elements, they make you more efficient and driven.

So what do you think? Do you have any meaningful personal project ideas? What did you learn when you built them?

This post was first published on Noima blog

Oldest comments (8)

Collapse
 
olance profile image
Olivier Lance

Be super clear about what you want to achieve: learning or making something

I remember having this conversation with you!
It’s more insightful that I would have known initially... still making the « mistake » of doing both at the same time though! 😅

Collapse
 
bobylito profile image
Alexandre Valsamou-Stanislawski

Thanks 🙏. I remember this conversation too. In guess I keep saying the same stuff 😅

Collapse
 
olance profile image
Olivier Lance

Ahah _^
As long as it makes sense 😉

Collapse
 
dagatsoin profile image
Daniel Neveux

Think big, start small.

Working on a BIG wildworld project is a way to always keep your motivation by dreaming on how it will be. For me, that is my trick to keep going.

Collapse
 
bobylito profile image
Alexandre Valsamou-Stanislawski

That's super good Daniel! Thanks for sharing. How do you feel about the gap between what's already done and the big final thing? Do you think about it? No is a good answer here 🤣

Collapse
 
dagatsoin profile image
Daniel Neveux

There is no good answer indeed. It depends on your own :p

I love the chaos and the unknown because I can progress in it.
So the gap is also a good motivation to enforce organization and a clear strategy for me to beat this "monster gap" step by step.
However it sometimes consumes me if I am not in good mental condition (tired, sick, ...)

Collapse
 
dagatsoin profile image
Daniel Neveux

I would add another one:

Set a trigger to feel when you step from perseverance to obstination.

For me it is my main barrier. A long shot project can put you in a tunnel where it is difficult to get distance from and to have a global vision. Especially if you are a very small team.

Make a check list of what represent the perseverance, and what represent the obstination through the prism of your project.

For me the check list is simple: it is the feedback of my players (I am building a MMO, and I may be at 10% of finish :p ). As long as new players feel what I feel and are happy to play. I am good to continue.

Collapse
 
bobylito profile image
Alexandre Valsamou-Stanislawski

This one is perfect too. Indeed it is quite hard not to fall in the ivory tower maker mode. It's a great idea to set up fail-safe beforehand!