Skip to content

Instantly share code, notes, and snippets.

View devinhalladay's full-sized avatar
🌱
running my fingers through the grass

devin devinhalladay

🌱
running my fingers through the grass
View GitHub Profile
.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,
@devinhalladay
devinhalladay / gruntfile.js
Created September 3, 2014 23:11
gruntfile.js
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'],
@devinhalladay
devinhalladay / fifty-shades-of-grey.scss
Created August 30, 2014 19:07
Fifty Shades of Grey in Sass
// Fifty Shades of Grey
$grey: #e7e7e8;
@for $i from 1 through 50 {
.shade-#{$i} {
background-color: darken($grey, $i);
}
}
@devinhalladay
devinhalladay / twit.css
Created June 4, 2014 13:44
Better Twitter.
#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! */

Keybase proof

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:

@devinhalladay
devinhalladay / 2014-01-01-post-2.md
Last active August 29, 2015 13:56
Use this code to manually sort posts with Jekyll, using Liquid only.
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!

@devinhalladay
devinhalladay / unfavorite
Created January 11, 2014 02:43
Unfav all Tweets
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
@devinhalladay
devinhalladay / filters.txt
Last active January 1, 2016 18:19
Adblock Filters
[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
@devinhalladay
devinhalladay / .bash_profile
Created October 5, 2013 13:07
A function for creating permanent aliases.
# 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;
}