Skip to content

Instantly share code, notes, and snippets.

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

Devin Halladay devinhalladay

🌱
running my fingers through the grass
View GitHub Profile
@devinhalladay
devinhalladay / guild.txt
Created June 19, 2013 14:54
This is in response to an email from Twitter rejecting The Guild's request to acquire the inactive @Guild Twitter handle.
Hello,
The Guild would like to acquire this username. First off, I will provide a quick example of this happening to someone else:
The Industry (@industry, http://theindustry.cc) acquired the username @industry without actually being impersonated. They merely had friends at Twitter and those friends gave them the inactive username (it was already in use, but the user hadn't Tweeted for some time). If you allow that for one company, that does not even own industry.com, how is it fair to not allow that treatment for The Guild?
Secondly, the account @guild, the one we are trying to acquire, has not been active since December 17th, 2012 — that's six (6) months and three (3) days (including today), which is a month and three days more than the suggested five months of inactivity required in order to have an account regarded as inactive.
Third, all of @guild's Tweets are spam. The English Tweets are all spam links and referral links. I have taken the liberty of translating the Japanese Tweets for you so you can
@devinhalladay
devinhalladay / structure.md
Last active December 20, 2015 04:39
My site structure for Sass
> Sites
  > devinhalladay.com
    > .sass-cache # Sass caching to make compiling faster
    > […]
    > public
      > css
	- devin.css # My main stylesheet, compiled by Livereload
	- [*.css]
 
@devinhalladay
devinhalladay / removehash.js
Last active December 22, 2015 02:39
Remove hashes from the URL on page load.
$(document).ready(function() {
window.location.hash = '';
history.pushState('', document.title, window.location.pathname);
});
@devinhalladay
devinhalladay / gb.css
Created September 25, 2013 21:05
Blurred bg with css3
#bg {
-webkit-filter: blur(20px);
-moz-filter: blur(20px);
-o-filter: blur(20px);
-ms-filter: blur(20px);
filter: blur(20px);
opacity: 0.4;
}
@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;
}
@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 / 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 / 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!

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 / 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! */