DEV Community

Discussion on: 10 Advanced Projects to Build in 2021

Collapse
 
nwmqpa profile image
Thomas Nicollet

To be honest, a calculator can be pretty challenging. I had to do one from scratch in my University, 3 weeks after entering computer science course. It was meant to be able to compute infinite number operations, on infinite base, with parenthesis and basic operations, in C pure

It was very interesting to make

Collapse
 
perigk profile image
Periklis Gkolias

It is indeed an interesting problem to solve, I was in the same position when started my university classes. And it is challenging algorithmically.

But that's it. You practice nothing else but algorithmic skills which is (fortunately or unfortunately) not the most important technical skills you will need in a software engineering job.

Thread Thread
 
nwmqpa profile image
Thomas Nicollet

I agree with you, from a job perspective.

From a learning and experimental perspective, I still think these projects have their place on this list, akin to a new language.

Collapse
 
__masashi__ profile image
Masashi

It seems to be more of a Compiler exercise to me. I love all that.