Skip to content
Standard
Reader
Log in
Tag
Lambda
Articles and publications tagged Lambda across the Atmosphere.
40
articles
9
publications
Articles
Publications
Recent
Recent
Trending
Most popular
Dirk Bachhausen
·
Aug 3, 2026
(taz) Queeres Jugendnetzwerk Lambda: “Mit uns fällt die Vernetzung weg”
3. August 2026 Die Bundesregierung streicht dem queeren Jugendnetzwerk die Förderung. Damit geht der politische Rückhalt verloren, sagt Bundesgeschäftsführerin Kim Alexandra Trau. Direktlink Hier den Artikel weiter lesen...
fallt
·
jugendnetzwerk
subaud
·
Jul 6, 2026
A CDK Lambda Bundle-Size Gate for CI
AWS
·
CDK
subaud
·
Jul 6, 2026
A CDK Lambda Bundle-Size Gate for CI
A deploy in one of my CDK projects passed every gate I have — CI, cdk synth, code review — and merged. The CloudFormation stack deployment to AWS failed with: InvalidRequest: Unzipped size must be smaller than 262144000 bytes 262,144,000 bytes is 250 MiB, AWS's hard limit on the unzipped deployment package of a zip-packaged Lambda. A few transitive dependencies had crept in and pushed one function's bundle over the edge. It failed in an uncomfortable place. cdk synth builds the CloudForma
AWS
·
CDK
Startseite - Demo für Alle
·
Jun 11, 2026
Wie Brüssel ein „Kinderrecht“ auf queeres Leben propagiert
LSBT
·
Brüssel
Network World [Unofficial]
·
May 19, 2026
Google opens TPUs to enterprises beyond its own cloud via Blackstone JV
CPUs and Processors, Data Center
·
statement
Sahil Kapoor's Playbook
·
May 12, 2026
EC2
Amazon EC2 (Elastic Compute Cloud) is AWS's primary virtual machine service. EC2 provisions virtual servers (instances) in minutes, billed by the second, with a wide selection of CPU, memory, GPU, and network configurations. EC2 launched in 2006 and remains the bedrock compute primitive on which much of AWS is built. Core concepts * Instance type. A family + size that defines CPU, memory, storage, and network capacity (e.g. m7i.xlarge, c7g.large, g5.2xlarge). * AMI (Amazon Machine Image). T
AWS
·
Cloud Computing
Sahil Kapoor's Playbook
·
May 12, 2026
S3
Amazon S3 (Simple Storage Service) is AWS's object storage service. It stores arbitrary blobs of data (objects) in named containers (buckets), accessed over HTTPS via the S3 API. S3 is the original AWS service and the canonical example of an object store; its API has become a de facto standard supported by many other vendors. Core concepts * Bucket. A globally-named container for objects, scoped to a region. * Object. A blob plus metadata, identified by a key (which looks like a path but is
AWS
·
Cloud Computing
Sahil Kapoor's Playbook
·
May 12, 2026
Serverless
Serverless is a cloud execution model in which the provider runs and scales the underlying compute, and the customer is billed only for actual usage (request count, execution time, memory). Despite the name, servers still exist; they are simply invisible to the customer. "Serverless" usually refers to functions-as-a-service (FaaS), but increasingly includes serverless databases, queues, and gateways. Characteristics * Scale to zero. No traffic, no instances, no bill. * Event-driven invocati
Cloud Computing
·
AWS
Startseite - Demo für Alle
·
Apr 22, 2026
Pornos im Schulunterricht: Schleife ist kein Einzelfall
Sexualaufklärung
·
Initiative Elternaktion
Sahil Kapoor's Playbook
·
Mar 27, 2026
AWS
Amazon Web Services (AWS) is Amazon's cloud computing platform, comprising more than two hundred services for compute, storage, networking, databases, machine learning, and other capabilities, billed by usage. How it works Resources are organized by region (a geographic area with multiple isolated availability zones) and by account. Identity and access are governed by IAM, which mediates every API call. Services are consumed through APIs (CLI, SDK, or console) and billed by usage at fine-grai
IAM
·
Cloud Computing
subaud
·
Mar 12, 2026
MixCraft - Adding Claude Skills to the music assistant
MCP
·
Apple Music
subaud
·
Mar 12, 2026
MixCraft - Adding Claude Skills to the music assistant
MixCraft connects Claude to Apple Music. The infrastructure post explains why the server is hosted remotely — Apple Music requires server-side JWT signing with a private key, so a local MCP server wasn't an option. This post covers the other side: the Apple Music integration itself, the adapter pattern that makes the server extensible, and the Claude Code plugin that ships alongside it. The source is at github.com/schuettc/mixcraft-app. The Adapter Interface The MCP server doesn't call Ap
MCP
·
Apple Music
subaud
·
Mar 12, 2026
MixCraft - A hosted music assistant MCP
MCP
·
AWS
subaud
·
Mar 12, 2026
MixCraft - A hosted music assistant MCP
Several months ago, I was looking for some new music and decided to give Claude a crack at finding me some new music. i'm trying to make an album based playlist. It should consist of 3 (mostly) complete albums. Right now I have Hum - Downward is Heavenward and Weezer - Pinkerton. These two go together very well. Is there a third album we can include in this? This fairly innocuous prompt resulted in Claude suggested a completely unknown to me band that very quickly became one of my
MCP
·
AWS
subaud
·
Feb 20, 2026
Modernizing a CDK Project - Private RDS with Lambda
AWS
·
RDS
subaud
·
Feb 20, 2026
Modernizing a CDK Project - Private RDS with Lambda
I recently revisited a CDK project I published in late 2022 — cdk-private-rds-with-lambda — and ended up rewriting most of it. The original worked fine, but it carried complexity that didn't earn its keep: projen for project management, an EC2 bastion host for database access, password-based auth via Secrets Manager, and no automated security checks. Here's what changed and why. Removing Projen Projen generates and manages your project configuration files — tsconfig.json, .gitignore, pack
AWS
·
RDS
subaud
·
Jun 15, 2025
Automating Qualtrics Survey Data Downloads with Lambda
Learn how to build a Lambda function that automatically downloads survey response data from Qualtrics using their export API
AWS
·
Lambda
Devtools FM
·
Jun 1, 2025
Peter Pistorius - Redwood SDK
Peter Pistorius discusses Redwood's evolution into a serverless React Server Components framework and his vision for personal software development.
redwood
·
open source
subaud
·
May 30, 2025
Using psycopg2 with AWS Lambda and CDK: Binary vs Source Solutions
Getting psycopg2 to work in AWS Lambda can be frustrating. This post shows you two reliable solutions - using pre-compiled binaries for simplicity, and building from source with Docker for production workloads.
CDK
·
AWS
subaud
·
May 12, 2025
Secure S3 Image Uploads and Viewing with Presigned URLs and Cognito
A deep dive into securely managing user-specific image uploads to S3 using presigned URLs and authorizing access for viewing with AWS Cognito.
AWS
·
Storage
subaud
·
Apr 4, 2025
Deep Dive: Building 'alphabetizi.ng'
Exploring the architecture and interesting features of a serverless survey application built with AWS CDK, React, DynamoDB, and Lambda@Edge
AWS
·
CDK
subaud
·
Mar 16, 2025
Send Email with Microsoft Graph from Lambda
A detailed guide on sending emails with Microsoft Graph from a Lambda function
AWS
·
CDK
subaud
·
Jan 6, 2025
Securing API Gateway with Lambda@Edge
A detailed guide on implementing secure API Gateway endpoints using Lambda@Edge for request verification and API key management
AWS
·
CDK
subaud
·
Oct 31, 2024
CDK Cognito Protected API Demo with Postman
In this demo we will see how to deploy a Cognito protected API and test it with Postman using OAuth 2.0 for authentication and login
CDK
·
Cognito
Home
Latest
Discover
Search