featured images include json in yaml file

Include JSON object in YAML

If you are using YAML you might want to include a JSON object in your file. Here are two ways to do that : For a big object You can use this notation with a “>” students: > [{“name”:”Dupont”,”firstname”:”Marie”,”age”:19}, [{“name”:”Smith”,”firstname”:”John”,”age”:18}, [{“name”:”Doe”,”firstname”:”Janne”,”age”:19}] You can also use the pipe “|” students: | [{“name”:”Dupont”,”firstname”:”Marie”,”age”:19}, [{“name”:”Smith”,”firstname”:”John”,”age”:18}, [{“name”:”Doe”,”firstname”:”Janne”,”age”:19}] For a …

Read moreInclude JSON object in YAML

featured images git cheatsheet

Git cheatsheet

Git cheatsheet As a developer, you might want to learn a lot of different coding languages. However, something you have to learn before anything if you are working with a team is how to use a version control system. The most used is git. In this cheatsheet I will share with you an overview of …

Read moreGit cheatsheet

TheTrendyBrand