This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// Media Queries Breakpoints | |
$screen-xs-width: 480px; | |
$screen-sm-width: 768px; | |
$screen-md-width: 992px; | |
$screen-lg-width: 1200px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
/*! ======================================================================== | |
PRECISE CONTROL OVER RESPONSIVE TYPOGRAPHY FOR SASS | |
--------------------------------------------------- | |
Indrek Paas @indrekpaas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// ============================================================================= | |
// Variables | |
// ============================================================================= | |
// Media Queries Breakpoints | |
// Extra small screen / phone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// ============================================================================= | |
// Media Queries Breakpoints | |
// ============================================================================= | |
// Extra small screen / phone | |
$screen-xs: 480px !default; |