syncster.dev

Your simplified journey in learning how to code.

Get Started

Simplicity

In this tutorials, we are going to try the most minimal and simplistic approach in learning.

Project-Based

To not get bored by traditional learning, we are going to focus on building with the learning as side effects.

Real-World Applications

Except for the introductions, we are going to be building real world applications during our programming learning process.

Subscribe to our newsletter to get ahead of all new lectures and coding tutorials! Sign Up hereopen in new window

Latest Blogs

Allow users to quit from a text-based program in C

October 26, 2024 Reading Time: 4 minutes

Most when when getting started with programming in C or C++ or any other language that let us create a text-based program, the programs we create a commonly run once and then quit.

In this post, we will see how do we create a program in C that continuously run until the user decided to quit.

Now, most people that uses text-based programs knows that we can use Ctrl+C to quit, but it is still a little more elegant for users knowing that a command is available to them inside the program that let them stop or quit it right? Now let's get to it.

read more...

Danger of Array in C

October 12, 2024 Reading Time: 2 minutes

This is the array out of bound usage. Placing values to each placeholder in an array is how we populate or update it. However, in C, we can put values to an array even if it already more than how many elements we declared it could contain.

If we declared an array that can contain 5 elements...

read more...

August 17, 2024

News

Python Basics

October 6, 2024

Welcome everyone! After our journey in learning some programming basics by building a geotag photos galley from the previous series, I now welcome you to another new set of lessons.

These few lessons will equip you more on the realm of programming but with the focus on the Python programming language. You will learn some basic concepts of Python by building a dozen desktop programs that you can use to build your own day to day tools.

I hope you are excited! Let's dive right in with the first one here.