Skip to main content
What can you teach about problem solving to a developer
Keep things simple scrabble letters
Keep things simple scrabble letters

This is a very short essay about what can you teach about problem-solving to a new developer. But it is not limited to software development, I think.

I will enhance the post in later iterations...

Let's break it down into 5 points


Jeremie LitzlerAbout 2 minWeb DevelopmentTeaching
How to create aliases to use Git CLI more

What are Git aliases

Have you ever wondered if you could skip typing git add /path/to/filename && git commit "my message" && git push? That's what git aliases are for.

How to create an alias

Using the git config command, we can declare globally the aliases. For example:


Jeremie LitzlerAbout 1 minWeb DevelopmentGitCLI
How to debug a Nodejs project in VSC

Debugging is the life of any developper. It allows you to check when your code doesn't behave... because you gave it the wrong instructions.

Let's dive into how to enable it in Visual Studio Code. It will be quick.

Pre-requisites

  • Have a NodeJS-enabled project (for that was this one).
  • Have Visual Studio Code installed.

Jeremie LitzlerLess than 1 minuteWeb DevelopmentNodeJSVisual Studio CodeConfigure IDE
CSS Variables

Sources

Medium article by Per Harald Borgen

Why learn CSS Variables?

  • To build a theme where you will reuse a property value many many many times
    • ex: the brand color or the size of a button.
  • To build better responsive designs

Jeremie LitzlerLess than 1 minuteWeb FundamentalsWeb DevelopmentCSSCSS Variables