View blyss-2221.lircd.conf
begin remote | |
name blyss-nec | |
bits 16 | |
flags SPACE_ENC | |
eps 25 | |
aeps 100 | |
header 9000 4500 | |
one 560 1690 |
View unbound-dot.conf
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 |
View getec2lifecycle.sh
#!/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' |
View ktype.json
{ | |
"header": { | |
"Name": "KType", | |
"Variant": "standard", | |
"Layout": "NoAnimations", | |
"Base": "Base", | |
"Version": "0.2", | |
"Author": "Meroje", | |
"KLL": "0.5c", | |
"Date": "2019-01-14", |
View sds011.ino
// SDS011 dust sensor example | |
// for use with SoftSerial | |
// ----------------------------- | |
#include <SoftwareSerial.h> | |
uint8_t wakequery[] = { | |
0x01 | |
}; | |
uint8_t readquery[] = { |
View gist:b08a4e358517ba7a26de533e494a92d4
https://github.com/eevee/camel/blob/1f9132ce43f6933bd3e91681404aab817876b3e1/docs/yamlref.rst |
View scw_facts.py
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
DOCUMENTATION = ''' | |
--- | |
module: scw_facts | |
''' | |
EXAMPLES = ''' | |
# To see the list of all the facts use command below: |
View setup-tinc-peer.sh
#!/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} |
View webpack.config.js
/*! webpack.config.js | Build JS, CSS,.. client assets and StyleGuide */ | |
'use strict'; | |
var webpack = require('webpack'); | |
var ExtractTextWP = require('extract-text-webpack-plugin'); | |
var HtmlWP = require('html-webpack-plugin'); | |
var path = require('path'); | |
var moment = require('moment'); |
View cloud-config-bootstrap.sh
#!/bin/bash | |
wget -O cloud-config.yaml http://10.10.20.1/cloud-config.php | |
coreos-install -d /dev/vda -c cloud-config.yaml | |
reboot |
NewerOlder