Skip to content

Instantly share code, notes, and snippets.

View gondar00's full-sized avatar
🧘

Gandharv gondar00

🧘
View GitHub Profile
@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);
}
@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 / nginx.conf
Created May 19, 2017 05:41
NGINX configuration
upstream mesaApi {
server #endpoint;
}
upstream samosaApi {
server #endpoint;
}
server {
listen 80 default_server;
@gondar00
gondar00 / index.html
Created December 14, 2017 20:13
basic .html file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>React 101 Demo!</title>
<style media="screen">
.demo {
border: 1px solid #ccc;
margin: 1em;
padding: 1em;
const jsContainer = document.getElementById("js");
const reactContainer = document.getElementById("react");
const render = () => {
jsContainer.innerHTML = `
<div class="demo">
Hello JS
<input />
<p>${new Date()}</p>
</div>
@gondar00
gondar00 / media-query.css
Created February 27, 2018 09:50 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@gondar00
gondar00 / string-utils.js
Last active March 31, 2020 21:10 — forked from jonlabelle/string-utils.js
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
https://levelup.gitconnected.com/advanced-regex-find-and-replace-every-second-instance-of-a-character-c7d97a31516a
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str){
return str.toLowerCase();
@gondar00
gondar00 / object-fit-css.md
Created August 1, 2018 10:29 — forked from miquels/object-fit-css.md
object-fit equivalents in pure css

object-fit equivalents in pure css

HTML

<div class="container">
  <img src="http://thetvdb.com/banners/fanart/original/78804-61.jpg">
</div>

Object-fit:contain

import Turndown from 'turndown';
import scrapeIt from 'scrape-it';
import striptags from 'striptags';
import Url from 'url';
export async function fetchIndeedJobs(url) {
try {
const result = await new Promise(((resolve, reject) => {
scrapeIt(url, {
jobs: {
const debounceEvent = (callback, time = 250, interval) =>
(...args) =>
clearTimeout(interval, interval = setTimeout(callback, time, ...args));