Skip to content

Instantly share code, notes, and snippets.

View m3zaman's full-sized avatar

MM Mamunuzzaman m3zaman

  • Dhaka, Bangladesh
View GitHub Profile
// by davey whyte aka @beesandbombs
void setup(){
size(600,520,P3D);
colorMode(HSB,1);
noStroke();
}
float R = 160, r = 55;
int N = 720;
@m3zaman
m3zaman / nginx.conf
Last active August 29, 2015 14:22 — forked from calebwoods/nginx.conf
server { listen 80;
server_name example.com;
access_log /var/log/example.com/nginx.access.log;
error_log /var/log/example.com/nginx.error.log;
root /var/www/apps/example.com/public;
charset utf-8;
location / {
rewrite ^ https://$host$request_uri? permanent;
}