This file contains hidden or 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
package main | |
import ( | |
"io" | |
"log" | |
"net/http" | |
"golang.org/x/oauth2" | |
"fmt" | |
"io/ioutil" | |
"github.com/bmizerany/pat" |
This file contains hidden or 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 express = require('express'); | |
var session = require('cookie-session'); | |
var ApiClient = require('api-poc-client'); | |
var request = require('superagent'); | |
// SETUP | |
var app = module.exports = express(); | |
var client = new ApiClient({ | |
authServer: "https://id.sandbox.sparebank1.no", | |
clientId: "client-id-from-the-ID-portal", |
This file contains hidden or 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
Verifying that +vongohren is my blockchain ID. https://onename.com/vongohren |
This file contains hidden or 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
Verifying that +vongohren is my blockchain ID. https://onename.com/vongohren |
This file contains hidden or 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 fs = require('fs'), | |
path = require('path'), | |
sourceMap = require('source-map'); | |
var line = process.argv[2]; | |
var column = process.argv[3]; | |
var file = process.argv[4]; | |
// file output by Webpack, Uglify, etc. | |
var GENERATED_FILE = path.join('.', file); |
This file contains hidden or 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
May 3 17:24:09 mac-snorreedwin reactnativetidr[52052] <Error>: objc[52052]: Class CLSInternalReport is implemented in both /Users/snorreedwin/Library/Developer/CoreSimulator/Devices/AF64E7E8-0686-4233-A079-029A308775F3/data/Containers/Bundle/Application/CB49A0B2-6A91-446B-BA28-CB0725048A5B/reactnativetidr.app/Frameworks/ReactNativeFabric.framework/ReactNativeFabric (0x10af7b950) and /Users/snorreedwin/Library/Developer/CoreSimulator/Devices/AF64E7E8-0686-4233-A079-029A308775F3/data/Containers/Bundle/Application/CB49A0B2-6A91-446B-BA28-CB0725048A5B/reactnativetidr.app/reactnativetidr (0x10ab107b8). One of the two will be used. Which one is undefined. | |
May 3 17:24:09 mac-snorreedwin reactnativetidr[52052] <Error>: objc[52052]: Class Crashlytics is implemented in both /Users/snorreedwin/Library/Developer/CoreSimulator/Devices/AF64E7E8-0686-4233-A079-029A308775F3/data/Containers/Bundle/Application/CB49A0B2-6A91-446B-BA28-CB0725048A5B/reactnativetidr.app/Frameworks/ReactNativeFabric.framework/ReactNativeFabric (0 |
This file contains hidden or 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
eth_sendTransaction | |
PUSH1 | |
PUSH1 | |
MSTORE | |
CALLDATASIZE | |
ISZERO | |
PUSH2 | |
JUMPI | |
PUSH4 | |
PUSH1 |
This file contains hidden or 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
Verifying that "vongohren.id" is my Blockstack ID. https://onename.com/vongohren |
This file contains hidden or 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
Verifying my Blockstack ID is secured with the address 1DxtveiG44Bd2V9B5mnNjUSLutMxzmb8Nx https://explorer.blockstack.org/address/1DxtveiG44Bd2V9B5mnNjUSLutMxzmb8Nx |
This file contains hidden or 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 User = Bookshelf.Model.extend({ | |
tableName: 'user', | |
hasTimestamps: true | |
}); | |
const to = (promise) => { | |
return promise.then(data => { | |
return [null, data]; | |
}) | |
.catch(err => [err]); |