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
# Without Language | |
/ /en/ 302 Language=en | |
/ /en/ 302 Language=en-us | |
/ /en/ 302 Language=en-au | |
/ /en/ 302 Language=en-nz | |
/ /en/ 302 Language=en-za | |
/ /en/ 302 Language=en-bz | |
/ /en/ 302 Language=en-tt | |
/ /fr/ 302 Language=fr | |
/ /fr/ 302 Language=fr-be |
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
javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class org.jfree.chart.JFreeChart | |
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:796) | |
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876) | |
at org.kohsuke.stapler.MetaClass$3.doDispatch(MetaClass.java:196) | |
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58) | |
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746) | |
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876) | |
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:233) | |
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58) | |
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:746) |
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
Geekbench 4.0.1 Tryout : http://www.geekbench.com/ | |
Geekbench 4 is in tryout mode. | |
Geekbench 4 requires an active Internet connection when in tryout mode, and | |
automatically uploads test results to the Geekbench Browser. Other features | |
are unavailable in tryout mode. | |
Buy a Geekbench 4 license to enable offline use and remove the limitations of | |
tryout mode. |
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 DOCBLOCK_LINES = 5; | |
var first = new sourceMap.SourceMapConsumer(input); | |
var generator = new sourceMap.SourceMapGenerator({ | |
file: first.file, | |
}); | |
first.eachMapping(function(mapping) { | |
generator.addMapping({ | |
generated: { | |
column: mapping.generatedColumn, |
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
node_modules/gulp-babel/node_modules/babel-core/lib/api/browser.js:40 | |
40: if (!hold) run(param); | |
^^^^^^^^^^ function call | |
40: if (!hold) run(param); | |
^^^^^ array literal. This type is incompatible with | |
19: function run(code /*: string*/) /*: any*/ { | |
^^^^^^ string | |
node_modules/gulp-babel/node_modules/babel-core/lib/api/browser.js:62 | |
62: run(param, index); |
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
Process: Atom [19842] | |
Path: /Applications/Atom.app/Contents/MacOS/Atom | |
Identifier: com.github.atom | |
Version: 1.1.0 (1.1.0) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: Atom [19842] | |
User ID: 215897963 | |
Date/Time: 2015-11-02 11:32:50.249 -0800 |
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
<?xml version="1.0" encoding="utf-16"?> | |
<?xml-stylesheet type="text/xsl" href="ActivityLog.xsl"?> | |
<activity> | |
<entry> | |
<record>1</record> | |
<time>2015/08/09 00:50:07.611</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Microsoft Visual Studio 2015 version: 14.0.23107.0</description> | |
</entry> |
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 EventEmitter from 'events'; | |
import Dispatcher from '../dispatcher'; | |
const CHANGE_EVENT = 'change'; | |
export default class BaseStore extends EventEmitter { | |
constructor() { | |
super(); | |
this.dispatchToken = Dispatcher.register(this.handleDispatch.bind(this)); |
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
22:25 daniel@dan /home/daniel | |
% sudo apt-get install mono-fastcgi-server mono-fastcgi-server4 | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Some packages could not be installed. This may mean that you have | |
requested an impossible situation or if you are using the unstable | |
distribution that some required packages have not yet been created | |
or been moved out of Incoming. | |
The following information may help to resolve the situation: |
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
// This is bad | |
var List = React.createClass({ | |
render() { | |
return ( | |
<ul> | |
{this.props.items.map(item => | |
<li key={item.id} onClick={this.props.onItemClick.bind(null, item.id)}> | |
... | |
</li> | |
)} |