<div class="container">
<img src="http://thetvdb.com/banners/fanart/original/78804-61.jpg">
</div>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"database/sql" | |
"strconv" | |
"log" | |
"net/http" | |
"fmt" | |
"bytes" | |
"gopkg.in/gin-gonic/gin.v1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const debounceEvent = (callback, time = 250, interval) => | |
(...args) => | |
clearTimeout(interval, interval = setTimeout(callback, time, ...args)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream mesaApi { | |
server #endpoint; | |
} | |
upstream samosaApi { | |
server #endpoint; | |
} | |
server { | |
listen 80 default_server; |