Skip to content

Instantly share code, notes, and snippets.

View gondar00's full-sized avatar
🧘

Gandharv gondar00

🧘
View GitHub Profile
@gondar00
gondar00 / convertKeysToLower.js
Created April 26, 2023 06:46 — forked from radutta/convertKeysToLower.js
Convert JSON Keys to lowercase in Javascript
function keysToLowerCase(obj) {
if(obj instanceof Array) {
for (var i in obj) {
obj[i] = keysToLowerCase(obj[i]);
}
}
if (!typeof(obj) === "object" || typeof(obj) === "string" || typeof(obj) === "number" || typeof(obj) === "boolean") {
return obj;
}
var keys = Object.keys(obj);
@gondar00
gondar00 / deploy-static-site-heroku.md
Created March 24, 2020 09:04 — forked from wh1tney/deploy-static-site-heroku.md
How to deploy a static website to Heroku

Gist

This is a quick tutorial explaining how to get a static website hosted on Heroku.

Why do this?

Heroku hosts apps on the internet, not static websites. To get it to run your static portfolio, personal blog, etc., you need to trick Heroku into thinking your website is a PHP app. This 6-step tutorial will teach you how.

Basic Assumptions

package main
import (
"database/sql"
"strconv"
"log"
"net/http"
"fmt"
"bytes"
"gopkg.in/gin-gonic/gin.v1"
@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

@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 / 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 / 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