[ Launch: Tributary inlet ] 5021250 by sathify
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
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.0.rc.1) | |
| // ---- | |
| .blocker | |
| &__item | |
| text-align: left | |
| &--mo | |
| text-align: right |
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
| // Elements get appended with "-" and the $name. | |
| @mixin e($name) { | |
| &-#{$name} { | |
| @content; | |
| } | |
| } | |
| // Modifiers get appended with "--" and the $name. | |
| @mixin m($name) { | |
| &--#{$name} { |
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
| sage.auth.sso: Error making auth request with tenant id {"reason":{"message":"ETIMEDOUT","stack":"Error: ETIMEDOUT\n at null._onTimeout (/Users/satheeshkumar/dev/sage/node_modules/request/request.js:677:15)\n at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)","code":"ETIMEDOUT"}} | |
| sage.auth.saml-sage: redirecting to saml failure: Error initializing session for user glimpseprod {} |
NqdGNx ('-' * 6)
A Pen by Captain Anonymous on CodePen.
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
| function mapValues(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| result[key] = fn(obj[key], key); | |
| return result; | |
| }, {}); | |
| } | |
| function pick(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| if (fn(obj[key])) { |
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 { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
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 { Component } from "React"; | |
| export default function Enhance(ComposedComponent) { | |
| return class extends Component { | |
| constructor() { | |
| this.state = { time: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ time: new Date().now() }); | |
| } |
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
| /* global window */ | |
| var React = require('react/addons'); | |
| var ReactRouter = require('react-router'); | |
| var Routes = require('./Routes.react'); | |
| var MeStore = require('../../stores/Me'); | |
| var MeActions = require('../../actions/Me'); | |
| var RedirectActions = require('../../actions/Redirect'); | |
| var HistoryLocation = ReactRouter.HistoryLocation; |