Usage is simply
VERSION_PATH=<package name> python <(curl -Ls https://bit.ly/set__version__)
This will set the __version__
variable in `
Usage is simply
VERSION_PATH=<package name> python <(curl -Ls https://bit.ly/set__version__)
This will set the __version__
variable in `
""" | |
Take the "Derived Property: ID_Start" section from https://www.unicode.org/Public/13.0.0/ucd/DerivedCoreProperties.txt | |
and save to "DerivedCoreProperties.txt" | |
""" | |
from pathlib import Path | |
def get_value(s: str) -> int: | |
return int(f'0x{s}', 0) |
const log_el = document.getElementById('log') | |
function log(...messages) { | |
console.log(...messages) | |
log_el.innerText += '\n' + messages.map(m => JSON.stringify(m, null, 2)).join(' ') | |
} | |
function error(message) { | |
console.error(message) | |
log_el.innerText += '\n' + message |
from pathlib import Path | |
from httpx import AsyncClient | |
from aioaws.ses import SesConfig, SesClient, SesRecipient, SesAttachment | |
async def ses_demo(client: AsyncClient): | |
ses_client = SesClient(client, SesConfig('<access key>', '<secret key>', '<region>')) | |
message_id = await ses_client.send_email( | |
SesRecipient('[email protected]', 'Sender', 'Name'), | |
'This is the subject', |
const style = document.createElement('style') | |
style.innerHTML = '@media print {.no-print, .no-print *{display: none !important;}}' | |
document.querySelector('head').appendChild(style) | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function pending_images() { | |
const pending_images = Array.from(document.images).filter(img => !img.complete) |
gm() { | |
if git branch | grep -q '^[* ]*master$'; then | |
git checkout master | |
else | |
git checkout main | |
fi | |
} |
deploy: | |
needs: | |
- test | |
- lint | |
if: "success() && startsWith(github.ref, 'refs/tags/')" | |
runs-on: ubuntu-latest | |
env: | |
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} | |
HEROKU_APP: <heroku app name> |
#!/usr/bin/env python3 | |
""" | |
see https://gist.github.com/samuelcolvin/da2f521da5d2195fbfd65da3b8f58589 for details | |
""" | |
import os | |
import re | |
import sys | |
from pathlib import Path | |
#!/usr/bin/env python3 | |
""" | |
see https://gist.github.com/samuelcolvin/3b662d40e28213fbcd046743cb7068d8 for details | |
""" | |
import os | |
import re | |
import sys | |
from importlib import import_module | |