Hello World — Engineering Blog Initialized
First post on inexpresivo.dev. Testing the MDX pipeline: syntax highlighting, Mermaid diagrams, and custom components.
1 min read
metanextjsmdx
Welcome to inexpresivo.dev — engineering notes on AWS, backend systems, and cloud architecture.
Code example
import boto3
def get_secret(secret_name: str) -> dict:
client = boto3.client("secretsmanager")
response = client.get_secret_value(SecretId=secret_name)
return response["SecretString"]python