cat $(yarn global dir)/package.json
This file contains hidden or 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 path = require("path"); | |
const webpack = require("webpack"); | |
const UglifyJSPlugin = require("uglifyjs-webpack-plugin"); | |
const PROD = process.env.NODE_ENV === "production"; | |
const configureBabelLoader = browserlist => { | |
return { | |
test: /\.js$/, | |
use: { |
This file contains hidden or 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
// From this SO answer https://stackoverflow.com/a/2035211 | |
function getViewport() { | |
var viewPortWidth; | |
var viewPortHeight; | |
// the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight | |
if (typeof window.innerWidth != 'undefined') { | |
viewPortWidth = window.innerWidth, |
This file contains hidden or 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 getAttributes (el) { | |
return Array.from(el.attributes) | |
.map(a => [a.name, a.value]) | |
.reduce((acc, attr) => { | |
acc[attr[0]] = attr[1] | |
return acc | |
}, {}) | |
} |
This file contains hidden or 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
// custom scroll-bar | |
@mixin custom-scroll-bar() { | |
&::-webkit-scrollbar { | |
border-radius: 10px; | |
height: 10px; | |
width: 8px; | |
} | |
&::-webkit-scrollbar-thumb { | |
background: #999; |
This file contains hidden or 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
export function hideOnClickOutside(selector) { | |
const outsideClickListener = (event) => { | |
if (!$(event.target).closest(selector).length) { | |
if ($(selector).is(':visible')) { | |
$(selector).hide() | |
removeClickListener() | |
} | |
} | |
} |
This file contains hidden or 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
clone = x => [...x] | |
push = y => x => [...x, y] | |
pop = x => x.slice(0,-1) | |
unshift = y => x => [y, ...x] | |
shift = x => x.slice(1) | |
sort = f => x => [...x].sort(f) | |
delete = i => x => [...x.slice(0,i), ...x.slice(0,i+1)] | |
splice = (s,c, ...y) => x => [...x.slice(0,s), ...y, ...x.slice(s+c)] |
This file contains hidden or 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
<meta name="viewport" content="width=device-width, initial-scale=1"> |
This file contains hidden or 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
# Show proxy settings | |
function proxy_show(){ | |
env | grep -e _PROXY -e _proxy | sort | |
} | |
# Configure proxy | |
function proxy_on(){ | |
# You may need to hardcode your password, proxy server, and proxy port | |
# if the following variables do not exist | |
export HTTP_PROXY="http://$USERNAME:$PASSWORD@$PROXY_SERVER:$PROXY_PORT" |
This file contains hidden or 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
html { | |
font-size: 62.5%; /* 10px */ | |
} | |
body { | |
line-height: 1.8em; | |
font-size: 1.4em; /* 14px */ | |
color: #49525e; | |
background-color: #f5f5f5; | |
font-family: Verdana,"Helvetica Neue",Helvetica,Arial,sans-serif; | |
-webkit-font-smoothing: antialiased; |