Skip to content

Instantly share code, notes, and snippets.

View stefandz's full-sized avatar

stefandz

View GitHub Profile
@IanColdwater
IanColdwater / twittermute.txt
Last active April 14, 2025 16:31
Here are some terms to mute on Twitter to clean your timeline up a bit.
Mute these words in your settings here: https://twitter.com/settings/muted_keywords
ActivityTweet
generic_activity_highlights
generic_activity_momentsbreaking
RankedOrganicTweet
suggest_activity
suggest_activity_feed
suggest_activity_highlights
suggest_activity_tweet
@jbl0ndie
jbl0ndie / gist:f5c752841901e9484d20bacbb6ceddf9
Last active April 28, 2017 09:08
OS X (or Mac OS) stops showing thumbnail images - fix
//Open Terminal
cd ~/Library/Preferences
rm com.apple.finder.plist //Delete Finder's property list
sudo killall Finder //Kills Finder which should prompt OS X to restart it automatically
//Optional manual restart of Finder
open /System/Library/CoreServices/Finder.app
//Adapted from http://www.jgoode.com/easy-fix-for-mac-finder-preview-thumbnails-not-displaying/
@maxgrinev
maxgrinev / gist:f02fd7fd6425a8b74dcf
Created August 30, 2014 06:31
iTerm2: Change cursor blinking speed (quit iTerm, run in Terminal.app, restart iTerm) (requires Nightly build)
defaults write com.googlecode.iterm2 TimeBetweenBlinks -float 0.2
@TomByrne
TomByrne / MultiExporter.jsx
Last active April 2, 2025 10:37
An Illustrator script for exporting layers and/or artboards into separate files (PNG8 / PNG24 / EPS / PDF / SVG / JPG / FXG).See http://www.tbyrne.org/export-illustrator-layers-to-svg-files
// MultiExporter.jsx
// Version 0.1
// Version 0.2 Adds PNG and EPS exports
// Version 0.3 Adds support for exporting at different resolutions
// Version 0.4 Adds support for SVG, changed EPS behaviour to minimise output filesize
// Version 0.5 Fixed cropping issues
// Version 0.6 Added inner padding mode to prevent circular bounds clipping
//
// Copyright 2013 Tom Byrne
// Comments or suggestions to tom@tbyrne.org
@caniszczyk
caniszczyk / clone-all-twitter-github-repos.sh
Created October 9, 2012 04:25
Clone all repos from a GitHub organization
curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'