Skip to content

Instantly share code, notes, and snippets.

View JulienPalard's full-sized avatar
🐍
🐍

Julien Palard JulienPalard

🐍
🐍
View GitHub Profile
@JulienPalard
JulienPalard / curry.py
Created August 1, 2014 10:51
KISS Python curry
#!/usr/bin/env python
def curry(func):
"""
Decorator to curry a function, typical usage:
>>> @curry
... def foo(a, b, c):
... return a + b + c
@JulienPalard
JulienPalard / backup.py
Last active June 12, 2022 19:10
Backup UBNT edgeswitch over SSH
"""Usage: ./backup.py login@host
"""
import sys
import pexpect
import getpass
child = pexpect.spawn('ssh ' + sys.argv[1])
while True:
match = child.expect(['password:', '\(.*\) >'])
"""Copy a flat hierarchy (all .crt .csr, key files in the same directory) to an easy-rsa v3 hierarchy.
You'll manually need to copy openssl-easyrsa.cnf / safessl-easyrsa.cnf though.
Disclamer: I am no security expert, use at your own risk, and only if you understand better than me what's youre doing and why you're doing it.
Usage:
python3 easyrsa2to3.py SRC_DIR DEST_DIR
Example:
@JulienPalard
JulienPalard / covid19fr.py
Last active September 7, 2020 16:33
Wikipedia: To update Covid graphs
#!/usr/bin/env python3
# Uses https://www.data.gouv.fr/fr/datasets/donnees-hospitalieres-relatives-a-lepidemie-de-covid-19/
# - donnees-hospitalieres-covid19
# - donnees-hospitalieres-nouveaux-covid19
import csv
from statistics import mean
from itertools import groupby
from dateutil.parser import parse
@JulienPalard
JulienPalard / pi.py
Created December 12, 2019 14:50
Examine Python's PI
from math import pi
from fractions import Fraction
import struct
def double(bits: str) -> Fraction:
def exponent(input_value: str):
return int(input_value, 2) - 1023
def fraction(b):
@JulienPalard
JulienPalard / FastFood.py
Created December 10, 2019 10:36 — forked from PiDroid-B/FastFood.py
FastFood
import asyncio
import random
from datetime import datetime
from enum import Enum
from dataclasses import dataclass
class CMD_STATE(Enum):
Undefined = 0
Ask = 1
def van_eck():
"""https://oeis.org/A181391
"""
seen = {}
yield 0
previous, current = 0, None
i = 1
while True:
if previous in seen:
current = i - seen[previous] - 1
@JulienPalard
JulienPalard / find_in_po.py
Created October 5, 2018 10:17
Find a word in msgids, show msgstrs.
#!/usr/bin/env python3
import argparse
from glob import glob
import os
from textwrap import fill
import regex
import polib
from tabulate import tabulate
### Keybase proof
I hereby claim:
* I am julienpalard on github.
* I am julienpalard (https://keybase.io/julienpalard) on keybase.
* I have a public key ASC7dVPPYwLtCqT2bOTWWE-JgQ40WPTZCTkgFS4JEZqm1wo
To claim this, I am signing this object:
@JulienPalard
JulienPalard / python-build.20180623214511.15791.log
Last active June 23, 2018 20:01
./bin/pyenv install 3.7.0rc1 failing
/tmp/python-build.20180623214511.15791 ~/.pyenv
/tmp/python-build.20180623214511.15791/Python-3.7.0rc1 /tmp/python-build.20180623214511.15791 ~/.pyenv
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for python3.7... python3.7
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... checking for --without-gcc... no
checking for --with-icc... no
checking for gcc... gcc