Skip to content

Instantly share code, notes, and snippets.

View harplife's full-sized avatar
🎯
Focusing

Ben harplife

🎯
Focusing
View GitHub Profile
@harplife
harplife / nginx.conf
Created December 16, 2020 05:27 — 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
@harplife
harplife / README.md
Created April 17, 2020 06:49 — forked from mbostock/README.md
Underscore’s Equivalents in D3

Collections

each(array)

Underscore example:

_.each([1, 2, 3], function(num) { alert(num); });