Extracted from Notion export (C1+C2).
Updated to remove stale references (Cobot migration, COVID protocols, old pricing).
Topics are current; specific details may need verification.
- The BID is already good at some things — capital improvements are clear and effective, and the F&B-focused marketing has real traction
- The challenge isn't that we're failing — it's that marketing, events, and resource conversations outside of those strengths have gone in circles for 2+ years
- Sydney identified three pain points: restaurant-heavy events, no marketing committee, general dissatisfaction with marketing/PR
Git blame tells you who last edited a line, but in human+AI collaborative coding, we need finer-grained attribution: what the human wrote, what the agent generated untouched, and what they shaped together.
Byline — every piece of work gets a byline. The byline tells you whose hands shaped it.
Created: 2026-02-05 Status: Draft — awaiting approval Goal: Build a continuous session insights system that extracts rich facets from Claude Code sessions and generates weekly/monthly reports tied to Alex's businesses, priorities, and relationships.
The reminders_disabled parameter is accepted by both /v1/event/create and /v1/event/update endpoints without error, but the value is not persisted. Events always return reminders_disabled: null.
curl -X POST "https://public-api.luma.com/v1/event/update" \
-H "x-luma-api-key: [REDACTED]" \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Common "no reply" emails, EXCEPT google docs notifications (which I actually want) | |
| <apps:property name='hasTheWord' value='from:(noreply OR no-reply OR donotreply) -docs.google.com' /> | |
| Common app & service notifications | |
| <apps:property name='hasTheWord' value='has joined your Personal Meeting Room' /> | |
| <apps:property name='from' value='no-reply@zoom.us' /> | |
| <apps:property name='from' value='venmo@venmo.com' /> | |
| <apps:property name='from' value='donotreply@godaddy.com' /> | |
| <apps:property name='from' value='no_reply@email.apple.com' /> | |
| <apps:property name='from' value='no-reply@dropbox.com' /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* After switching stackingthebricks.com to ConvertKit in the last few months, I found a handful of things */ | |
| /* that seemed to slow me down/force additional scrolling, so I tried hiding them from the UI with these UserStyles */ | |
| /* Obviously, these are without warrantee and could potentially break, so don't blame me if they do. */ | |
| /* Also, I am not a designer so these may not make the UI better in _your_ eyes, but they make it better for me. 😅 */ | |
| /* Hide the dashboard graph (not useful enough to be there taking up 3/4 of the screen real estate every time I log in) */ | |
| .account-graph {display:none;} | |
| .subscribers-index div[data-component='ReportsContainer'] { display:none;} |