LLM managing calendars

I have been building out my own personal LLM assistant (Gemma I like to call it). In one particular app I have the LLM maintain a bullet-journal style log for me and I simply provide chat-based updates. I really like using this tool to help keep my notes organized throughout the day, but I've also given it access to some tools for calendar management and that has been so awesome, certainly now one of my favorite LLM uses. I really enjoy letting the AI manage my calendar events for me as part of ...
Read post

My LLM integrated journal / daily notes app

...
Read post

AWS DynamoDB

Useful tools / links https://zaccharles.github.io/dynamodb-calculator/ This tool takes the JSON representation of a DynamoDB item and tells you its size in bytes and how many capacity units it'll consume when reading and writing. https://dynobase.dev/dynamodb-pricing-calculator/ DynamoDB pricing is a double-edged sword. While it provides infinite scalability, it can also drain out your wallet pretty quickly. Forecast your DynamoDB costs with this simple calculator. ...
Read post

Shell script tips and reminders

Bash Strict Mode: #!/bin/bash # http://redsymbol.net/articles/unofficial-bash-strict-mode/ set -euo pipefail IFS=$'\n\t' ...
Read post

Markdown Examples

An h1 header H1 H2 H3 H4 H5 H6 Italic italic Bold ~strikethrough~ (does not work) mono Link quote asdf asdf block asdf def test(a: str) -> int: return int(a) def test(a: str) -> int: return int(a) Paragraphs are separated by a blank line. 2nd paragraph. Italic, bold, and monospace. Itemized lists look like: this one that one the other one Note that --- not considering the asterisk --- the actual text content starts at 4-columns in. Block quotes are written li...
Read post