Skip to content

Instantly share code, notes, and snippets.

View Thomas-X's full-sized avatar
💭
🤔 💻

Thomas Zwarts Thomas-X

💭
🤔 💻
View GitHub Profile
@mstevenson
mstevenson / Fps.cs
Last active November 8, 2024 02:25
An accurate FPS counter for Unity. Works in builds.
using UnityEngine;
using System.Collections;
public class Fps : MonoBehaviour
{
private float count;
private IEnumerator Start()
{
GUI.depth = 2;

How to setup AWS lambda function to talk to the internet and VPC

I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.

So it might be really unintuitive at first but lambda functions have three states.

  1. No VPC, where it can talk openly to the web, but can't talk to any of your AWS services.
  2. VPC, the default setting where the lambda function can talk to your AWS services but can't talk to the web.
  3. VPC with NAT, The best of both worlds, AWS services and web.