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 flag = 0; | |
autoUnmountify = (ele) => { | |
const wrap = <span>{ele}</span>; | |
const unmountify = flag ? wrap : ele; | |
flag = !flag; | |
return unmountify; | |
} |
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
#!/usr/bin/env ruby | |
filename = ARGV.first | |
file = File.new(filename, "r") | |
while (line = file.gets) | |
k, v = line.split('=', 2) | |
ev = `echo "#{v}" | base64`.gsub("\n",'') | |
puts " #{k}: #{ev}" | |
end | |
file.close |
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
#!/usr/bin/env bash | |
## strip newlines of envs | |
# used some code from http://stackoverflow.com/a/11746174 | |
string=`printenv` | |
arr=() | |
while read -r line; do | |
arr+=("$line") |
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
#!/usr/bin/env bash | |
# based on https://store.docker.com/editions/community/docker-ce-server-ubuntu | |
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable" | |
sudo apt update | |
sudo apt-get install -y docker-ce | |
sudo usermod -aG docker $USER |
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
port module Echo exposing (..) | |
import Platform exposing (program, Program) | |
import Json.Decode | |
-- importing Json.Decode is necessary for now because of https://github.com/elm-lang/elm-make/issues/127 | |
---- MODEL ---- | |
type alias Model = | |
{ crap : String } |
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 { hss, scene, storage, market } = require('hire-scene-stealer') | |
hss | |
.scene(scene | |
.url('https://google.com') | |
.selector('img#hplogo') | |
.domIndex(0) // you can skip if it's 0 | |
.viewport(900, 700) | |
) | |
.storage(storage |
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
#!/usr/bin/env bash | |
url='https://github.com' # or whatever url you want to check | |
sec=3 | |
while true; do | |
date -u +%H:%M:%S # or date +%H:%M:%S | |
echo "${url}" | |
# https://unix.stackexchange.com/a/84820/396504 | |
curl -Is "${url}" | head -n 1 && sleep "${sec}" |
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
function printTo100(n) { | |
for (i in [...Array(100).keys()]){ | |
console.log(`${n}-${i}`) | |
} | |
return Promise.resolve() | |
} | |
Promise.all( | |
printTo100('a'), | |
printTo100('b'), |
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 ttl = (strings, ...variables) => [strings, ...variables] | |
// or const ttl = (...args) => [...args] | |
// we are using www.styled-components.com as an example | |
const Adder = ({className, x, y}) => { | |
return ( | |
<span className={className}> {x+y} </span> | |
) | |
} |