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
#!/bin/bash | |
#LISTEN_URL='rtmp://localhost:1935/live/app' | |
LISTEN_URL='rtmp://127.0.0.1:1935/live/app' | |
TWITCH_LIVE_SERVER="live-fra" | |
CONFIG_PATH="$HOME/.config/obs-studio" | |
TWITCH_KEY_F="$CONFIG_PATH/twitch.key" |
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
#!/usr/bin/env python3 | |
# Copyright 2023, François Revol <[email protected]> | |
# MIT license | |
# | |
# csv2ics: convert a sensible schedule table to an icalendar program | |
# Initially wrote for https://2023.eurobsdcon.org/program/ | |
import csv | |
from datetime import datetime, timedelta | |
import pytz |
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
<?php | |
/* | |
* voyages-sncf.php - generates urls to voyages-sncf.com with prefilled form items. | |
* | |
* Copyright 2011, Francois Revol, [email protected]. | |
* Distributed under the terms of the MIT License. | |
*/ | |
/* |
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
#!/usr/bin/env python | |
"""Re-order the files in a patch according to a set of rules. | |
Input is accepted on stdin, and written to stdout. | |
Usage: cat patch | reorder-patch > reordered-patch | |
""" |