Skip to content

Instantly share code, notes, and snippets.

View gleuch's full-sized avatar
🏃‍♂️
Marathon

Greg Leuch gleuch

🏃‍♂️
Marathon
View GitHub Profile
<?php */
Authorized Feeds to Google Reader
by Greg Leuch <http://www.halvfet.com>
More information at http://halvfet.com/io/adding-authorized-feeds-to-google-reader
*/
$feeds = array(
'twitter'=> 'http://username:password@twitter.com/statuses/friends_timeline.rss',
);
// ==UserScript==
// @name Ctrl+F'd
// @namespace by halvfet <http://www.halvfet.com>
// @description Rush Limbaugh believes a censored internet can't be Ctrl+F'd (or Cmd+F for Mac users).
// @include *
// ==/UserScript==
/*
Ctrl+F'd
A GreaseMonkey script to censor text on a web page, in the Rush Limbaugh style.
@gleuch
gleuch / gist:113319
Created May 18, 2009 04:39
script/console code snippet to expire cache fragments
# How-to expire memcache cache fragment files from script/console
Item.find(:all).each{|m| ActionController::Base.new.expire_fragment("item/#{m.id}")}
// adapted from jquery.com
// Hehe.
if ( window.addEventListener ) {
var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
window.addEventListener("keydown", function(e){
kkeys.push( e.keyCode );
if ( kkeys.toString().indexOf( konami ) >= 0 ) {
// Just replace www.google.com w/ whatever
window.location = "http://www.google.com";
// Sniff out visited links by a user with jQuery
// by Greg Leuch <http://www.gleuch.com>
// based on an initial idea from Jonathan Snook <http://snook.ca>
// idea: <http://twitter.com/snookca/status/1121377463>
// Note: Only works if user has browser history enabled (save history for x >0 days)
// Edit: looks like my code mimics same idea that Aza Raskin's SocialHistory.js does, sans iframe and visit color matching. <http://www.azarask.in/blog/post/socialhistoryjs/>
*Must Watch*
Magma was created for you to explore, discover, collect, share, and track videos from all over the internet.
Every video on Magma is given a score of 1 - 11. This score is an indication of how
popular the video has become, determined by the amount of social buzz, distrubution,
and view counts.
The Magma homepage is an aggregation of various channels and group that display what
is upcoming and popular across the web. The Must Watch area is a collection of upcoming
*Magma Open to the Public*
Today marks a big day for Magma — our website is now officially open to everyone.
We owe a large thanks to the nearly five thousand beta users. Their wonderful suggestions and feedback were invaluable during our three month beta period. During that time, we have collected over 65,000 videos, millions of rows of video statistics, and ------.
Of course, a big thanks also goes out to our wonderful team: Andrew Baron, Jamie Wilkinson, Kenyatta Cheese, Greg Leuch, and Todd Persen.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>
hi
</title>
<script language="JavaScript" type="text/javascript">
<!--
function Add(href) {
WebRing[++NumInWebRing] = new WebRingObject(href);
@gleuch
gleuch / gist:649975
Created October 27, 2010 20:58 — forked from ashgti/gist:649948

1. How difficult is it for you to find specific images on the internet for your projects?
Sometimes difficult, but with meme research, I’ve got a list of sites I haunt.

2. Would it be helpful for you to see how other users have rated images you are considering?
Yes. Virality is also important, such as # views, where it has been used, etc.

3. How important is it for you to be able to find high-resolution images?
Yes.

4. Would you be willing to share your own images for free or for a fee?

#!/bin/sh
#
# branch [branchname]
#
# Create a new local AND remote git branch
# Setup local branch to use remote tracking
#
branch=$1
if [ -z $branch ]; then