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
diff --git a/Library/Formula/gnutls.rb b/Library/Formula/gnutls.rb | |
index 9f9b9ef..68a7716 100644 | |
--- a/Library/Formula/gnutls.rb | |
+++ b/Library/Formula/gnutls.rb | |
@@ -16,7 +16,7 @@ class Gnutls < Formula | |
fails_with_llvm "Undefined symbols when linking", :build => "2326" | |
def install | |
- ENV.universal_binary # build fat so wine can use it | |
+ # ENV.universal_binary # build fat so wine can use it |
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
<div class="{{type}}"> | |
<div class="wrapper"> | |
<ul class="list"> | |
{{#messages}} | |
<li {{{itemAttrs}}}> | |
<span class="icon"></span> | |
<span>{{message}}</span> | |
</li> | |
{{/messages}} | |
</ul> |
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 | |
python `which pyccuracy_console` \ | |
selenium.server=localhost selenium.port=4444 \ | |
-R false --suppresswarnings \ | |
-A /Users/irae/code/profile/tests/pyccuracy/actions \ | |
-P /Users/irae/code/profile/tests/pyccuracy/pages \ | |
-H /Users/irae/code/profile/tests/pyccuracy/hooks \ | |
-d /Users/irae/code/profile/tests/pyccuracy/acceptance \ | |
-u http://integration.profile.yahoo.com \ |
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
# colors | |
RED=\033[01;31m | |
GREEN=\033[01;32m | |
# NC = No Color | |
NC=\033[01;00m | |
default: cores | |
foo: | |
echo "1" |
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
Show hidden characters
{ | |
/*** Globals ***/ | |
// To ignore any custom global variables, enable the `predef` option and list | |
// your variables within it. | |
"predef": [ | |
"exports", | |
"YUITest", | |
"YUI", | |
"YUI_config", | |
"YAHOO", |
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 | |
ps aux | egrep "Google Chrome.app" | egrep -v egrep | awk '{ print $2 }' | xargs kill -9 2> /dev/null > /dev/null | |
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --disable-web-security 2> /dev/null > /dev/null |
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
[alias] | |
st = status -sb | |
ci = commit -v | |
co = checkout | |
br = branch | |
d = diff --color-words | |
dt = difftool | |
l = log --oneline --decorate | |
lg = log --graph --oneline --decorate=full | |
ll = log --no-merges --pretty=format:%C(yellow)%h%Creset\\ %Cgreen%an%Creset\\ %Cred%d%Creset\\ %s |
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
var chars = "AEIO", | |
iterations = 3, | |
output = []; | |
function iterate(given, iterationsLeft){ | |
var i, len = chars.length; | |
for(i = 0; i < len; i++) { | |
if(given.length < iterations-1) { | |
iterate(given+chars[i], iterationsLeft-1); | |
} else { |
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
[alias] | |
vommit = !sh -c \"cat ~/.gitvommit\" |
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
(function(global){ | |
'use strict'; | |
function flexFix() { | |
var list = document.querySelector('.flexFix'); | |
if (!list) { return ;} | |
var items = list.children; | |
if (!items.length) { return ;} | |
var newContainer; | |
var perLine = 4; | |
var stopper = items.length % perLine + 1; |