Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Reddit remover
// @namespace http://userstyles.org
// @description Removes some elements from reddit pages
// @author userstylishone
// @homepage https://userstyles.org/styles/114307
// @run-at document-start
// @version 0.20150526083346
// ==/UserScript==
(function() {var css = "";

Keybase proof

I hereby claim:

  • I am go1dfish on github.
  • I am go1dfish (https://keybase.io/go1dfish) on keybase.
  • I have a public key whose fingerprint is F352 B7DD 7657 50A1 7FCF 6665 B074 AD47 86C3 F298

To claim this, I am signing this object:

@go1dfish
go1dfish / array_filter.js
Created October 2, 2012 02:45
Ember.js ArrayProxy based ArrayFilter implementation
Ember.ArrayFilter = Em.ArrayProxy.extend({
init: function() {
this._filterContentDidChange();
this._super();
},
arrangedContent: function() {
var af = this;
return Ember.ArrayFilterSortProxy.create({
arrayFilter: af,