Skip to content

Instantly share code, notes, and snippets.

View LeonTicharwa's full-sized avatar

Leon Ticharwa LeonTicharwa

  • Otomatik Robotics
  • Perth WA
View GitHub Profile

How we incorporate next and cloudfront (2018-04-21)

Feel free to contact me at [email protected] or tweet at me @statisticsftw

This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!

It assumes some knowledge of AWS.

Goals

@LeonTicharwa
LeonTicharwa / pid.cpp
Created June 7, 2019 03:54 — forked from bradley219/.gitignore
PID C++ implementation
#ifndef _PID_SOURCE_
#define _PID_SOURCE_
#include <iostream>
#include <cmath>
#include "pid.h"
using namespace std;
class PIDImpl