Skip to content

Instantly share code, notes, and snippets.

View sillygwailo's full-sized avatar

Richard Eriksson sillygwailo

View GitHub Profile
@magnetikonline
magnetikonline / README.md
Last active January 12, 2025 22:31
List all Git repository objects by size.

List all Git repository objects by size

Summary

Bash script which will:

  • Iterate all commits made within a Git repository.
@rauchg
rauchg / README.md
Last active January 6, 2024 07:19
require-from-twitter
@dariusk
dariusk / index.js
Created February 20, 2016 19:28
@TinyAssistant
var Twit = require('twit');
var T = new Twit(require('./config.js'));
var wordfilter = require('wordfilter');
var ent = require('ent');
var readability = require('readability-api');
readability.configure({
consumer_key: 'CONSUMER_KEY',
consumer_secret: 'CONSUMER_SECRET'
});
@fortserious
fortserious / heartstofavs.js
Last active January 18, 2016 21:59
Changes twitter's heart icons back to yellow stars.
// ==UserScript==
// @name twitter hearts to favs
// @namespace rossdoran.com
// @version 6.0
// @description don't tread on me
// @author ross doran
// @match https://twitter.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @updateURL https://gist.githubusercontent.com/raw/0a4d7f3f36806ff12562/
@jaxgeller
jaxgeller / gist:14b6e0b7abd0219a38f1
Created July 8, 2015 16:12
Disable Cyberduck Bonjour Notifications
# in terminal
defaults write ch.sudo.cyberduck rendezvous.enable false
anonymous
anonymous / blockerList.json
Created June 25, 2015 00:05
Testing Safari Content Blocker on iMore.com
[
{
"action": {
"type": "block"
},
"trigger": {
"url-filter": ".*",
"resource-type": ["script"],
"load-type": ["third-party"],
"if-domain": ["imore.com"]
@aparrish
aparrish / twitterbot.md
Last active May 23, 2022 01:03
Make-A-Twitter-Bot Workshop
@onelesd
onelesd / slack.applescript
Last active August 29, 2015 14:13
Focus slack window and next unread conversation
activate application "Slack"
tell application "System Events" to tell process "Slack"
key code 125 using {option down, shift down}
end tell
-- use with FastScripts - http://www.red-sweater.com/fastscripts/
-- FastScripts pauses script execution before key presses until
-- you've released the hotkey meta character. This makes it more
-- reliable than just running it as a Service via a shortcut in
-- System Preferences.
@iainmullan
iainmullan / pitchfork-2014.json
Last active August 29, 2015 14:11
Pitchfork 100 Best Tracks of 2014
[
{
"artist":"Elisa Ambrogio",
"title":"Superstitious",
"pos":100
},
{
"artist":"Steve Gunn",
"title":"Milly's Garden",
"pos":99
@robbiet480
robbiet480 / geofency-foursquare.php
Created December 10, 2014 21:34
This is a simple PHP script that will let you automatically check into Foursquare venues based on your GeoFency bounds.
<?php
$accesstoken = "oAuth Access Token from Foursquare";
$loc = $_REQUEST['id'];
// Just add a switch case for every venue you want to check into
// Use something like requestb.in to find the location id
// Paste it into the case, and then paste the Foursquare/Swarm venue ID
switch($loc) {
case '2FB4E2F2-34E7-4B73-A553-9BCC1C1204CF':
// Home
$venueid = "4c4a689542b4d13a23ba297d";