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
Hey, I'm ericnakagawa-23874 and I have contributed to the Self ZK Passport Ceremony v2. | |
The following are my contribution signatures: | |
Circuit # 1 (dsc_sha1_ecdsa_secp256r1) | |
Contributor # 11 | |
Contribution Hash: f883136d bc04a015 3937b3b9 361e972c | |
7384217e 77994b05 b4d50c15 9c82f706 | |
b4c8e0a2 c579b653 c2e935ea fbd259ab | |
6518a7cb cfc1587a 517b6fbc d8472e31 |
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
Sourced from the great replies here: https://twitter.com/ericnakagawa/status/1159601328353505286 | |
🍩 | |
Blue Star Donuts (Skip voodoo imo) @BlueStarDonuts | |
Pip's Original Doughnuts https://www.yelp.com/biz/pips-original-doughnuts-and-chai-portland | |
🍕 | |
Ken’s Artisan Pizza |
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
var iLoop, iMain; | |
function loop() { | |
clearInterval(iLoop) | |
iLoop = setInterval(process, 1000); | |
console.log("loop()"); | |
} | |
function process() { | |
console.log("process()") |
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
var tessel = require('tessel'); | |
var wifi = require('wifi-cc3000'); | |
var https = require('https'); | |
var climatelib = require('climate-si7005'); | |
// var ambientlib = require('ambient-attx4'); | |
// Constants | |
var PARSE_APP = 'APP_ID'; | |
var PARSE_KEY = 'APP_KEY'; |
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
app.get('/:url', function(req, res) { | |
var Link = Parse.Object.extend("Link"); | |
var url = req.params.url; | |
var query1 = new Parse.Query(Link); | |
query1.equalTo("shorturl", req.params.url); | |
var query2 = new Parse.Query(Link); | |
query2.equalTo("longurl", req.params.url); |
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
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../yt-video/yt-search-video.html"> | |
<polymer-element name="my-element"> |
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
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
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 (code, lang) { | |
pygmentize({ lang: lang, format: 'html' }, code, function (err, result) { | |
options.highlight = result; | |
}); | |
}; |