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

IDEs

One of the most important thing you need to code is a good Integrated Development Environment (IDE). There is a wide range of IDEs from the simple and free to the most sophisticated and expensive. IDEs range from language specific ones to multi-language support. Having the right IDE can help a developer manage workflows, access …

Read moreIDEs

TheTrendyBrand