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
/** | |
* @fileOverview Implementation of Elm's classList function. | |
* Allows to conditionally apply classes according to the current state | |
* [source]{@link https://package.elm-lang.org/packages/evancz/elm-html/3.0.0/Html-Attributes#classList} | |
* | |
* @param {string[ [string, bool] ]} rules - An array of rules. Every rule has 2 elements: | |
* element.0: string, the class you want to apply | |
* element.1: bool, whether or not to apply the class | |
* @return {string} - The interpolated string of classes | |
* |
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
IMAGE_NAME = "bento/ubuntu-16.04" | |
N = 2 | |
Vagrant.configure("2") do |config| | |
config.ssh.insert_key = false | |
config.vm.provider "virtualbox" do |v| | |
v.memory = 1024 | |
v.cpus = 2 | |
end |
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
class Observable { | |
static fromPublisher(publisher) { | |
return new Observable({ | |
publisher | |
}) | |
} | |
static fromObservable(observable, extentions) { | |
return new Observable({ | |
...observable, |
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 { Observable } from 'rxjs' | |
const fromTimeout = ts => Observable.create(observer => { | |
const handle = setTimeout(() => { | |
observer.next() | |
observer.complete() | |
}, ts) | |
return function dispose() { | |
observer.onComplete() |
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 axios = { | |
commons: { | |
headers: {} | |
}, | |
async _fetchWithCommons(url, options) { | |
const response = await fetch(url, { | |
...this.commons, | |
...options |
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
{ | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": false, | |
"git.autofetch": false, | |
"window.zoomLevel": 1, | |
"editor.tabSize": 2, | |
"html.format.indentInnerHtml": true, | |
"javascript.validate.enable": false, | |
"scss.validate": false, |
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
andys8.jest-snippets | |
bierner.lit-html | |
blanu.vscode-styled-jsx | |
dbaeumer.vscode-eslint | |
donjayamanne.githistory | |
eamodio.gitlens | |
esbenp.prettier-vscode | |
felixfbecker.php-debug | |
felixfbecker.php-intellisense | |
felixfbecker.php-pack |
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
FROM nginx:alpine | |
WORKDIR /etc/nginx | |
COPY ./default.conf ./conf.d/default.conf | |
EXPOSE 80 | |
ENTRYPOINT [ "nginx" ] | |
CMD [ "-g", "daemon off;" ] |
OlderNewer