Skip to content

Instantly share code, notes, and snippets.

View PonteIneptique's full-sized avatar
🏠
Working from home

Thibault Clérice PonteIneptique

🏠
Working from home
View GitHub Profile
@PonteIneptique
PonteIneptique / priapea.xml
Created May 22, 2020 06:48
Priapea Share
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title/>
</titleStmt>
<publicationStmt><p/></publicationStmt>
<sourceDesc><p/></sourceDesc>
</fileDesc>
<revisionDesc>
@PonteIneptique
PonteIneptique / cremma-print-badges-chars.json
Last active October 31, 2021 19:53
This gist only exists in order to feed Badges of the CREMMA HTR-United badges
{"schemaVersion":1,"label":"Transcribed Characters","message":"83728","color":"informational","style":"flat-square"}
@PonteIneptique
PonteIneptique / convert.py
Last active February 11, 2022 10:07
Convert old segmonto files. Use `convert.py *.xml`
import re
import glob
import sys
Zone = {
"Main": "MainZone",
"DropCapital": "DropCapitalZone",
"RunningTitle": "RunningTitleZone",
"Margin": "MarginTextZone",
@PonteIneptique
PonteIneptique / anybadge.svg
Created February 21, 2022 09:54
HTR-United Badge Template
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PonteIneptique
PonteIneptique / ReassignAllLines.js
Created December 16, 2022 13:58
Macro eScriptorium
function link() {
document.dispatchEvent(new KeyboardEvent("keydown", {
'key': 'a', "charCode": 0, "keyCode": 65, "ctrlKey": true
}));
setTimeout(() => {
document.dispatchEvent(new KeyboardEvent("keydown", {
'key': 'y', "charCode": 0, "keyCode": 89
}));
}, 500);
@PonteIneptique
PonteIneptique / converter.py
Last active September 20, 2024 06:38
Simple LASLA compatible GT retroconverter
"""
Requirements:
regex
colorama
pycases
click
"""
import os