<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
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); | |
} |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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; |
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
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
/* | |
##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
// 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
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
const debounceEvent = (callback, time = 250, interval) => | |
(...args) => | |
clearTimeout(interval, interval = setTimeout(callback, time, ...args)); |
OlderNewer