1. Welke projecten heb je al gedaan in react? Kan je daar iets over vertellen? 2. Welk niveau vind je zelf dat je hebt? 2.…
My journey to become a better developer
1. Welke projecten heb je al gedaan in react? Kan je daar iets over vertellen? 2. Welk niveau vind je zelf dat je hebt? 2.…
Best practices for JS security 1. Check regularly for npm package security issues terminal npm audit // shows vulnerable packages 2. Implement eslint security rules…
Docker desktop alternative = minikube image: an executable package that includes everything needed to run an application–the code, a runtime, libraries, environment variables, and configuration…
THEORY This theory is basically a copy from Reference 1 and Reference 2, but I want to copy it here in case it gets deleted. Shallow Real unit…
Setting up my sequel server 1. Install docker 2. Pull the latest sql image sudo docker pull microsoft/mssql-server-linux:2017-latest 3. Run the docker command sudo docker…
1. download virtualbox and install 2. download the IE images from Windows 3. double click on the IE image to open it in virtual box…
Translations/copy Localize – exports to multiple file formats (csv, json, …) – does not allow nested translations Weblate Webgebaseerde voortdurende vertaling i18n (React-intl vs React-intl-universal…
1. Preparation Model your data in json { name: Simba, age: 2 } Setup routing blueprint with http verbs: GET, POST, PUT, DELETE (REST) and…
AWS First year free, pay-as-you-go afterwards GCP First year free, pay-as-you-go afterwards Digital Ocean Heroku Open Shift Github Useful links:
Code quality Use a code quality standard no loose equals (==) to avoid implicit coercion bugs capitalize constants with underscores (js convention) Do not use…