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
/* | |
* In this example I get an error from my rethinkdb database | |
* ReqlRuntimeError: Connection is closed in.... (basically the first query within exportText()) | |
*/ | |
export default async function downloadTexts (ctx, next) { | |
const { qid } = this.params | |
console.log('start') | |
const stream = await exportText(qid, this._rdbConn, true) |
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 19Cs9hTU7XFpGxef4XdDTvuxVp2gY1znu https://explorer.blockstack.org/address/19Cs9hTU7XFpGxef4XdDTvuxVp2gY1znu |
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
Build Date: 2017-08-06 11:07:00 -0700 | |
-------------------------------------------------------------------------------- | |
PLUGIN OUTPUT | |
-------------------------------------------------------------------------------- | |
Fetching plugin "[email protected]" via npm | |
Installing "cordova-plugin-statusbar" at "1.0.1" for ios | |
Fetching plugin "[email protected]" via npm | |
Installing "cordova-plugin-device" at "1.1.4" for ios | |
Fetching plugin "[email protected]" via npm | |
Installing "cordova-plugin-splashscreen" at "4.0.1" for ios |
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
const Hemera = require('nats-hemera') | |
const HemeraTestsuite = require('hemera-testsuite') | |
const PORT = 6242 | |
let server | |
server = HemeraTestsuite.start_server(PORT, {}, (err, res) => { | |
const nats = require('nats').connect(PORT) | |
const hemera = new Hemera(nats) | |
hemera.ready(() => { |
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 Marty = require('marty'); | |
export default class Application extends Marty.Application { | |
constructor(options) { | |
super(options); | |
} | |
// Custom Dispatcher verbose Dispatcher | |
var vomitify = function(f) { | |
return function() { |
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
Incident Identifier: 1308736F-C580-404A-9092-36B9CA4811A7 | |
CrashReporter Key: 414305c93389cf8230689074362a0e5340d6f948 | |
Hardware Model: iPhone5,2 | |
Process: Gambify [506] | |
Path: /private/var/mobile/Containers/Bundle/Application/7492C412-F9A1-4103-85B5-E98991164028/Gambify.app/Gambify | |
Identifier: de.gambify.ios | |
Version: 2.0.4 (2.0.4) | |
Code Type: ARM (Native) | |
Parent Process: launchd [1] |
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
/** @jsx React.DOM */ | |
var React = require('react'); | |
var Tappable = require('react-tappable'); | |
var Navigation = require('touchstonejs').Navigation; | |
module.exports = React.createClass({ | |
displayName: 'Cancable_Link', | |
mixins: [Navigation], |
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 _selectedThread = null; | |
var _threads = []; | |
var ThreadStore = merge({},EventEmitter.prototype, { | |
getThreads: function(){ | |
return _threads; | |
}, | |
getSelectedThread: function(){ | |
if(_selectedGroup){ |
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
<?php | |
/** | |
* Finds and displays a BetRound entity. | |
* | |
* @Route("/{id}/add", name="betround_add") | |
* @ParamConverter("betRound", class="StregoTippBundle:BetRound") | |
* @Template() | |
*/ | |
public function addAction(BetRound $betRound) | |
{ |
NewerOlder