Skip to content

Instantly share code, notes, and snippets.

@ran-isenberg
ran-isenberg / Who Needs Developers Anyway? Let Automation Build Your SaaS (Almost).txt
Last active March 18, 2025 12:48
Who Needs Developers Anyway? Let Automation Build Your SaaS (Almost)
Serverless service backend blueprint: https://github.com/ran-isenberg/aws-lambda-handler-cookbook
Deep dive into the blueprint: https://www.youtube.com/watch?v=reWSpioKaUM
Awesome Serverless Bluepirnts:
https://github.com/ran-isenberg/awesome-serverless-blueprints
Automate IAM trust open source / SaaS control plane automation Article:
https://github.com/ran-isenberg/auto-cross-account-access-service
https://aws.amazon.com/blogs/mt/serverless-governance-of-software-deployed-with-aws-service-catalog/
@DanielKoehler
DanielKoehler / python - to - c#.md
Last active July 14, 2025 16:26 — forked from carols10cents/c#-to-rust.md
Python to C# Cheat Sheet

Python to C# Cheat Sheet

Variables

Python:

foo = 1
bar = "hi"
something_that_varies = 2 # Though strict immutability in Python isn't common.