Skip to content

Instantly share code, notes, and snippets.

View delasy's full-sized avatar

Aaron Delasy delasy

View GitHub Profile
@delasy
delasy / n8n-on-aws.md
Created August 23, 2022 09:01
N8N on AWS

N8N on AWS

  1. Create EC2 instance:
  • linux/ubuntu 20.04
  • MINIMUM 2GB RAM
  • Click create
  1. Make sure to add 443 port in security groups
  2. Create Cloudflare domain pointing at server IP address, proxy status - DNS ONLY
  3. SSH to instance and follow instructions:

Install packages

@delasy
delasy / output.txt
Created April 24, 2021 23:49
Program to check speed of different setTimeout arguments
This program was created to determine which setTimeout is faster
Timeout of -1 = 1ms
Timeout of 0 = 1ms
Timeout of 1 = 1ms
Timeout of 2 = 2ms
Timeout of 3 = 3ms
Timeout of 4 = 5ms
Timeout of 5 = 6ms
Timeout of 6 = 7ms
Timeout of 7 = 8ms