Skip to content

Instantly share code, notes, and snippets.

View zopieux's full-sized avatar

Alexandre Macabies zopieux

View GitHub Profile
@zopieux
zopieux / mpv_streamlink_mosaic.py
Last active May 8, 2022 19:35
Xorg clipboard + streamlink + mpv in a mosaic / tile layout
@zopieux
zopieux / hexadecordle.js
Last active March 18, 2022 17:13
A sane horizontal layout for https://hexadecordle.co.uk/
const trs = [...document.querySelectorAll('#container>table>tbody>tr')]
const beg = trs.splice(0, 2)
trs.filter((x,i) => i%2==0).forEach(tr => {
tr.querySelectorAll(':scope > td').forEach(td => beg[0].insertAdjacentElement('beforeend', td))
})
document.querySelectorAll('#container>table>tbody>tr>td').forEach(e => e.style.width=100/16)
document.querySelector('body').style.fontFamily = 'monospace'
document.querySelector('#body').style.maxWidth = null
document.querySelector('#body').style.width = '100%'
document.querySelector('#game').style.width = '100%'
@zopieux
zopieux / RSL366R.c
Last active January 10, 2021 18:04
Remote RSL366R (433.95MHz) Arduino program
// https://github.com/sui77/rc-switch
#include <RCSwitch.h>
#define CONFIG_BUFSIZE ((8 + 16 + 8) / 8)
typedef union {
struct {
uint8_t transmitPin;
uint16_t pulseLength;
uint8_t repeatTx;
} c;
### Keybase proof
I hereby claim:
* I am zopieux on github.
* I am zopieux (https://keybase.io/zopieux) on keybase.
* I have a public key ASCq3dB3j_rLJ_JoF2t2F5Km_8nVHoa-v_nNsWh0aDEBUgo
To claim this, I am signing this object:
@zopieux
zopieux / tree.py
Created May 11, 2015 08:03
Python tree
def tree(root):
"""
Node(label = "string", children = [list of Node])
"""
ret = [root.label]
ln = len(root.children)
for i, child in enumerate(root.children):
for j, s in enumerate(tree(child)):
char = '│ '
if i == ln - 1: # last child
@zopieux
zopieux / ocr-pdf.py
Last active April 7, 2018 17:41
Google OCR to PDF invisible overlay
#!/usr/bin/env python3
"""
Example usage:
$ pip install reportlab pillow
$ ./overlay.py these-lemaire.tiff 'ocr/{p}.json' these-lemaire.pdf
"""
import argparse
import json
@zopieux
zopieux / citename.py
Created March 28, 2018 13:22
Sphinx citation title
import docutils.nodes
import sphinx.roles
class CiteRole(sphinx.roles.XRefRole):
def result_nodes(self, document, env, node, is_ref):
keys = node['reftarget'].split(',')
refnodes = [
docutils.nodes.reference(classes=['citation'], refuri=key)
for key in keys]
@zopieux
zopieux / override.conf
Created February 26, 2018 23:41
Docker on NFS with automount
# /etc/systemd/system/docker.service.d/override.conf
# TODO: use systemd-automount?
# defeats the purpose of the /net discovering service, though
[Service]
# trigger mount (share is /docker)
ExecStartPre=/usr/bin/stat /net/SERVER/docker
# umount
ExecStopPost=/usr/bin/umount /net/SERVER/docker
from curio import run, spawn, open_connection, sleep
import argparse
import collections
import re
TOKEN = re.compile(r'([\S]{3,})', re.I)
async def client(opts):
q = collections.deque(maxlen=opts.window)
@zopieux
zopieux / kth_perm.py
Created July 24, 2017 14:32
kth permutation
def kth_perm(n, k):
res = list(range(n))
for i in range(n):
f = math.factorial(n - i - 1)
s, m = divmod(k, f)
if m == 0 and s == 0:
break
if s > 0:
for j in range(i - 1 + s, i - 1, -1):
res[j-1], res[j] = res[j], res[j-1]