-
- Private work.
- The eagles have the worst point differential of any 10-3 team in NFL history: https://www.statmuse.com/nfl/ask/worst-point-differential-of-a-team-with-10-or-more-wins-and-3-or-fewer-losses-in-a-season-nfl
- More re:invent breakout sessions. Almost all serverless content.
- Remember eventbridge can handle routing. Send events to lambda, trigger step functions, whatever.
- SAM Accelerate (
--sync
) deploys your code to a dev env in the cloud for testing. That way, you don’t have to mock everything (serverless def requires more mocking that a full local app).
- Application Composer – a UI that you can use to diagram your full stack. It will then autogenerate the templates for you.
- Isolate your lambda code that touches the db, just like you do in the flask app.
- Testing in the cloud against a full dev stack is very very valuable.
- Remember aws itself uses an eventbridge event bus to communicate between aws services.
- Eventbridge’s event bus is the most generic pubsub interface. It has routing rules, filter polices, archive history, etc. It can push, get polled, whatever. It’s the central hub of complete decoupling. SQS is a very specific service for a single queue. Most reliable for FIFO, a bit more overhead. It’s a pretty common model to have eventbridge be the primary bus and messages continue on to specific SQS queues for consumer processing.
- Changed trays. Finished harder gum (probably won’t buy again, just chew regular). Meal prep (smoothies powders liver). Aquarium maintenance.
- Linear = github jira.
- Fireflies is pretty sweet. Played with it a little more today.
- Rogo = llm for business use cases.
- Remember that
where
operates before groups/aggregates in sql. having
operates after (so you can condition on counts, etc).