Userful things to know as a software developer

This page explains a few things such as what is a README, the purpose of a wireframe and how branches work in git.

What is a README?

A README is a file that describes things about a project on github. And is usually the first thing that you have to read when contributing to a new project.

Read more

What's the purpose of a wireframe?

Wireframes can be used to sketch a website. UX designers use them to communicate their ideas about how the UI should be designed.

Read more

What is a branch in Git?

A branch is a separate workspace that allows you to work on a feature without touching the main projects code and then merge it to the main branch once the feature is mature enough.

Read more