I hereby claim:
- I am devinhalladay on github.
- I am dh (https://keybase.io/dh) on keybase.
- I have a public key whose fingerprint is 0815 FE5F F335 05A7 75E8 2B22 A173 1F6A F743 2431
To claim this, I am signing this object:
.site__hero { | |
background-image: url('/uploads/2014/10/profile.png'); | |
width: 100%; | |
margin-bottom: $baseline; | |
background-position: 50%; | |
background-repeat: no-repeat; | |
-webkit-background-size: cover; | |
background-size: cover; | |
max-width: 2000px; | |
max-height: 1000px; |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
position: relative; | |
cursor: auto; | |
} | |
p, table, figure, blockquote, pre, ul, ol, | |
h1, .alpha, |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
concat: { | |
dist: { | |
/* | |
@import "foundation"; | |
@import "normalize"; | |
@import "modules/test"; | |
*/ | |
src: ['assets/sass/foundation.css', 'assets/sass/normalize.css', 'assets/sass/modules/_test.scss'], |
// Fifty Shades of Grey | |
$grey: #e7e7e8; | |
@for $i from 1 through 50 { | |
.shade-#{$i} { | |
background-color: darken($grey, $i); | |
} | |
} |
#global-actions .topics { | |
display: none; | |
/* This is the notification count on the menu item - way too distracting for life. */ | |
} | |
.ProfileTweet--high .ProfileTweet-text { | |
font-size: 16px; | |
font-weight: 400; | |
line-height: 22px; | |
/* Make new-style profiles readable again! */ |
I hereby claim:
To claim this, I am signing this object:
layout | weight | title | description |
---|---|---|---|
post |
1 |
Title |
This is a post! |
Even though this post is much older than the other, it will appear first in the post list! Magic! Witchcraft!
VERSION BUILD=8601111 RECORDER=FX | |
SET !ERRORIGNORE YES | |
SET !TIMEOUT_TAG 1 | |
SET !TIMEOUT_STEP 0 | |
SET !TIMEOUT_PAGE 5 | |
SET !REPLAYSPEED FAST | |
TAB T=1 | |
URL GOTO=https://twitter.com/favorites | |
TAG POS=19 TYPE=B ATTR=TXT:Favorited | |
TAG POS=20 TYPE=B ATTR=TXT:Favorited |
[Adblock Plus 2.0] | |
! Homepage: http://devinhalladay.com | |
! Title: AdBlock Custom | |
! AdBlock Custom - https://github.com/jtyost2/AdBlock-Custom | |
! Developed and Maintained by Justin Yost | |
! This subscription is designed to allow ads that are effective, creative | |
! and interesting advertising. It also blocks stuff that is | |
! annoying and clutters up the web. | |
@@||decknetwork.net | |
@@||engine.carbonads.com |
# To use: | |
# $ aalias "foo" "bar" | |
# Puts "alias foo='bar'" in your .aliases file | |
function aalias() { | |
# Add new line before alias | |
echo "" >> ~/.aliases && source ~/.aliases | |
# Add alias to .aliases | |
echo "alias $1='$2'" >> ~/.aliases && source ~/.aliases; | |
} |