Skip to content

Instantly share code, notes, and snippets.

View Habbie's full-sized avatar

Peter van Dijk Habbie

View GitHub Profile
cpoint dec utf-8 html name
'‐' U+2010 8208 e2 80 90 ‐ HYPHEN (Dash_Punctuation)
'-' U+002D 45 2d - HYPHEN-MINUS (Dash_Punctuation)
'‑' U+2011 8209 e2 80 91 ‑ NON-BREAKING HYPHEN (Dash_Punctuation)
'-' U+002D 45 2d - HYPHEN-MINUS (Dash_Punctuation)
'–' U+2013 8211 e2 80 93 – EN DASH (Dash_Punctuation)
'-' U+002D 45 2d - HYPHEN-MINUS (Dash_Punctuation)
dagtabel = [{"datum": "1-1-2023", "stroom": 11.321629, "gas": 7.17361783}, {"datum": "2-1-2023", "stroom": 11.151776, "gas": 7.29365989}, {"datum": "3-1-2023", "stroom": 10.814767, "gas": 7.50814813}, {"datum": "4-1-2023", "stroom": 10.933145, "gas": 7.46678924}, {"datum": "5-1-2023", "stroom": 10.867808, "gas": 7.40948305}, {"datum": "6-1-2023", "stroom": 10.874362, "gas": 7.12583471}, {"datum": "7-1-2023", "stroom": 11.547017, "gas": 7.06297627}, {"datum": "8-1-2023", "stroom": 11.609251, "gas": 6.90513601}, {"datum": "9-1-2023", "stroom": 10.888195, "gas": 6.93128915}, {"datum": "10-1-2023", "stroom": 10.611738, "gas": 6.9051776}, {"datum": "11-1-2023", "stroom": 10.735336, "gas": 6.94681715}, {"datum": "12-1-2023", "stroom": 10.606315, "gas": 6.92379916}, {"datum": "13-1-2023", "stroom": 10.791567, "gas": 6.69227866}, {"datum": "14-1-2023", "stroom": 11.522976, "gas": 6.74976235}, {"datum": "15-1-2023", "stroom": 11.617777, "gas": 6.72370085}, {"datum": "16-1-2023", "stroom": 10.779735, "gas": 6.90239464}
VERSION=3
format=print
database=records_v5
type=btree
mapsize=16777216000
maxreaders=126
HEADER=END
3*vi\00\00\00\02
\17C\aa\c2>\8c\80\00\00\00\00\00\00\00\00\02\00\00\00\00\00\00\00\00\0e\00\03ns1\07example\c0(x\00\00\00\01\00\00\0e\00\03ns2\07example\c0(x\00\00\00\01\00\00
3*vi\00\00\00\06
local function onNotifyFlush(dq)
print("flushing "..dq.qname:toString())
getPool("self_v6"):getCache():expungeByName(dq.qname)
return DNSAction.None
end
addAction(OpcodeRule(DNSOpcode.Notify), LuaAction(onNotifyFlush))
#!/usr/bin/python2
import yaml
import requests
import sys
import re
def getTitleForBugs(bugs):
ret = []
title_regex = re.compile(r'<title>(.*) - Debian Bug report logs</title>')
for bug in bugs:
#!/bin/sh
if [ x$1 = x'serve' ]
then
docker run --user $(id -u) --rm --init -p 4100:4100 -v $(pwd):/src taobeier/backslide "$@"
else
docker run --user $(id -u) --rm --init -v $(pwd):/src taobeier/backslide "$@"
fi
diff --git a/pdns/recursordist/docs/metrics.rst b/pdns/recursordist/docs/metrics.rst
index 3dd833da8..ba40f59a9 100644
--- a/pdns/recursordist/docs/metrics.rst
+++ b/pdns/recursordist/docs/metrics.rst
@@ -293,7 +293,7 @@ Cumulative counts of answer times of authoritative servers in buckets less than
These metrics are useful for Prometheus and not listed in other outputs by default.
cumul-clientanswers-x
-^^^^^^^^^^^^^^^^^^
+^^^^^^^^^^^^^^^^^^^^^
@Habbie
Habbie / p.lua
Created September 14, 2021 13:17
local to_string2
local function table_print (tt, indent, done)
done = done or {}
indent = indent or 0
if type(tt) == "table" then
local sb = {}
for key, value in pairs (tt) do
table.insert(sb, string.rep (" ", indent)) -- indent it
if type (value) == "table" and not done [value] then
diff --git a/esphome/components/pm1006/pm1006.cpp b/esphome/components/pm1006/pm1006.cpp
index 9bedb3cf..215ddc93 100644
--- a/esphome/components/pm1006/pm1006.cpp
+++ b/esphome/components/pm1006/pm1006.cpp
@@ -7,6 +7,7 @@ namespace pm1006 {
static const char *const TAG = "pm1006";
static const uint8_t PM1006_RESPONSE_HEADER[] = {0x16, 0x11, 0x0B};
+static const uint8_t PM1006_REQUEST[] = {0x11, 0x02, 0x0B, 0x01, 0xE1};
diff --git a/esphome/core/application.cpp b/esphome/core/application.cpp
index 17a2725d..f9f29e81 100644
--- a/esphome/core/application.cpp
+++ b/esphome/core/application.cpp
@@ -11,7 +11,7 @@ namespace esphome {
static const char *const TAG = "app";
-void Application::register_component_(Component *comp) {
+void Application::register_component_(Component *comp, std::string id) {