CSS LESSON LEARNED
OVERFLOW-Y IS NOT AUTOMATIC IN A FIXED DIV overflow-y is not visible by default if your div is fixed in position and size. You may want to set it manually…
OVERFLOW-Y IS NOT AUTOMATIC IN A FIXED DIV overflow-y is not visible by default if your div is fixed in position and size. You may want to set it manually…
Those are my notes taken while reading "Building Microservice" By sam Newaman, the MUST HAVE book for microservice. What Are Microservices ? Microservices are small, autonomous services that work together,…
More infos about dockerfile: https://github.com/wsargent/docker-cheat-sheet#dockerfile https://docs.docker.com/engine/reference/builder/#environment-replacement A dockerfile is a file that contains instructions to build our container, you write the dockerfile, then run docker build and docker will create…
Those are the notes coming from this video : https://youtu.be/DX1T-PKHKhg YAML Tutorial : http://www.simonepanebianco.fr/yaml/ File YAML Version Matrix : https://docs.docker.com/compose/compose-file/compose-versioning/ As you know Docker is a tool which is used…
World edit is one of the greatest plug-ins for Minecraft. SELECTION EDIT The first part of this is to understand SELECTION EDIT!SELECTION EDIT make you change, move, set blocks, and…
https://www.learnshell.org/en/Hello,_World! Basic arithmetic Operations Simple arithmetics on variables can be done using the arithmetic expression: $((expression)) A=3 B=$((100 * $A + 5)) # 305 #you just can't do like this:…
Don't work on master only branches It is better to use Branches for everything when you want to add something: use a branch, when you want to resolve a bug:…
What is Docker? What problems it solves, and why you should learn it right now! Docker is very useful for a lot of people, not only dev, even if you…
PHP now supports also classes(from version 5 on), this is very good for programming techniques. DEFINING A CLASS To define a class PHP use the "class" keyword, followed by the…