#advanced
Oh, you fancy huh? All the tips for an advanced developer.
Check out our pinterest page dedicated to advanced as well!
Accessing Docker Container As Root
Nov 03, 2019
On occasion you might need to access your docker container as root. Using docker exec you can do that fairly easily
Typescript Useful Compilation Options
Oct 05, 2019
If you’re using typescript (tsc) to compile your typescript files, there are some handy compilation options that can give you more insight into how compilation happens or why certain files are compiled.
Git Shallow Clone
Oct 03, 2019
If you git clone a repository it brings in the entire repository which contains every revision of every file ever made. Sometimes this is overkill. Try a shallow clone instead!
Smaller Docker Images & Faster Builds
Sep 02, 2019
When running docker and building your images they can get quite large and take a lot of space on your server/registry.
Git Cherry Pick
Jul 23, 2019
Another feature with git that comes in handy sometimes is the ability to cherry pick certain commits...