Skip to content

Instantly share code, notes, and snippets.

View aebsr's full-sized avatar

Antoine Butler aebsr

View GitHub Profile
.poc-scenario {
border: 1px solid red;
}
.poc-scenario h1 {
color: blue;
}
.poc-scenario p {
color: green;
[
{
"id": 1,
"steps":
[
{
"id": 1,
"title": "Get Ready For Your Day",
"body": "Tools on the Home Page allow you to see your day at a glance so you can plan for what’s ahead.",
"graphic": "http://via.placeholder.com/945x597?text=1"
@aebsr
aebsr / Engine Number 9.js
Created June 15, 2016 20:08
The Choice Is Yours
const tracks = [ 'train' ];
for (let i = 0; i < tracks.length; i++) {
if (tracks[i] === 'train') {
console.log('Pick it up');
console.log('Pick it up');
alert('Back on the scene, crispy ’n clean');
}
}
1 warning generated.
compiling nio4r_ext.c
In file included from nio4r_ext.c:6:
In file included from ./nio4r.h:10:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/include/ruby-2.0.0/ruby/backward/rubyio.h:2:2: warning: use "ruby/io.h" instead of "rubyio.h" [-W#warnings]
#warning use "ruby/io.h" instead of "rubyio.h"
^
In file included from nio4r_ext.c:7:
./../libev/ev.c:481:48: warning: '/*' within block comment [-Wcomment]
@aebsr
aebsr / BMORESPONSIVE-CSS-Logo-Mark.markdown
Created February 24, 2014 21:48
A Pen by Antoine Butler.
@aebsr
aebsr / Apple-Calendar-Experiment.markdown
Created January 28, 2014 06:59
A Pen by Antoine Butler.
@aebsr
aebsr / replace-nums.less
Created November 22, 2013 16:35
replace list nums
// The Mixin
.replace-nums (@index) when (@index > 0) {
&:nth-child(@{index}):before {
content: '@{index}'
}
.replace-nums(@index - 1);
}
.replace-nums (@index, @content) when (@index > 0) {
@aebsr
aebsr / transition.css
Last active December 26, 2015 21:49
Proposed New Transition Mixin Set for http://github.com/hzdg/bedrock/
.verbose {
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
-ms-transition-property: -ms-transform;
-o-transition-property: -o-transform;
transition-property: transform;
-webkit-transition-property: 1s;
-moz-transition-property: 1s;
-ms-transition-property: 1s;
-o-transition-property: 1s;
@aebsr
aebsr / gist:6614054
Created September 18, 2013 19:12
a nested sequence under the graphic object. The hope is that I can access these paths in the prose.io editor.
---
published: true
layout: awesome
title: I Know Right?
graphic:
- path: http://dummyimage.com/2000x1250/&text=1
- path: http://dummyimage.com/2000x1250/&text=2
- path: http://dummyimage.com/2000x1250/&text=3
---
@aebsr
aebsr / placeholder.less
Last active December 20, 2015 21:08
placeholder text mixin
// placeholder mixin
.placeholder (@el:~'[placeholder]') {
@{el}::-webkit-input-placeholder { .styles; }
@{el}:-ms-input-placeholder { .styles; }
@{el}::input-placeholder { .styles; }
@{el}:input-placeholder { .styles; }
@{el}::-moz-placeholder { .styles; }
@{el}:-moz-placeholder { .styles; }
@{el}::placeholder { .styles; }
@{el}:placeholder { .styles; }