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
| # iPad | |
| Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15 | |
| # iPhone | |
| Mozilla/5.0 (iPhone; CPU iPhone OS 13_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.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
| (() => { | |
| const asyncForEach = (array, callback, done) => { | |
| const runAndWait = i => { | |
| if (i === array.length) return done(); | |
| return callback(array[i], () => runAndWait(i + 1)); | |
| }; | |
| return runAndWait(0); | |
| }; | |
| const dump = {}; |
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
| (async () => { | |
| const itterations = Array.from({length: 4}); | |
| console.log('starting'); | |
| itterations.map(async (_, i) => { | |
| await wait(300); | |
| console.log(`itteration done ${i}`); | |
| }); |
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
| include .env | |
| PROJECTNAME=$(shell basename "$(PWD)") | |
| # Go related variables. | |
| GOBASE=$(shell pwd) | |
| GOPATH="$(GOBASE)/vendor:$(GOBASE) | |
| GOBIN=$(GOBASE)/bin | |
| GOFILES=$(wildcard *.go) |
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 default (...fns) => x => fns.reduceRight((v, f) => f(v), x) | |
| // compose(double, add1)(2) === 6 |
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 default (...fns) => x => fns.reduce((v, f) => f(v), x); | |
| // pipe(double, add1)(2) === 5 |
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
| 0xFbbf996d047D49488CDb782e823817ecE779247C |
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
| Verifying that +mattjensen is my blockchain ID. https://onename.com/mattjensen |
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 Invoicerizer(date, duration, tasks) { | |
| this.date = date; | |
| this.duration = duration; | |
| this.tasks = tasks; | |
| } | |
| Invoicerizer.prototype = { | |
| init: function() { | |
| $('.expensicons.expensicons-plus').trigger('click'); | |
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
| <!-- Place favicon.ico and apple-touch-icon(s) in the root directory --> | |
| <link rel="shortcut icon" href="/favicon.ico" /> | |
| <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-ipad-retina.png" /> | |
| <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-iphone-retina.png" /> | |
| <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-ipad.png" /> | |
| <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-iphone.png" /> |
NewerOlder