Skip to content

Instantly share code, notes, and snippets.

View jimpick's full-sized avatar
💭
Hi!

Jim Pick jimpick

💭
Hi!
  • HexCamp
  • Victoria, BC, Canada
  • X @jimpick
View GitHub Profile
only-dev-server.js:69 [HMR] Waiting for update signal from WDS...
warning.js:41 Warning: DefaultRoute.type is deprecated. Use DefaultRoute directly to access the class.
warning.js:41 Warning: NotFoundRoute.type is deprecated. Use NotFoundRoute directly to access the class.
warning.js:41 Warning: Redirect.type is deprecated. Use Redirect directly to access the class.
warning.js:41 Warning: Route.type is deprecated. Use Route directly to access the class.
warning.js:41 Warning: Redirect.type is deprecated. Use Redirect directly to access the class.
warning.js:41 Warning: DefaultRoute.type is deprecated. Use DefaultRoute directly to access the class.
warning.js:41 Warning: NotFoundRoute.type is deprecated. Use NotFoundRoute directly to access the class.
warning.js:41 Warning: NotFoundRoute.type is deprecated. Use NotFoundRoute directly to access the class.
warning.js:41 Warning: DefaultRoute.type is deprecated. Use DefaultRoute directly to access the class.
jim ~/projects/reapp/myapp $ reapp run
View your app on http://localhost:3010
Starting Webpack...
Note: The code generator has deoptimised the styling of "/Users/jim/projects/reapp/myapp/node_modules/reapp-routes/node_modules/bluebird/js/browser/bluebird.js" as it exceeds the max of "100KB".
Hash: 8cb3932ce1debea977e3
Version: webpack 1.7.3
Time: 6399ms
Asset Size Chunks Chunk Names
main.js 2.08 MB 0 [emitted] main
chunk {0} main.js (main) 1.86 MB [rendered]
@jimpick
jimpick / survey.txt
Created June 13, 2016 02:31
IndieWeb Onboarding Survey
IndieWeb Onboarding Survey
What's the best way to onboard new Indieweb users?
Assume they don't have a personal website or domain name yet.
Step 1 - Survey
Questions:

Keybase proof

I hereby claim:

  • I am jimpick on github.
  • I am jimpick (https://keybase.io/jimpick) on keybase.
  • I have a public key whose fingerprint is 7E96 84B1 E829 57F0 6F06 2642 1B6A 4317 FF69 2BCB

To claim this, I am signing this object:

We'd like to thank our one listener that we see in our analytics on 0
Duke and the one listener on stitcher who happens to be. My wife.
Yeah. It's a great way to live as upset. Come back to episode 16 of
acquired. The podcast when we talk about technology acquisitions I'm
Ben Gilbert I'm David Rosenthal and we are your hosts. Today we have a
few notes before we dive into it I wanted to take a minute and say a
huge thank you to one of our listeners David Resnick. I he's known as
the resonator in slack. David is an entrepreneur with a company called ****
but in a former career he was a recording engineer and music producer
David's been helping us tremendously with audio quality so I want to
@jimpick
jimpick / comparison.txt
Last active July 19, 2016 00:28
Automated Transcript Comparison
Automated Transcript Comparison
===============================
Audio Source:
http://www.acquired.fm/episodes/2016/7/12/acquired-episode-16-midroll-stitcher-acquired-by-scripps
IBM Watson Pop Up Archive Speechmatics
---------- -------------- ------------
@jimpick
jimpick / roundhouse-radio-transcript.txt
Last active July 21, 2016 20:57
Automated Transcript of Kim Hansen of Signl.fm on Roundhouse Radio
Automated Transcript of Kim's Interview on Roundhouse Radio
-----------------------------------------------------------
(unedited)
https://twitter.com/realkimhansen/status/756174281076113414
http://cirh.streamon.fm/listen-pl-3790
IBM Watson Google Cloud Speech API
@jimpick
jimpick / Dockerfile
Created June 24, 2017 02:54
Hosting dathttpd on now.sh - https://dat.jimpick.com/
FROM ubuntu:16.04
RUN apt-get update --yes && apt-get upgrade --yes
RUN apt-get update --yes && apt-get upgrade --yes
RUN apt-get -y install curl
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
RUN apt-get -y install ffmpeg zlib1g-dev automake autoconf git \
@jimpick
jimpick / output
Created November 30, 2017 00:21
webdb trivial test case
$ node quick-query.js
{ firstName: 'Jim', lastName: 'Pick', age: 47 }
@jimpick
jimpick / continuous-query.js
Created November 30, 2017 01:23
WebDB simple demo - watching for changes on a Dat archive
const DatArchive = require('node-dat-archive')
const WebDB = require('@beaker/webdb')
var webdb = new WebDB('./webdb', { DatArchive })
webdb.define('people', {
// uses JSONSchema v6
schema: {
type: 'object',
properties: {
firstName: {