This file contains 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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"meta": { | |
"theme": "kendall" | |
}, | |
"basics": { | |
"name": "Jérôme Foray", | |
"image": "https://media.licdn.com/dms/image/v2/D5603AQHQs3RczCs9xA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1724174530557?e=1736380800&v=beta&t=mc6fIgyd6GQb2PigY83YoQhCIYDQ2xxSJQT5qIv7jpE", | |
"label": "DevOps Tech Lead", | |
"summary": "Full stack web developer with a passion for great tools, improving processes and lean delivery cycles; also known as a DevOPS engineer.\n\nLooking for opportunities to relocate to Metro Manila / APJ.", |
This file contains 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
127.0.0.1 us.rdx2.lgtvsdp.com | |
127.0.0.1 us.info.lgsmartad.com | |
127.0.0.1 us.ibs.lgappstv.com | |
127.0.0.1 us.lgtvsdp.com | |
127.0.0.1 ad.lgappstv.com | |
127.0.0.1 smartshare.lgtvsdp.com | |
127.0.0.1 ibis.lgappstv.com | |
# added after fork | |
# from https://www.reddit.com/r/pihole/comments/6qmpv6/blacklists_for_lg_webos_tvs/ and others |
This file contains 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
begin remote | |
name blyss-nec | |
bits 16 | |
flags SPACE_ENC | |
eps 25 | |
aeps 100 | |
header 9000 4500 | |
one 560 1690 |
This file contains 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
forward-zone: | |
name: "." | |
# forward-addr: 1.1.1.1@853#cloudflare-dns.com | |
# forward-addr: 1.0.0.1@853#cloudflare-dns.com | |
# forward-addr: 2606:4700:4700::1111@853#cloudflare-dns.com | |
# forward-addr: 2606:4700:4700::1001@853#cloudflare-dns.com | |
forward-addr: 2001:41d0:302:2200::180@853#dot.bortzmeyer.fr | |
forward-addr: 193.70.85.11@853#dot.bortzmeyer.fr | |
forward-addr: 91.239.100.100@853#anycast.censurfridns.dk |
This file contains 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
#!/usr/bin/env bash | |
aws ec2 describe-spot-instance-requests \ | |
--filters Name=instance-id,Values="$(wget -q -O - http://169.254.169.254/latest/meta-data/instance-id)" \ | |
--region "$(wget -q -O - http://169.254.169.254/latest/dynamic/instance-identity/document | jq -r '.region')" | \ | |
jq -r '.SpotInstanceRequests | if length > 0 then "spot" else "normal" end' |
This file contains 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
{ | |
"header": { | |
"Name": "KType", | |
"Variant": "standard", | |
"Layout": "NoAnimations", | |
"Base": "Base", | |
"Version": "0.2", | |
"Author": "Meroje", | |
"KLL": "0.5c", | |
"Date": "2019-01-14", |
This file contains 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
// SDS011 dust sensor example | |
// for use with SoftSerial | |
// ----------------------------- | |
#include <SoftwareSerial.h> | |
uint8_t wakequery[] = { | |
0x01 | |
}; | |
uint8_t readquery[] = { |
This file contains 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
https://github.com/eevee/camel/blob/1f9132ce43f6933bd3e91681404aab817876b3e1/docs/yamlref.rst |
This file contains 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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
DOCUMENTATION = ''' | |
--- | |
module: scw_facts | |
''' | |
EXAMPLES = ''' | |
# To see the list of all the facts use command below: |
This file contains 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
#!/usr/bin/env bash | |
# Based on https://github.com/edanaher/scaleway-utils/blob/45d89a534d0ff9427a120e509d215e195fe083dc/tinc/add-tinc.sh | |
export PS4="\[\033[32;1m++\[\033[0m " | |
set -ex | |
HOST=$1 | |
TINCIP=$2 | |
TINCNAME=${3:-$1} |
NewerOlder