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
s | |
[apply] 20:59:18.900 DEBUG - PATH=/postResults RESOURCE=file:/home/nexor/projects/www/boombate-erp/MISSING%20RESOURCE | |
[apply] 20:59:18.900 DEBUG - Looking for file:/home/nexor/projects/www/boombate-erp/MISSING%20RESOURCE | |
[apply] 20:59:18.901 DEBUG - RestishHandler org.openqa.selenium.server.SessionExtensionJsHandler in HttpContext[/selenium-server,/selenium-server] | |
[apply] 20:59:18.902 DEBUG - RestishHandler org.openqa.selenium.server.htmlrunner.SingleTestSuiteResourceHandler in HttpContext[/selenium-server,/selenium-server] | |
[apply] 20:59:18.902 DEBUG - RestishHandler org.openqa.selenium.server.htmlrunner.SeleniumHTMLRunnerResultsHandler@31f26605 | |
[apply] 20:59:18.902 INFO - Received posted results | |
[apply] 20:59:19.231 DEBUG - In setupModifierMap | |
[apply] 20:59:19.232 DEBUG - metaMask = 0 | |
[apply] 20:59:19.232 DEBUG - altMask = 8 |
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
#!/bin/sh | |
sdir=$(pwd) | |
[ -e $sdir/$(basename $0) ] || sdir=$(dirname $0) | |
[ -d $sdir/lib ] || mkdir -p $sdir/lib | |
wget "https://raw.github.com/ModelN/backbone.geppetto/master/backbone.geppetto.js" -O $sdir/lib/backbone.geppetto.js | |
wget "https://raw.github.com/ModelN/backbone.geppetto/master/README.md" -O $sdir/readme.md |
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
{ | |
"name": "Backbone.Geppetto", | |
"description": "Geppetto does this by implementing an event-driven Command framework, decoupling your View/Presenter code from your app's business logic", | |
"version": "0.2.2", | |
"homepage": "http://modeln.github.com/backbone.geppetto/", | |
"keywords": [ | |
"backbone", | |
"plugin", | |
"marionette", | |
"geppetto", |
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
<?php | |
namespace Millwright\CQRSDomain\Bus; | |
/** | |
* Util | |
* | |
* @author nexor | |
*/ |
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
<?php | |
class BusDefferer implements BusInterface | |
{ | |
protected $container; | |
protected $serviceName; | |
public function __construct(ContainerInterface $container, $serviceName) | |
{ | |
$this->container = $container; |
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
class ActionsBase { | |
constructor(dispatcher) { | |
this.dispatcher = dispatcher | |
this.key = null | |
} | |
_dispatch(data, suffix) { | |
this.dispatcher.dispatch(this.key + suffix, data) | |
} | |
dispatch(fn) { |
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
export default class Page extends React.Component { | |
static props = { | |
actions: PageActions, | |
dispatcher: Dispatcher, | |
config: 'config.Page' | |
} | |
static state = { | |
status: 'PageStore.status', | |
currentTodo: 'PageStore.currentTodo', | |
isEditCurrentTodo: 'PageStore.isEditCurrentTodo' |
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
//__tests__/user-list-test.js | |
import React, {addons} from 'react/addons' | |
import UserList from '../user-list' | |
const tu = addons.TestUtils | |
const fakeUsers = [ | |
{ | |
id: 1, | |
name: 'user 1' | |
}, |
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
# installation | |
sudo apt-get install pcscd opensc openct libhal1 | |
sudo apt-get install libnss3-tools | |
sudo apt-get install p11-kit | |
# unpacking pkiclient-5.00.28-0.i386.rpm | |
sudo cp libeToken.so.5.00 /usr/local/lib | |
sudo ldconfig | |
# fixing pcscd |
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
import {default as React, Component} from 'react'; | |
import {Getter, Facet, Factory, Setter} from 'immutable-di/define' | |
import root from 'immutable-di/react/root' | |
import statefull from 'immutable-di/react/statefull' | |
import Container from 'immutable-di' | |
import NativeCursor from 'immutable-di/cursors/native' | |
const container = new Container(new NativeCursor({ | |
tis: { |
OlderNewer