Skip to content

Instantly share code, notes, and snippets.

View gondar00's full-sized avatar
🧘

Gandharv gondar00

🧘
View GitHub Profile
@gondar00
gondar00 / nginx.conf
Created May 19, 2017 05:30 — 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
@gondar00
gondar00 / array_flatten.js
Created June 9, 2016 12:08
Flatten an Array of Arbitrarily nested Arrays of Integers into a Flat Array of Integers Raw
var arr_flat = function(input_arr, result) {
var final_results = result || [];
if (input_arr && input_arr.length > 0)
{
input_arr.forEach(function(value)
{
if (typeof value === 'number')
{
final_results.push(value);
}