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 download(filename, text, mime = 'image/svg+xml', ext = 'svg') { | |
var element = document.createElement('a'); | |
element.setAttribute('href', `data:${mime};charset=utf-8, ${encodeURIComponent(text)}`); | |
element.setAttribute('download', `${filename}.${ext}`); | |
element.style.display = 'none'; | |
document.body.appendChild(element); | |
element.click(); |
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
$ rm ./node_modules/typescript/lib/lib.es2015.iterable.d.ts | |
$ touch ./node_modules/typescript/lib/lib.es2015.iterable.d.ts | |
$ rm ./node_modules/typescript/lib/lib.es2015.generator.d.ts | |
$ touch ./node_modules/typescript/lib/lib.es2015.generator.d.ts | |
$ npm start |
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
window.open('https://app.paytogo.cz/podnik/cisterna', 'PayToGo', 'toolbar=no, menubar=no, width=420, height=600') |
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
/** | |
* Usage in React Native component example | |
*/ | |
import React, { Component } from 'react'; | |
import { NavigationActions } from 'react-navigation'; | |
import Navigator from 'app/navigators/RootNavigator'; | |
import createAuth from './library/auth'; | |
export default class Application extends Component { | |
navigator = null; |
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 node | |
/** | |
* Node.js script as patch method for vscode-react extension of 2.2.0 version. | |
* | |
* https://github.com/xabikos/vscode-react | |
* https://github.com/tc39/proposal-class-public-fields | |
*/ | |
const fs = require('fs'); |
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
// Can be used with Custom JavaScript for Websites | |
// https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija | |
// but is necessary to allow 'local URLs' in chrome://extensions/ | |
if (document.title.indexOf('Marketch') === 0) { | |
$('.artboard').on('mouseup', () => setTimeout(init, 100)); | |
} | |
function init () { | |
const $code = $('textarea[name="code"]'); |
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 React, { Component } from 'react'; | |
import Router from './Router'; | |
import NewDocument from './NewDocument'; | |
import DocumentsList from './DocumentsList'; | |
export default class App extends Component { |
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 React, { Component } from 'react'; | |
import ReactDOM from 'react-dom'; | |
/** | |
* Statefull application | |
*/ | |
class App extends Component { | |
/** | |
* Application state |
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
/** | |
* Global styles based on Reboot.css | |
* http://v4-alpha.getbootstrap.com/content/reboot/ | |
* https://github.com/twbs/bootstrap/blob/v4-dev/scss/_reboot.scss | |
*/ | |
/* | |
Reset the box-sizing | |
Change from `box-sizing: content-box` to `border-box` so that when you add |
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
#brew install python | |
#brew install mercurial | |
#/usr/local/bin/pip install mercurial_keyring | |
# patch from http://selenic.com/repo/hg/rev/e3a5922e18c3 | |
cat <<-EOF | patch -p2 /usr/local/Cellar/mercurial/3.8.4/lib/python2.7/site-packages/mercurial/demandimport.py | |
diff -r 8bbe208c1812 -r e3a5922e18c3 mercurial/demandimport.py | |
--- a/mercurial/demandimport.py Sat Oct 05 01:02:22 2013 +0900 |
NewerOlder