This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Johan Leirnes", | |
"label": "TechOps Engineer", | |
"image": "https://i.ibb.co/fGHmhgNZ/IMG-0045-2.jpg", | |
"email": "[email protected]", | |
"phone": "+46706508027", | |
"summary": "With over 13 years of experience spanning infrastructure automation, cloud platforms, and system administration, I specialize in infrastructure as code, CI/CD pipelines, and monitoring solutions. Seeing issues as challenges and always placing the customer in focus are two characteristics that have helped me throughout my professional years. Customer focus for me is important, regardless of whether I'm in contact with a customer or if it is me who is the customer. In other words, treat others like you want to be treated. Being easy to educate and knowledgeable means I quickly acquire the skills needed to perform new tasks satisfyingly.", | |
"location": { | |
"address": "Burvik 447", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get ESP8266 going with Arduino IDE | |
// - https://github.com/esp8266/Arduino#installing-with-boards-manager | |
// Required libraries (sketch -> include library -> manage libraries) | |
// - PubSubClient by Nick ‘O Leary | |
// - DHT sensor library by Adafruit | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#include <DHT.h> |