I hereby claim:
- I am andrewshadura on github.
- I am andrewsh (https://keybase.io/andrewsh) on keybase.
- I have a public key whose fingerprint is 7821 30B4 C994 4247 977B 82FD 6EA4 D231 1A2D 268D
To claim this, I am signing this object:
xkb_keycodes "sun" { | |
// include "sun(type6_usb)" | |
<LSGT> = 94; | |
<LALT> = 133; | |
<RWIN> = 105; | |
<LWIN> = 64; | |
<RALT> = 134; | |
<RCTL> = 108; | |
<COMP> = 135; |
#!/usr/bin/env python3 | |
import asyncio | |
from functools import partial | |
from pathlib import Path | |
import os | |
import ssl | |
import subprocess | |
import sys | |
from urllib.parse import urlparse, parse_qs, urlunparse |
diff --git a/.buildkite/.env b/.buildkite/.env | |
new file mode 100644 | |
index 0000000..85b102d | |
--- /dev/null | |
+++ b/.buildkite/.env | |
@@ -0,0 +1,13 @@ | |
+CI | |
+BUILDKITE | |
+BUILDKITE_BUILD_NUMBER | |
+BUILDKITE_BRANCH |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/gawk -f | |
function flush_out(x) { | |
# debug: | |
if (x != "") printf x ": " | |
if (out["key"] == "") { | |
return | |
} |
#!/usr/bin/python3 | |
# original XML at http://www.w3.org/Math/characters/unicode.xml | |
# XSL for conversion: https://gist.github.com/798546 | |
# only cyrillic symbols | |
unicode_to_latex = { | |
0x0401: "\\CYRYO", | |
0x0402: "\\CYRDJE", |
From 47946d0a8a68a8e260c9a44e8b2ab448b86f946e Mon Sep 17 00:00:00 2001 | |
From: Andrew Shadura <[email protected]> | |
Date: Thu, 27 Aug 2015 18:59:12 +0200 | |
Subject: Add Python3 compatibility | |
diff --git a/reconfigure/parsers/iniparse/config.py b/reconfigure/parsers/iniparse/config.py | |
index d007f16..cc37ac4 100644 | |
--- a/reconfigure/parsers/iniparse/config.py | |
+++ b/reconfigure/parsers/iniparse/config.py | |
@@ -143,7 +143,7 @@ class BasicConfig(ConfigNamespace): |
#!/usr/bin/env tclsh | |
namespace eval ::autofile { | |
} | |
rename ::proc ::autofile::proc | |
rename ::open ::autofile::open | |
set ::autofile::files(::) {} | |
::autofile::proc proc {name args body} { |
.DEFAULT_GOAL := all | |
.PHONY: ${MAKECMDGOALS} | |
$(filter-out all,${MAKECMDGOALS}) all: .forward-all | |
@# no op | |
.forward-all: | |
${MAKE} -C build ${MAKECMDGOALS} | |
${MAKEFILE_LIST}: ; | |
.SUFFIXES: |