Skip to content

Instantly share code, notes, and snippets.

View chadoh's full-sized avatar
🌲

Chad Ostrowski chadoh

🌲
View GitHub Profile
$ npm run start:dev
npm WARN lifecycle The node binary used for scripts is /usr/local/opt/asdf/shims/node but npm is using /usr/local/Cellar/asdf/0.5.1/installs/nodejs/10.11.0/bin/node itself. Use the `--scripts-prepend-node-path` option to include the path for the node binary npm was executed with.
> planning-suite-monorepo@ start:dev /Users/chadoh/code/a/oe
> DEV=true apps/shared/test-helpers/ganache-cli.sh
Starting our own testrpc instance at port 8545
lerna notice cli v3.16.4
lerna info versioning independent
lerna info filter [ '@tps/apps-*' ]
const metadataRegistry = {
dotVoting: {
vote1: {
a: 1,
b: 2,
c: 3,
}
},
discussions: {
thread1: 'ipfsHash1',
did:muport:QmNoefGQ5kE9sgnjjHNBBJpswkn6QpqZqgvSqZJ2gtQhf1
did:muport:QmNoyUbVNCkF7K5dozf65HkBxzjL6z15kLR3ovdPNXQDT6

Keybase proof

I hereby claim:

  • I am chadoh on github.
  • I am chadoh (https://keybase.io/chadoh) on keybase.
  • I have a public key ASAHPClWfoX7Ghmwzw4grCKaWS-NCXhWeJyMhH5BqGK5Rwo

To claim this, I am signing this object:

Verifying that "chadoh.id" is my Blockstack ID. https://onename.com/chadoh
<li id="1">
<div><img data-src="img1.png"/></div>
<div><img src="img2.png"/></div>
<li>
<script>
jQuery(function() {
setInterval(function() {
// select a random slot to work with. For that slot:
// 1. Ensure that background image `src` attribute is set (load the image)
@chadoh
chadoh / Img blur 1
Last active November 13, 2015 02:30 — forked from umasenthil/Img blur 1
class Image
def initialize(arr)
@arr = arr
end
def print
@arr.each do |sub_array|
puts sub_array.join('')
end
end
/**
* ToDo Actions
*/
'use strict';
var AppDispatcher = require('../dispatcher/AppDispatcher');
var ActionConstants = require('../constants/ActionTypes');
var ToDoApi = require('../utilities/ToDoApi');
module.exports = {
/**
* ToDo API
*/
'use strict';
var DEBUG = true;
var _name = 'ToDoApi.js';
var ToDoActions = require('../actions/ToDoActions');
var ToDoData = require('./ToDoData');
module.exports = {