Skip to content

Instantly share code, notes, and snippets.

View pfulton's full-sized avatar

Patrick Fulton pfulton

View GitHub Profile
@pfulton
pfulton / ublock-twitterneue.txt
Last active July 22, 2019 21:22 — forked from beep/ublock-twitterneue.txt
uBlock Origin rules for new twitter website
# hides engage-y modules from the rightmost sidebar
twitter.com##.r-m611by > .r-t23y2h
# hides promoted tweets
twitter.com##article :has(svg[d="M20.75 2H3.25C2.007 2 1 3.007 1 4.25v15.5C1 20.993 2.007 22 3.25 22h17.5c1.243 0 2.25-1.007 2.25-2.25V4.25C23 3.007 21.993 2 20.75 2zM17.5 13.504c0 .483-.392.875-.875.875s-.875-.393-.875-.876V9.967l-7.547 7.546c-.17.17-.395.256-.62.256s-.447-.086-.618-.257c-.342-.342-.342-.896 0-1.237l7.547-7.547h-3.54c-.482 0-.874-.393-.874-.876s.392-.875.875-.875h5.65c.483 0 .875.39.875.874v5.65z"])
# hides likes from other users in the main feed
twitter.com##article :has(svg[d="M12 21.638h-.014C9.403 21.59 1.95 14.856 1.95 8.478c0-3.064 2.525-5.754 5.403-5.754 2.29 0 3.83 1.58 4.646 2.73.814-1.148 2.354-2.73 4.645-2.73 2.88 0 5.404 2.69 5.404 5.755 0 6.376-7.454 13.11-10.037 13.157H12z"]

Keybase proof

I hereby claim:

  • I am pfulton on github.
  • I am pfulton (https://keybase.io/pfulton) on keybase.
  • I have a public key ASCcLPnk5dZFhLv9hgkhojeth8TvZoqfznRSLeqzLPt1hQo

To claim this, I am signing this object:

@pfulton
pfulton / sass-compass-resources.txt
Last active May 30, 2016 12:51
Sass & Compass Resources
Sass and Compass Resources
=====================================================
***ONLINE***
> Official: http://sass-lang.com
> Official: http://compass-style.org
> http://thesassway.com
@pfulton
pfulton / SassMeister-input.scss
Last active January 6, 2016 18:41
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@mixin bg-color($color) {
background-color: $color;
}
.my-thing {
&.theme-red {
@pfulton
pfulton / SassMeister-input.scss
Created October 24, 2013 17:47
An example of compiling options available in Sass & Compass
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
@import "compass";
.content-wrap {
width: 95%;
margin-left: 2.5%;
@pfulton
pfulton / SassMeister-input.scss
Created October 24, 2013 15:15
An example of using the placeholder selector and @extend in Sass & Compass
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
%module {
background: #fff;
color: #444;
}
@pfulton
pfulton / SassMeister-input.scss
Created October 24, 2013 15:11
An example of using @extend in Sass & Compass.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
@import "compass";
.module {
background: #fff;
color: #444;
@pfulton
pfulton / SassMeister-input-HTML.haml
Created October 24, 2013 14:12
An example of using the Breakpoint extension for Sass & Compass
%section.main
%section.primary-content
%h1 About Us
%p.intro Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris orci mi, molestie quis congue ac, condimentum sit amet mauris. Curabitur a nisi nec arcu facilisis iaculis sit amet ultricies ligula.
%aside.secondary-content
%nav.secondary-navigation
%ul
%li
%a{:href => "#"} Staff
%li
@pfulton
pfulton / compass-selector-nest.css
Created July 19, 2013 21:17
Compass Selector Helpers: Nest
ul li ul li.parent ul {
display: none;
}
ul li ul li.parent.active ul {
display: block;
}
@pfulton
pfulton / pjax-picturefill.js
Created July 16, 2013 14:21
pjax + picturefill
(function($){
$(document).on('pjax:complete', function(){
if (typeof window.picturefill != 'undefined'){
window.picturefill();
}
});
}(jQuery))