Skip to content

Instantly share code, notes, and snippets.

View hughker's full-sized avatar

Winston Hughes hughker

View GitHub Profile
@hughker
hughker / Move Mail Message Single Account.applescript
Created March 16, 2016 15:00 — forked from Zettt/Move Mail Message Single Account.applescript
AppleScript to move selected Mail messages to a particular mailbox of a particular account. User is asked two times, once for mailbox, once for account to move messages to. [This script](https://gist.github.com/Zettt/6551639) displays only on dialog.
(*
Mail Filer
Files messages in Mail.app using type ahead. Display a dialog for account and one for all mailboxes of that account.
Created by Andreas Zeitler on 2013-09-13
Copyright Mac OS X Screencasts 2013. All rights reserved.
*)
tell application "Mail"
-- choose account
@hughker
hughker / gist:dbae7db0615eda5d59c9
Created March 9, 2016 00:38 — forked from DorkForce/scanScope.txt
Console script - Search breakpoint model for value. SYNTAX: scanScope($scope.model, 'Fred');
console.log("Usage Syntax: scanScope(objectToScan, 'scanFor', 'whatToIgnore'); (whatToIgnore is optional)");
var callStack = 0,
errArray = [],
funArray = [];
function scanLoop(whatToScan, scanValue, whatToIgnore, parentTree) {
scanValue = scanValue.toLowerCase();
whatToIgnore = (whatToIgnore !== undefined) ? whatToIgnore.toLowerCase() : undefined;
var yesCheck = false,
insertString = '';
if (parentTree === undefined) {
@hughker
hughker / unbrew.rb
Created February 24, 2016 18:42 — forked from SteveBenner/unbrew.rb
Homebrew uninstall script
#!/usr/bin/env ruby
#
# CLI tool for locating and removing a Homebrew installation
# http://brew.sh/
#
# Copyright (C) 2014 Stephen C. Benner
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
@hughker
hughker / install_makemkv.sh
Created February 23, 2016 20:17 — forked from fwenzel/install_makemkv.sh
A convenient little script to install MakeMKV on Linux
#!/bin/bash
if [ "$1" == "" ]; then
echo "Usage: $0 1.8.0"
echo "to download and install MakeMKV 1.8.0"
exit 1
fi
# Collect sudo credentials
sudo -v
@hughker
hughker / install_makemkv.sh
Created February 23, 2016 19:46 — forked from knugie/install_makemkv.sh
Ubuntu - Install MakeMKV 1.9.9
sudo apt-get install build-essential pkg-config libc6-dev libssl-dev libexpat1-dev libavcodec-dev libgl1-mesa-dev libqt4-dev
wget http://www.makemkv.com/download/makemkv-oss-1.9.9.tar.gz
wget http://www.makemkv.com/download/makemkv-bin-1.9.9.tar.gz
tar -xvf makemkv-oss-1.9.9.tar.gz
tar -xvf makemkv-bin-1.9.9.tar.gz
cd makemkv-oss-1.9.9/
./configure
make
sudo make install
@hughker
hughker / SassMeister-input.scss
Created February 15, 2016 16:48
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Media Queries Breakpoints
$screen-xs-width: 480px;
$screen-sm-width: 768px;
$screen-md-width: 992px;
$screen-lg-width: 1200px;
@hughker
hughker / SassMeister-input.scss
Created February 13, 2016 02:44
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
/*! ========================================================================
PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS
---------------------------------------------------
Indrek Paas @indrekpaas
@hughker
hughker / SassMeister-input.scss
Created February 12, 2016 19:34
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// =============================================================================
// Variables
// =============================================================================
// Media Queries Breakpoints
// Extra small screen / phone
@hughker
hughker / foundation-5-mixins.scss
Created February 12, 2016 19:20
Some Foundation 5 Mixins
/*! Source: http://foundation.zurb.com/forum/posts/850-foundation-5-and-mixins @ Alexander Assimidis */
@mixin image-2x($image, $width, $height) {
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
background-image: url($image);
background-size: $width $height;
}
@hughker
hughker / SassMeister-input.scss
Created February 12, 2016 18:40
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// =============================================================================
// Media Queries Breakpoints
// =============================================================================
// Extra small screen / phone
$screen-xs: 480px !default;