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
➜ tw-hubot git:(master) git commit -m "Some commit message TW-8156" <-- Your command line execution to commit your code | |
[jira-precommit-hook] Commit message successfully verified. <-- Confirmation message from the commit hook | |
[master 5361b4f] Some commit message TW-8156 <-- Confirmation message from git that the commit succeeded (NOT THE COMMIT HOOK) |
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
# This file was generated by /Users/smithm/dev/new-dotfiles/npm-module-aliases | |
# Generated: Friday, October 2nd, 2015 @ 14:55:31 | |
alias npm-exec="PATH=$(npm bin):$PATH" | |
alias _mocha="npm-exec _mocha" | |
alias babel="npm-exec babel" | |
alias babel-external-helpers="npm-exec babel-external-helpers" | |
alias babel-node="npm-exec babel-node" | |
alias babel-plugin="npm-exec babel-plugin" |
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
➜ kubernetes ./cluster/kube-up.sh | |
Starting cluster using provider: vagrant | |
... calling verify-prereqs | |
... calling kube-up | |
Using credentials: vagrant:vagrant | |
Bringing machine 'master' up with 'virtualbox' provider... | |
Bringing machine 'minion-1' up with 'virtualbox' provider... | |
==> master: Importing base box 'kube-fedora21'... | |
==> master: Matching MAC address for NAT networking... | |
==> master: Setting the name of the VM: kubernetes_master_1438188958419_38582 |
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
Client version: 1.5.0 | |
Client API version: 1.17 | |
Go version (client): go1.4.1 | |
Git commit (client): a8a31ef | |
OS/Arch (client): linux/amd64 | |
Server version: 1.5.0 | |
Server API version: 1.17 | |
Go version (server): go1.4.1 | |
Git commit (server): a8a31ef | |
Step 0 : FROM selenium/node-base:2.44.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
var React = require('react'); | |
var joinClasses = require('./utils/joinClasses'); | |
var classSet = require('./utils/classSet'); | |
var cloneWithProps = require('./utils/cloneWithProps'); | |
var BootstrapMixin = require('./BootstrapMixin'); | |
var CollapsableMixin = require('./CollapsableMixin'); | |
// TODO: Evaluate extracting collapsable logic to CollapsablePanel, The | |
// Accordian would likewise manage collapsed state itself. |
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
FROM selenium/node-firefox:2.44.0 | |
COPY config.json /opt/selenium/config.json |
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
09:02:25.204 INFO - Started HttpContext[/,/] | |
09:05:58.688 INFO - Started org.openqa.jetty.jetty.servlet.ServletHandler@1c664c4f |
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
➜ jenkins-docker git:(master) ✗ docker logs -f cea | |
Running from: /usr/share/jenkins/jenkins.war | |
webroot: EnvVars.masterEnvVars.get("JENKINS_HOME") | |
Oct 10, 2014 6:44:26 PM winstone.Logger logInternal | |
INFO: Beginning extraction from war file | |
Oct 10, 2014 6:44:26 PM winstone.Logger logInternal | |
INFO: Winstone shutdown successfully | |
Oct 10, 2014 6:44:26 PM winstone.Logger logInternal | |
SEVERE: Container startup failed | |
java.lang.SecurityException: SHA-256 digest error for WEB-INF/plugins/ssh-slaves.hpi |
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 Router = require('../../index'); | |
var Route = Router.Route; | |
var Routes = Router.Routes; | |
var Link = Router.Link; | |
var App = React.createClass({ | |
render: function() { | |
return ( |
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
public class SimpleTopic : Topic | |
{ | |
public Guid SomeId { get; set; } | |
public override bool Equals(object obj) | |
{ | |
return Equals(obj as SimpleTopic ); | |
} | |
public bool Equals(SimpleTopic other) |