Investigating why building with .NET 5 builds a x86 executable instead of AnyCPU (as net461 did)
This file contains hidden or 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 | |
# Replace the ibus library (im-ibus.so) included in the gnome-42-2204 snap with | |
# a newer one that fixes surrounding text detection. | |
set -e | |
COLOR_RED='\x1b[31m' # $(tput setaf 1) | |
COLOR_GREEN='\x1b[32m' # $(tput setaf 2) | |
COLOR_BLUE='\x1b[34m' # $(tput setaf 4) | |
COLOR_RESET='\x1b(B\x1b[m' # $(tput sgr0) |
This file contains hidden or 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
curl --request POST \ | |
--url https://api.brevo.com/v3/emailCampaigns \ | |
--header 'accept: application/json' \ | |
--header "api-key: $BREVO_API_KEY" \ | |
--header 'content-type: application/json' \ | |
--data ' | |
{ | |
"inlineImageActivation": false, | |
"sendAtBestTime": false, | |
"abTesting": false, |
This file contains hidden or 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/python3 | |
# Installation: | |
# - Create virtual environment with `virtualenv .venv` | |
# - activate it `. .venv/bin/activate` | |
# - install brevo-python: `pip3 install brevo-python` | |
# - API key needs to be in BREVO_API_KEY environment variable | |
import os | |
import brevo_python | |
from brevo_python.rest import ApiException |
This file contains hidden or 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
Shellcheck bug |
This file contains hidden or 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
.idea/ | |
bin/ | |
obj/ | |
*DotSettings.user |
This file contains hidden or 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
2025-04-13: | |
name: Konfirmation | |
announce: Konfirmationsgottesdienst | |
artist: 'Pfr. Rainer Heuschneider' | |
start: '10:00' | |
2025-04-20: | |
artist: 'Pfr. Rainer Heuschneider' | |
start: '10:00' | |
2025-04-27: | |
name: eXtrakt-Gottesdienst |
This file contains hidden or 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 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
""" | |
This file contains hidden or 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 -e | |
# Submit a change for review | |
# Allow single-arg options to be passed to push -- principally -n | |
OPTIONS=() | |
while [[ "$1" == -* ]] | |
do | |
OPTIONS+=("$1") | |
shift |
This file contains hidden or 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
.idea/ | |
bin/ | |
obj/ |
NewerOlder