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
| # Example tmux.conf | |
| # 2014.10 | |
| ### General | |
| ########################################################################### | |
| # Enable UTF-8 | |
| setw -g utf8 on | |
| set-option -g status-utf8 on |
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
| npm WARN deprecated rework-inline@0.2.0: deprecated in favor of rework-import | |
| > fsevents@0.2.1 install /usr/local/lib/node_modules/shader-school/node_modules/glslify-live/node_modules/chokidar/node_modules/fsevents | |
| > node-gyp rebuild | |
| CXX(target) Release/obj.target/fse/fsevents.o | |
| In file included from ../fsevents.cc:6: | |
| ../node_modules/nan/nan.h:339:13: error: no member named 'New' in 'v8::String' | |
| return _NAN_ERROR(v8::Exception::Error, errmsg); | |
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
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
| http://answers.microsoft.com/en-us/windows/forum/windows_8-performance/ram-4gb-262-usable-system-window-8-64-bit/531efe05-0e9f-410e-bf89-a698a063bb3a |
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
| strong--- | |
| |______strong | |
| | | |
| |______STRONGSTRONG! |
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
| let { show, ...props } = this.props; |
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
| let { show, ...props } = this.props; |
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 Parent = React.createClass({ | |
| onInputChange(e) { | |
| this.setState({ | |
| input: e.target.value | |
| }); | |
| }, | |
| filterCities(cities, input) { | |
| return cities.filter(city => { |
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
| export { default as Modal } from './modal'; | |
| export { default as ModalBody } from './modal-body'; | |
| export { default as ModalFooter } from './modal-footer'; | |
| export { default as ModalHeader } from './modal-header'; | |
| export { default as ModalMarkup } from './modal-markup'; | |
| export { default as ModalTitle } from './modal-title'; | |
| export { default as Portal } from './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
| import { Modal, ModalHeader, ModalFooter } from '../../modal'; |
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
| module: { | |
| loaders: [{ | |
| test: /\.jsx?$/, | |
| loader: 'babel', | |
| exclude: [path.join(root, 'node_modules'), path.join(context, 'node_modules')] | |
| }, | |
| { | |
| test: /\.css$/, | |
| loader: ExtractTextPlugin.extract('style-loader', 'css-loader') | |
| }] |
OlderNewer