This are just a couple of handy, opinionated visual fixes that I personally use in my self-hosted instance of Miniflux.
You're more than welcome to grab a copy and use with your own instance, or modify to suit your needs.
This are just a couple of handy, opinionated visual fixes that I personally use in my self-hosted instance of Miniflux.
You're more than welcome to grab a copy and use with your own instance, or modify to suit your needs.
| version: '3' | |
| services: | |
| minio: | |
| image: quay.io/minio/minio | |
| container_name: minio | |
| restart: unless-stopped | |
| env_file: minio.env | |
| command: server --console-address ":9001" /data | |
| ports: |
This Gist provides a solution to periodically capture screenshots of your Mac, and create therefrom a searchable PDF archive so that you can always get an answer to the “what, when, and where” questions about your usages.
To use these scripts:
rewind, then:
~/bin (or other fixed path you prefer);| (() => { | |
| const kModPath = "/instance/"; | |
| window.addEventListener("DOMContentLoaded", () => { | |
| const mods = [ | |
| mod_style, | |
| mod_highlight, | |
| mod_math, | |
| ]; |
| // Core assets | |
| let coreAssets = []; | |
| // On install, cache core assets | |
| self.addEventListener('install', function (event) { | |
| // Cache core assets | |
| event.waitUntil(caches.open('app').then(function (cache) { | |
| for (let asset of coreAssets) { | |
| cache.add(new Request(asset)); |
| :root { | |
| /* #7159de (similar to Obsidian purple) */ | |
| --block-ref-line-color: grey; | |
| --block-ref-line-type: solid; | |
| --block-ref-line-size: 2px; | |
| /* Set to "inherit" for no bg color */ | |
| --block-ref-hover-bg-color: #d4d0d026; | |
| } | |
| /* |
| export default class EventEmitter | |
| { | |
| constructor() | |
| { | |
| this.callbacks = {} | |
| this.callbacks.base = {} | |
| } | |
| on(_names, callback) | |
| { |
| { | |
| "_pleroma_theme_version": 2, | |
| "theme": { | |
| "themeEngineVersion": 3, | |
| "shadows": { | |
| "panel": [ | |
| { | |
| "color": "#000000", | |
| "x": 0, | |
| "y": "10", |
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = ""; | |
| /* Optional folder name such as "Clippings/" */ |
| _APP_ENV=production | |
| _APP_LOCALE=en | |
| _APP_OPTIONS_ABUSE=enabled | |
| _APP_OPTIONS_FORCE_HTTPS=disabled | |
| _APP_OPENSSL_KEY_V1=your-secret-key | |
| _APP_DOMAIN=localhost | |
| _APP_DOMAIN_TARGET=localhost | |
| _APP_CONSOLE_WHITELIST_ROOT=enabled | |
| _APP_CONSOLE_WHITELIST_EMAILS= | |
| _APP_CONSOLE_WHITELIST_IPS= |