Skip to content

Instantly share code, notes, and snippets.

View jkpl's full-sized avatar
🌜

Jaakko Pallari jkpl

🌜
View GitHub Profile
@jgeiger
jgeiger / Makefile
Created January 28, 2016 15:49
Default Makefile for building Go projects including Docker containers
View Makefile
SHELL := /bin/bash
PROJECT := github.com/jgeiger/example
PKGS := $(shell go list ./... | grep -v /vendor)
EXECUTABLE := example
PKG := example
DOCKER_REGISTRY := jgeiger
DOCKER_IMAGE_NAME := example
GIT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
.PHONY: build test golint docs $(PROJECT) $(PKGS) vendor
@acolyer
acolyer / service-checklist.md
Last active August 9, 2023 16:37
Internet Scale Services Checklist
View service-checklist.md
@plentz
plentz / nginx.conf
Last active September 26, 2023 09:55
Best nginx configuration for improved security(and performance)
View nginx.conf
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048