Skip to content

Instantly share code, notes, and snippets.

@Linkaan
Linkaan / build_nginx.sh
Last active March 15, 2017 13:45 — forked from MattWilcox/build_nginx.sh
Fetch, build, and install the latest nginx with the latest OpenSSL for RaspberryPi
#!/usr/bin/env bash
# URLs to the source directories
export SOURCE_OPENSSL=https://www.openssl.org/source/
export SOURCE_PCRE=ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
export SOURCE_NGINX=http://nginx.org/download/
# ensure that we have the required software to compile our own nginx
apt-get -y install curl wget build-essential
@Linkaan
Linkaan / playlist.ino
Created February 5, 2020 08:06
Playlist Arduino
#include <LiquidCrystal.h>
#include <avr/pgmspace.h>
#include <string.h>
#include "songs.h"
#define encoder0PinA 2
#define encoder0PinB 3
#define encoder0PinC 8
#define NOTE_C1 33