- https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX%3A32004R0261
- https://www.flyertalk.com/forum/information-desk/2123657-eu261-what-counts-denied-boarding.html
- https://travel.stackexchange.com/questions/186213/denied-check-in-on-a-code-shared-flight-of-israir-and-smartwings-where-to-compl
- https://www.eutravelrights.eu/how-to-complain
- https://transport.ec.europa.eu/transport-themes/passenger-rights/air/enquiry-form-air-passengers_en
- https://europa.eu/youreurope/citizens/travel/passenger-rights/air/index_fr.htm
- https://www.skycop.com/
- https://europa.eu/youreurope/citizens/travel/passenger-rights/air/index_en.htm#next-steps-3
- https://transport.ec.europa.eu/document/download/d7b5dd33-4083-4faa-8132-b6dc8b3a1c07_en?filename=2004_261_national_enforcement_bodies-2024-01-30.pdf
- https://transport.ec.europa.eu/transport-themes/passenger-rights/air_en
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// gcc -shared -fPIC log_file_access_dynamic.c -o log_file_access_dynamic.so -ldl; LD_PRELOAD=$PWD/log_file_access_dynamic.so /usr/bin/cat log_file_access_dynamic.c | |
#define _GNU_SOURCE | |
#include <stdio.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <errno.h> | |
#include <dlfcn.h> | |
#include <sys/stat.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/questions/78931597/binary-integer-representation-printing-in-linux-shell?noredirect=1#comment139167055_78931597 | |
alias fmti4struct="python -c 'import sys,struct;sys.stdout.buffer.write(struct.pack(\"<I\",int(sys.argv[1])))'" | |
alias fmti4tobytes="python -c 'import sys,struct;sys.stdout.buffer.write(int(sys.argv[1]).to_bytes(4,\"little\"))'" | |
# fmt4istruct 2123 > foo.txt | |
# xxd foo.txt | |
## 00000000: 4b08 0000 K... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# the texlive iso urls become unavailable as texlive replaces the releases | |
# this script also prints dd commands for extracting a file by offset | |
# docs at https://github.com/clalancette/pycdlib and https://clalancette.github.io/pycdlib/example-extracting-data-from-iso.html | |
# Usage: | |
# wget https://tug.ctan.org/systems/texlive/Images/texlive2024-20240312.iso | |
# python texliveiso.py texlive2024-20240312.iso > texliveiso.txt | |
import sys, io | |
import pycdlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re, unicodedata | |
def slugify(s, mode = '', space = '_', lower = True): | |
# https://jekyllrb.com/docs/liquid/filters/#slugify | |
# regex from https://github.com/Flet/github-slugger, see https://github.com/github/cmark-gfm/issues/361 | |
regex_bad_chars = r'[\0-\x1F!-,\.\/:-@\[-\^`\{-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0378\u0379\u037E\u0380-\u0385\u0387\u038B\u038D\u03A2\u03F6\u0482\u0530\u0557\u0558\u055A-\u055F\u0589-\u0590\u05BE\u05C0\u05C3\u05C6\u05C8-\u05CF\u05EB-\u05EE\u05F3-\u060F\u061B-\u061F\u066A-\u066D\u06D4\u06DD\u06DE\u06E9\u06FD\u06FE\u0700-\u070F\u074B\u074C\u07B2-\u07BF\u07F6-\u07F9\u07FB\u07FC\u07FE\u07FF\u082E-\u083F\u085C-\u085F\u086B-\u089F\u08B5\u08C8-\u08D2\u08E2\u0964\u0965\u0970\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09F2-\u09FB\u09FD\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cc cat.c -o cat && ./cat cat.c | |
#include <stdio.h> | |
int main(int argc, char* argv[]) | |
{ | |
char buf[1024]; | |
if(argc < 2) return 2; | |
FILE* f = fopen(argv[1], "r"); | |
if(!f) return 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
# https://github.com/hrw/syscalls-table/issues/78 | |
wget https://raw.githubusercontent.com/torvalds/linux/master/include/linux/syscalls.h | |
sed -z 's/,\n/,/g' syscalls.h | grep 'path\|file\|name' | |
# some manual filtering of syscalls mentioning just name | |
*/ | |
asmlinkage long sys_setxattr(const char __user *path, const char __user *name, const void __user *value, size_t size, int flags); | |
asmlinkage long sys_lsetxattr(const char __user *path, const char __user *name, const void __user *value, size_t size, int flags); | |
asmlinkage long sys_fsetxattr(int fd, const char __user *name, const void __user *value, size_t size, int flags); | |
asmlinkage long sys_getxattr(const char __user *path, const char __user *name, void __user *value, size_t size); |
-
add electronic signature to a pdf without re-coding ?
-
split/merge pages
-
spellcheck in wasm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I printed the code listings from the TorchScript silero_vad.jit's .code/_c.code attributes and tidied up the source a bit, nothing really fancy here | |
# This can be used for optimizing inference and enabling GPU inference | |
# Big thanks to the Silero company for making public their VAD checkpoint! | |
# The used checkpoint: | |
# https://github.com/snakers4/silero-vad/blob/a9d2b591dea11451d23aa4b480eff8e55dbd9d99/files/silero_vad.jit | |
import torch | |
import torch.nn as nn | |
class STFT(nn.Module): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# supports only strings, dicts and lists | |
# does not support multiline strings as the first list-item key `- run: |` | |
# does not preserve whitespaces in " |" literal string blocks as described in : https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html | |
def yaml_loads(content, convert_bool = True, convert_int = True, convert_dict = True): | |
def procval(val): | |
read_until = lambda tail, chars: ([(tail[:i], tail[i+1:]) for i, c in enumerate(tail) if c in chars] or [(tail, '')])[0] | |
val = val.strip() | |
is_quoted_string = len(val) >= 2 and ((val[0] == val[-1] == '"') or (val[0] == val[-1] == "'")) |