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 | |
const util = require('util'); | |
const execp = util.promisify(require('child_process').exec); | |
main(process.argv[2], process.argv[3]); | |
async function main(pkg, user) { | |
const whoamioutput = await execp(`npm whoami`); | |
const whoami = whoamioutput.stdout.trim(); |
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
// inspired by https://github.com/tj/git-extras/blob/master/bin/git-line-summary | |
const util = require("util"); | |
const exec = util.promisify(require("child_process").exec); | |
const execSync = require("child_process").execSync; | |
const DIR = "/Users/poshannessy/FB/code/react-clean"; | |
const REF = "origin/master"; | |
const AUTHOR = "Paul O’Shannessy"; | |
const PERIOD_DAYS = 1; |
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
diff --git a/opensource.html b/opensource.html | |
index 043dd2c..27382bf 100644 | |
--- a/opensource.html | |
+++ b/opensource.html | |
@@ -100,14 +100,14 @@ | |
<div id="trending" class="project-group"> | |
<div class="container"> | |
<div class="group-content"> | |
- <h2>trending</h2> | |
+ <h2>Trending</h2> |
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
diff --git a/opensource.html b/opensource.html | |
index 043dd2c..affea25 100644 | |
--- a/opensource.html | |
+++ b/opensource.html | |
@@ -100,14 +100,14 @@ | |
<div id="trending" class="project-group"> | |
<div class="container"> | |
<div class="group-content"> | |
- <h2>trending</h2> | |
+ <h2>Trending</h2> |
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
diff --git a/opensource.html b/opensource.html | |
index 043dd2c..affea25 100644 | |
--- a/opensource.html | |
+++ b/opensource.html | |
@@ -100,14 +100,14 @@ | |
<div id="trending" class="project-group"> | |
<div class="container"> | |
<div class="group-content"> | |
- <h2>trending</h2> | |
+ <h2>Trending</h2> |
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
// This will generate 31329 <rect>s for a level 40 QR Code (177x177). | |
// This approach is totally fine in <canvas> (but should learn from Smarter impl below) | |
// Lorem Ipsum test content was ~2MB | |
class QRCodeSVG extends React.Component<Props> { | |
render() { | |
var {value, size, level, bgColor, fgColor} = this.props; | |
var qrcode = new QRCodeImpl(-1, ErrorCorrectLevel[level]); | |
qrcode.addData(value); | |
qrcode.make(); |
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
Show hidden characters
{ | |
"presets": ["./.babelrc.js"], | |
} |
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
{ | |
"plugins": [ | |
["babel-preset-fbjs/plugins/rewrite-modules", { | |
map: { | |
'./original': './rewritten' | |
}, | |
prefix: '', | |
}] | |
], | |
} |
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
{ | |
"plugins": [ | |
["babel-preset-fbjs/plugins/rewrite-modules", { | |
map: { | |
'./original/foo': './rewritten/foo' | |
}, | |
prefix: '', | |
}] | |
], | |
} |
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
diff --git a/package.json b/package.json | |
index 7747f0d5..1b490635 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -31,25 +31,25 @@ | |
"babel-traverse": "6.25.0", | |
"babel-types": "6.25.0", | |
"babylon": "6.17.3", | |
"chalk": "^1.1.3", | |
"del": "2.2.2", |
NewerOlder