brainstorm

Embeded Mermaid Editor

While editing a markdown document on an ipad editor, it would be useful to be able to open up a mermaidjs codeblock in its own editor. Should be able to ```mermaid graph LR A ---> B ``` Selecting this would load the same code into a Mermaid editor that would give you a custom view to edit it and then saving it would update the copy in the original document

Read More →
beta

Dev Environment Launcher

The goal to create a simple watcher that could help with running one’s dev environment. Similar to something like xinetd, navigating to one.local in the above example, would handle spinning up django runserver {port} if it was not already running. This would help with the use case where I might be trying to run many django projects at once, but need to set a different port for each. Something like this may already partially be in launchd but I need to do some investigation. Perhaps modifying our environment file would automate pushing the config to launchd that’s required.

Read More →
beta

VSCode Worklog

For managing some of my worklogs, would like to build my own extension for VSCode to add assorted shortcuts. Similar to the existing vscode-hugo, I would like commands to create new posts, but also some other shortcusts. Search by tag in frontmatter Rename page and automatically add in alias to frontmatter References https://github.com/rusnasonov/vscode-hugo
retired

PromQL Parser in Python

Can be done with py-promql-parser which is probably much easier. How difficult it would be to re-use some of the yacc stuff for Prometheus’ go parser, and make a proper parser for Python. Alternatively could use setuptools-golang to build a go library that can be exported and used with Python to make a kind of promtool Python library. This would mostly be useful for things like checking rules or queries for syntax errors.

Read More →

Flows

graph LR subgraph external ifttt((IFTTT)) owntracks((OwnTracks)) smartcitizen((SmartCitizen Kit)) end subgraph apps timebox{{Timebox}} quickstats{{QuickStats}} nagger([Nagger]) end subgraph web django celery db end db[(Postgres)] mqtt{ MQTT } celery -- django django -- celery django -- db django mqtt ifttt -- django mqtt -- django mqtt -- nagger owntracks -- mqtt quickstats -- django smartcitizen -- mqtt timebox -- django timebox -- mqtt click owntracks "https://owntracks.org/booklet/" click smartcitizen "https://smartcitizen.me/" click ifttt "https://ifttt.com/"
brainstorm

Status Bar RSS Reader

Something simple to replace feedsapp which seems mostly unmaintained Would like to have something with basic feed support with favicons to make it easier to identify feeds. Could try using feedkit though looks like its last update was 2020.

Worklog 2019-10-29

Activitypub Added some stubs for inbox and outbox for seeing what types of objects may come in. Will handle proper validation later