Skip to content

Instantly share code, notes, and snippets.

#!/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();
// 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;
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>
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>
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>
@zpao
zpao / 0-NaiveQRCode.js
Last active June 10, 2018 01:20
Making QRCodes with SVG smaller (using React)
// 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();
@zpao
zpao / .babelrc
Created September 11, 2017 16:42
{
"presets": ["./.babelrc.js"],
}
@zpao
zpao / .babelrc
Created September 11, 2017 16:31
{
"plugins": [
["babel-preset-fbjs/plugins/rewrite-modules", {
map: {
'./original': './rewritten'
},
prefix: '',
}]
],
}
@zpao
zpao / .babelrc
Created September 11, 2017 16:29
{
"plugins": [
["babel-preset-fbjs/plugins/rewrite-modules", {
map: {
'./original/foo': './rewritten/foo'
},
prefix: '',
}]
],
}
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",