Skip to content

Instantly share code, notes, and snippets.

View iWirk's full-sized avatar
💭
I may be slow to respond.

Saber Nouira iWirk

💭
I may be slow to respond.
View GitHub Profile
@iWirk
iWirk / Install protobuf 3.6.1 on Ubuntu 16.04
Created April 15, 2020 13:07 — forked from ryujaehun/Install protobuf 3.6.1 on Ubuntu 16.04
Install protobuf 3.6.1 on Ubuntu 16.04
#! /bin/bash
# Make sure you grab the latest version
curl -OL https://github.com/google/protobuf/releases/download/v3.6.1/protoc-3.6.1-linux-x86_64.zip
https://github.com/google/protobuf/releases/download/v3.6.1/protoc-3.6.1-linux-x86_64.zip
# Unzip
unzip protoc-3.6.1-linux-x86_64.zip -d protoc3
# Move protoc to /usr/local/bin/
sudo mv protoc3/bin/* /usr/local/bin/
@iWirk
iWirk / nginx-boringssl-build-script-debian.sh
Last active April 13, 2019 19:29 — forked from neilstuartcraig/nginx-boringssl-build-script-debian.sh
This builds NGINX from source with BoringSSL for Debian (alike?) systems with systemd (e.g. Debian Jessie)
#!/bin/bash
LATESTNGINX="1.15.9"
BUILDROOT="/tmp/boring-brotli-nginx"
# Pre-req
sudo apt-get update
sudo apt-get upgrade -y
# Install deps