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
| @-webkit-keyframes thing { | |
| html 0% { | |
| opacity: 0 | |
| } | |
| html 0% { | |
| background: black; | |
| } | |
| html 100% { | |
| opacity: 1 | |
| } |
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 './index.ess' | |
| import './app.ess' | |
| // App | |
| :ess | |
| import {floatLeft} from 'utils.ess' | |
| .App | |
| = floatLeft() |
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
| Layout.margin-bottom-1 | |
| Layout(justified, style={background: bg, color: color}).pad-1xy.flex-1 | |
| strong= value.name | |
| span= bg |
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
| printf '\033[31m8.\033[0m' |
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
| setInterval(function() { | |
| Array.prototype.slice.call(document.querySelectorAll('[data-reactid]')) | |
| .forEach(function(element) { | |
| element.style.background = 'rgba(255,0,0,0.1)'; | |
| }); | |
| }, 500) |
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 bg = props.bg | |
| var family = props.family | |
| background = bg || 'white' | |
| font-family = family || 'Arial' |
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 SimpleCards from './simple-cards.jade' | |
| label overwrite | |
| input(onChange=this.onChange.bind(null, 'overwrite') defaultValue=state.overwrite) | |
| label frozen | |
| input(onChange=this.onChange.bind(null, 'frozen') defaultValue=state.frozen) | |
| json= state | |
| SimpleCards | |
| SimpleCards&props(state) |
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
| 15:17:13.350 [error] Ranch listener Api.HTTP.HTTP had connection process started with :cowboy_protocol:start_link/4 at #PID<0.448.0> exit with reason: {{%ArgumentError{message: "argument error"}, [{:erlang, :byte_size, [nil], []}, {Api.Service.Snow, :do_get, 4, [file: 'lib/api/service/snow.ex', line: 46]}, {Api.Resource.Cases.Hyperjson, :etude_14667509_exec, 5, [file: '/Users/michaelvanasse/Projects/optiv/poe-service-now-proxy/lib/api/resource/cases.ex', line: 7]}, {Api.Resource.Cases.Hyperjson, :etude_14667509, 4, [file: '/Users/michaelvanasse/Projects/optiv/poe-service-now-proxy/lib/api/resource/cases.ex', line: 7]}, {Api.Resource.Cases.Hyperjson, :etude_var_22987114, 4, [file: '/Users/michaelvanasse/Projects/optiv/poe-service-now-proxy/lib/api/resource/cases.ex', line: 6]}, {Api.Resource.Cases.Hyperjson, :etude_104760913, 4, [file: '/Users/michaelvanasse/Projects/optiv/poe-service-now-proxy/lib/api/resource/cases.ex', line: 14]}, {Api.Resource.Cases.Hyperjson, :etude_27645449, 4, [file: '/Users/michaelvana |
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
| defmodule Api.Resource.Cases.Read do | |
| defmacro __using__([type: typename]) do | |
| quote do | |
| import unquote(__MODULE__) | |
| use PoeApi.Resource | |
| param item | |
| let item_res = Case.get(unquote(typename), item) |
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
| :doc | |
| This is a test component | |
| @name Test | |
| @prop {String} color | |
| :js | |
| var color = props.color || 'none'; | |
| h1= `color: ${color}` |