Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View elijahmanor's full-sized avatar
😀

Elijah Manor elijahmanor

😀
View GitHub Profile
@elijahmanor
elijahmanor / SassMeister-input-HTML.html
Created February 6, 2014 03:57
Generated by SassMeister.com.
<div>linear-gradient-average</div>
#box {
width: 200px;
height: 200px;
padding: 10px;
margin: 5px;
border: 1px solid black;
}
@elijahmanor
elijahmanor / ictids.js
Created March 24, 2014 20:29
Log Ictids
(function() {
var ictids = [];
[].forEach.call(document.querySelectorAll("a"), function(link) {
var ictid;
if (~link.href.indexOf("ictid")) {
ictid = link.href.split("=")[1];
if (!~ictids.indexOf(ictid)) {
ictids.push(ictid);
}
@elijahmanor
elijahmanor / readme.md
Last active August 29, 2015 14:00
ES6: Using Tomorrow's JavaScript Today

ES6: Using Tomorrow's JavaScript Today

Title

ES6: Using Tomorrow's JavaScript Today

Abstract

JavaScript has been around for quite some time and it's been an interesting journey. We're in anintersting place where the lastest version of JavaScript (ECMAScript 6) is being implemented across modern browsers and we can start playing with it today.

@elijahmanor
elijahmanor / readme.md
Last active August 29, 2015 14:00
Comparing Backbone.js and AngularJS while Refactoring Spaghetti jQuery

Comparing Backbone.js and AngularJS while Refactoring Spaghetti jQuery

Title

Comparing Backbone.js and AngularJS while Refactoring Spaghetti jQuery

Abstract

jQuery has definitely become popular in the last several years. Unfortunately you might have found that organizing your application with jQuery can become difficult and you may experience code that feels more like a plate of spaghetti logic.

@elijahmanor
elijahmanor / SassMeister-input.scss
Created June 11, 2014 18:05
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// Scut (v0.10.4)
// ----
@import "scut";
$breakpoints: (
palm: 24em,
@elijahmanor
elijahmanor / SassMeister-input.scss
Created June 11, 2014 19:49
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// Bourbon (v4.0.2)
// Scut (v0.10.4)
// ----
@import "scut";
@import "bourbon/bourbon";
@elijahmanor
elijahmanor / SassMeister-input.scss
Last active August 29, 2015 14:03
Generated by SassMeister.com.
// ----
// Sass (v3.2.19)
// Compass (v0.12.6)
// Scut (v0.10.4)
// ----
@import "scut";
@mixin typeset( $level: body-copy ) {
$types: (
@elijahmanor
elijahmanor / SassMeister-input.scss
Last active August 29, 2015 14:03
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// Scut (v0.10.4)
// ----
@import "scut";
@mixin typeset( $type: body-copy ) {
$types: (
@elijahmanor
elijahmanor / font-sizes.input.scss
Last active August 29, 2015 14:03
Generated by SassMeister.com.
$fontSizes: (
big: 42px,
medium: 20px,
small: 12px
);
h1 { font-size: map-get($fontSizes, big); }