Skip to content

Instantly share code, notes, and snippets.

View wrumsby's full-sized avatar
💭
what is this even

Walter Rumsby wrumsby

💭
what is this even
View GitHub Profile
@wrumsby
wrumsby / .jshintrc
Created February 6, 2014 23:39
Sample .jshintrc File
{
"curly": true,
"eqnull": true,
"eqeqeq": false,
"strict": true,
"undef": true,
"browser": true,
"scripturl": true,
"smarttabs": true,
"sub": true,
@wrumsby
wrumsby / .editorconfig
Created February 6, 2014 23:41
Sample .editorconfig File
root = true
[*]
end_of_line = crlf
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
@wrumsby
wrumsby / dabblet.css
Created February 10, 2014 03:46
Messing around in the SMACSS workshop at Webstock.
/**
* Messing around in the SMACSS workshop at Webstock.
*/
/* BASE */
body {
margin: 0;
padding: 0;
background-color: #eee;
font-family: Open Sans, sans-serif;
@wrumsby
wrumsby / dabblet.css
Created February 13, 2014 02:10
Use an attribute selector to hide when count is 0.
/**
* Use an attribute selector to hide when count is 0.
*/
body {
font-family: sans-serif;
}
.badge {
display: inline-block;
@wrumsby
wrumsby / dabblet.css
Created February 18, 2014 19:48
Use an attribute selector to hide when count is 0.
/**
* Use an attribute selector to hide when count is 0.
*/
body {
font-family: sans-serif;
}
.badge {
display: inline-block;
@wrumsby
wrumsby / dabblet.css
Created February 19, 2014 02:11
Use an attribute selector to hide when count is 0.
/**
* Use an attribute selector to hide when count is 0.
*/
body {
font-family: sans-serif;
}
.badge {
display: inline-block;
@wrumsby
wrumsby / dabblet.css
Created March 18, 2014 19:22
Unicode number operators with different fonts
/**
* Unicode number operators with different fonts
*/
body {
background-color: #fff;
color: #333;
font-family: sans-serif;
font-size: 14pt;
}
@wrumsby
wrumsby / dabblet.css
Created May 11, 2014 20:59
pointer-events: none;
/**
* pointer-events: none;
* see http://caniuse.com/#feat=pointer-events
*/
body {
font-family: sans-serif;
}
.link_disabled {
pointer-events: none;
[08:49:33][Step 2/3] Fatal error: Failed to execute "git ls-remote --tags --heads git://github.com/FortAwesome/Font-Awesome.git", exit code of #128
@wrumsby
wrumsby / compass.js
Last active August 29, 2015 14:03
grunt-contrib-compass task configuration
module.exports = {
options: {
config: 'config.rb',
bundleExec: true
},
clean: {
options: {
clean: true
}
},