Aww Man is an internet radio show hosted by Rory Hinchey, which also books concerts in Prague for musicians who play unusual music.
The next live radio show is scheduled for March 22, 2026 at 11:00 CET with an in-studio performance by LÁZ . The streaming page (which launches in a new window) cycles through a limited number of archived shows otherwise.
The playlists section below has links to all recorded editions of the show in downloadable .mp3 format, shows are available as podcasts on Apple Podcasts, Amazon Music, and TuneIn.
Email: r{@}awwman.net
Facebook: https://www.facebook.com/awwmanradiobooking/
Instagram: https://www.instagram.com/awwmanradiobooking/
Podcast RSS feed: https://awwman.net/rss/awwman-podcast.rss
Click on a link below to expand it for content:
-upd-- Fisch Jiao Ben Pastebin May 2026
We welcome community contributions—open a PR on the dev branch or join the Discord channel #fisch‑jiao‑ben‑dev. The new Pastebin integration is more than a convenience feature; it’s a bridge between rapid collaboration and disciplined security . By default, Fisch jiao ben encourages safe defaults—encryption, expiry, and optional self‑destruct—so teams can share code, logs, or diagnostic data without turning a short‑term fix into a long‑term liability.
# Add your Pastebin API key cat >> ~/.config/fjb/credentials.toml <<EOF [pastebin] api_dev_key = "YOUR_PASTEBIN_DEV_KEY" EOF Now you’re ready to share snippets in seconds! | Milestone | ETA | Description | |-----------|-----|-------------| | v2.4 | Q3 2026 | Add support for private Pastebin groups (team‑only visibility). | | v2.5 | Q4 2026 | Introduce zero‑knowledge metadata indexing for fast search without leaking content. | | v3.0 | 2027 | Full multi‑backend orchestration – automatically fallback to Gist or S3 if Pastebin throttles. | -UPD-- Fisch jiao ben Pastebin
| Goal | How It’s Achieved | |------|-------------------| | | One‑liner API calls turn local functions into shareable URLs in < 200 ms. | | Portability | Works across Windows, macOS, Linux, and even on embedded devices (via a tiny C shim). | | Extensibility | Plug‑in architecture lets you drop in custom back‑ends (GitHub Gist, GitLab Snippets, etc.). | | Security‑by‑Design | Optional encryption and automatic sanitisation of user‑provided data. | We welcome community contributions—open a PR on the
Since its first release in 2022, the project has amassed ~12 k stars on GitHub and is used by a handful of open‑source CI pipelines to share diagnostic logs without polluting the main repository. 2.1 Native Pastebin Backend Version: 2.3.0 (released 2026‑04‑12) Key Feature: pastebin is now a first‑class backend alongside gists , local , and s3 . How it works – Under the hood, Fisch jiao ben uses the official Pastebin API ( api.pastebin.com/api/api_post.php ). The library abstracts the HTTP dance, exposing a single call: # Add your Pastebin API key cat >> ~/
Give it a spin, adopt the security checklist, and let us know how it improves your workflow. Happy pasting! 🚀 Lena Wu – Open‑source security enthusiast, maintainer of the Fisch jiao ben project. Contact: lena@fischjiao.dev | GitHub → fischjiao‑ben
- name: Upload failure log (if any) if: failure() run: | python - <<'PY' from fisch_jiao_ben import Snippet import os, json, base64 key = os.getenv("FJB_AES_KEY") # pulled from GitHub Secrets with open("test_output.txt") as f: payload = f.read() url = Snippet(payload)\ .set_language("text")\ .set_expiry("1D")\ .encrypt_with_key(key)\ .push(backend="pastebin", destroy_on_read=True) print(f"🔗 Failure log: url") # Optionally post the URL to Slack via a webhook PY Result: The team receives a short Slack message with a link that disappears after the first view. No sensitive data ever lands in a public repository. | Question | Answer | |----------|--------| | Do I need a Pastebin API key? | Yes. Register a free account on Pastebin, generate an API key ( api_dev_key ), and store it in ~/.config/fjb/credentials.toml . | | Can I use a self‑hosted Pastebin clone? | Absolutely. Set backend="pastebin" and override the endpoint via FJB_API_URL environment variable. | | What happens if the encryption key is lost? | The paste becomes unrecoverable – this is intentional to avoid accidental exposure. Keep a backup in a secure vault. | | Is there a limit on the number of pastes per day? | Free accounts are limited to ~ 100 pastes per day; paid accounts have higher quotas. Fisch jiao ben respects the Retry‑After header automatically. | | Can I retrieve a paste programmatically? | Yes, via Snippet.fetch(url, key=my_aes_key) . The library will decrypt automatically if a key is supplied. | 7️⃣ Getting Started – Quick Installation # Install the library (Python example) pip install fisch-jiao-ben[all]
from fisch_jiao_ben import Snippet