System Design Resiliency Cards
- Design for horizontal scaling to handle increased load.
- Implement load balancing to evenly distribute traffic across servers.
- Use sharding or partitioning to manage large datasets.
| #!/bin/bash | |
| # Interactive Anthropic Greenhouse apply — fills forms, pauses at CAPTCHA for manual solve. | |
| # Solve CAPTCHA in the browser window → press Enter here → script confirms success and moves on. | |
| cd /Users/ashrocket/ashcode/career | |
| LOG=/tmp/anthropic_apply_interactive.log | |
| exec > >(tee -a "$LOG") 2>&1 | |
| IDS=( | |
| 5192104008 5099753008 5155391008 4741102008 5141377008 |
| """Auto-apply to Greenhouse job postings using Playwright. | |
| Usage: | |
| python -m jobscout.apply_greenhouse --job-id greenhouse-anthropic-4902636008 | |
| python -m jobscout.apply_greenhouse --all-tuned | |
| python -m jobscout.apply_greenhouse --dry-run --job-id greenhouse-gusto-7577659 | |
| """ | |
| import argparse | |
| import json | |
| import os |
It Depends. On What? Tradeoffs
Clarify Problem, Scope, Requirements use cases, who & how? in what sequence of events will users act Traffic, transactions per second at each bottleneck. request types, read v writes Application profiles, cpu, memory intensive, idempotency stateless, stick sessions
Load Balancing & CDNs
A Pen by Cristi Nebunu on CodePen.
| """ | |
| This directive allows you to quickly & easily configure AWS Lambda resolvers within your AWS AppSync API. | |
| https://docs.amplify.aws/cli-legacy/graphql-transformer/function/ | |
| https://docs.amplify.aws/cli/graphql/custom-business-logic/#lambda-function-resolver | |
| """ | |
| directive @function(name: String!, region: String) on FIELD_DEFINITION | |
| """This directive allows results to be deferred during execution""" | |
| directive @defer on FIELD |