Segmentation fault for AWS CDK in Bun
Unfortunately testing AWS CDK with Bun failed using the image from the previous post: .PHONY: demo demo: rm -rf demo mkdir -p demo && cd demo \ && bun x cdk init app --languag...
Unfortunately testing AWS CDK with Bun failed using the image from the previous post: .PHONY: demo demo: rm -rf demo mkdir -p demo && cd demo \ && bun x cdk init app --languag...
Similarly to how AWS CDK CLI is used with Docker, we can run Bun too: #.PHONY: bun bun: docker pull oven/bun export sh='#!/usr/bin/env bash\n' \ && echo $${sh}'docker run --rm -it --i...
Example stack for subscribing to topics from various accounts from a single consumer account: from aws_cdk import aws_sns, aws_sqs, aws_lambda, aws_lambda_event_sources, aws_sns_subscriptions impo...
Part 1 shows how to enable cross-account access using role suggested by AWS. Let’s make it more secure by limiting: trust relationships for that role to only CloudWatch cross-account service, ...
Using CDK CLI via Docker container as shown in the previous post. Define stack in app.py: import os from aws_cdk import aws_iam import aws_cdk class CloudWatchSharingStack(aws_cdk.Stack): ...
Reference guide by AWS: https://docs.aws.amazon.com/cdk/v2/guide/hello_world.html Using local Node.js Install NVM as described in https://github.com/nvm-sh/nvm?#installing-and-updating In your ...
Create a manifest.json { "name": "WebX", "permissions": ["activeTab", "webNavigation"], "version": "0.1.0", "description": "Web Experience", "manifest_version": 3, "host_pe...
Converting WebP to JPEG and PNG on macOS Converting WebP images to JPEG or PNG can be done using sips: $ sips -s format jpeg 1.webp --out 1.webp.jpg $ sips -s format png 1.webp --out 1.webp.png ...
Original guide Watch Video and read Meet Jekyll - The Static Site Generator by Techno Tim. Fixes and workarounds Sign in to GitHub and use this template to generate a brand new repository and n...