Skip to content

Instantly share code, notes, and snippets.

View gondar00's full-sized avatar
🧘

Gandharv gondar00

🧘
View GitHub Profile
@gondar00
gondar00 / drag-drop-replace.js
Created February 10, 2020 11:04
Replaces an element in a drag drop list and updates its sequence number
const arr = [{ name:'a', sequence: 0 }, { name:'b', sequence: 1 }, { name:'c', sequence: 2 }, { name:'d', sequence: 3 }]
const oldSequence = 3
const updatedSequence = 1
// Remove the object from the array from the original position
// .splice modifies the actual array
const updatedObject = arr.splice(oldSequence, 1)
// Adds the object to the array on the updated position
arr.splice(updatedSequence, 0, ...updatedObject)
// updates the sequence number of all the elements
package main
import (
"database/sql"
"strconv"
"log"
"net/http"
"fmt"
"bytes"
"gopkg.in/gin-gonic/gin.v1"
const debounceEvent = (callback, time = 250, interval) =>
(...args) =>
clearTimeout(interval, interval = setTimeout(callback, time, ...args));
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: {
@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
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 / 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;
@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;