HK.cloud-engineer

// LIVE SANDBOXES

Real AWS Infrastructure You Can Play With

Every demo runs on actual AWS Lambda, API Gateway, and DynamoDB. Not simulations.

Serverless URL ShortenerLIVE
Code

Paste any URL and get a short link. Lambda generates the code, DynamoDB stores it, TTL auto-expires after 30 days.

Next.jsReact Hook FormZodLambdaAPI GatewayDynamoDB

POST /api/short → Lambda → DynamoDB putItem → return shortCode

Lambda Image OptimiserLIVE

Enter an image URL and get it resized and converted to WebP. Sharp runs inside Lambda — no servers.

SharpNode.jsZodLambdaAPI GatewayS3CloudFront

POST /api/resize → Lambda (Sharp) → S3 upload → CloudFront URL returned

Resume Download CounterLIVE

Every resume download fires a Lambda function that increments a DynamoDB counter. This is that counter — live.

0

Resume Downloads

Real-time counter in AWS DynamoDB, updated on every download.

Next.jsFramer MotionLambdaAPI GatewayDynamoDB

GET /api/counter → Lambda → DynamoDB getItem → return count