Skip to content

Instantly share code, notes, and snippets.

View DuncanHills's full-sized avatar

Duncan Hills Coffee Company DuncanHills

  • Batsfjord, Norway
View GitHub Profile
@DuncanHills
DuncanHills / nginx.conf
Created January 7, 2018 23:23 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
#!/bin/bash
# Installs the XCode command line tools if you don't have them
xcode-select --install
# Installs brew if you don't have it
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Makes your account the owner of /usr/local, which is preferred on single user Macs
sudo chown -R `whoami` /usr/local
# Installs all the dependencies for building libtorrent and rtorrent
brew install automake libtool boost curl lzlib libsigc++ openssl pkg-config xmlrpc-c
# Uninstall libtorrent-rasterbar if you already have it
@DuncanHills
DuncanHills / fourkind.py
Last active August 29, 2015 14:01 — forked from philihp/fourkind.py
from collections import defaultdict
from collections import defaultdict
n = 8
k = 4
good = 0;
for x in xrange(10**n - 1):
s = str(x).zfill(8);