This file contains hidden or 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
$ brew info weechat | |
weechat: stable 0.4.2, HEAD | |
http://www.weechat.org | |
/usr/local/Cellar/weechat/0.4.2 (26 files, 2.8M) * | |
Built from source with: --with-aspell, --with-python, --with-ruby, --with-lua, --with-guile, --with-perl | |
From: https://github.com/Homebrew/homebrew/commits/master/Library/Formula/weechat.rb | |
==> Dependencies | |
Build: cmake ✔ | |
Required: gnutls ✔, libgcrypt ✔ | |
Optional: guile ✔, aspell ✔, lua ✔ |
This file contains hidden or 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
{ | |
"folders": | |
[ | |
{ // theme | |
"path": "/C/wamp/www/wordpress/wp-content/themes/twentyeleven", | |
"name": "Twenty Eleven Theme", | |
"file_exclude_patterns":[ | |
"._*", | |
"*.ico", | |
"*.swf" |
This file contains hidden or 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
{ | |
"libs": [ | |
"browser", | |
"underscore" | |
], | |
"plugins": { | |
"angular" | |
} | |
} |
This file contains hidden or 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
{ | |
// -------------------------------------------------------------------- | |
// JSHint Configuration, Strict Edition | |
// -------------------------------------------------------------------- | |
// | |
// This is a options template for [JSHint][1], using [JSHint example][2] | |
// and [Ory Band's example][3] as basis and setting config values to | |
// be most strict: | |
// | |
// * set all enforcing options to true |
This file contains hidden or 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
humanize = function (size) { | |
var gb = Math.pow(1024, 3); | |
var mb = Math.pow(1024, 2); | |
var kb = 1024; | |
if (size >= gb) | |
return Math.floor(size / gb) + ' GB'; | |
else if (size >= 1024^2) | |
return Math.floor(size / mb) + ' MB'; | |
else if (size >= 1024) |
This file contains hidden or 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
$ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install weechat --with-python | |
[...] | |
/usr/bin/make -f src/plugins/python/CMakeFiles/python.dir/build.make src/plugins/python/CMakeFiles/python.dir/depend | |
cd /tmp/weechat-z5DE/weechat-0.4.1/build && /usr/local/Cellar/cmake/2.8.11.1/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/weechat-z5DE/weechat-0.4.1 /tmp/weechat-z5DE/weechat-0.4.1/src/plugins/python /tmp/weechat-z5DE/weechat-0.4.1/build /tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python /tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python/CMakeFiles/python.dir/DependInfo.cmake --color= | |
Dependee "/tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python/CMakeFiles/python.dir/DependInfo.cmake" is newer than depender "/tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python/CMakeFiles/python.dir/depend.internal". | |
Dependee "/tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/tmp/weechat-z5DE/weechat-0.4.1/build/src/plugins/python/CMakeFile |
This file contains hidden or 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
$ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install p11-kit 2>&1 | |
==> Downloading http://p11-glue.freedesktop.org/releases/p11-kit-0.18.1.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/p11-kit-0.18.1.tar.gz | |
tar xf /Library/Caches/Homebrew/p11-kit-0.18.1.tar.gz | |
==> Patching | |
/usr/bin/patch -f -p1 -i 000-homebrew.diff | |
patching file configure.ac | |
patching file configure | |
Hunk #1 succeeded at 17201 with fuzz 1. | |
patching file common/library.c |
This file contains hidden or 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
$imageWidth: 100px; | |
$imageHeight: 30px; | |
.replace { | |
display: block; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
background: url(http://notrealdomain2.com/newbanner.png) no-repeat; | |
width: $imageWidth; | |
height: $imageHeight; |
This file contains hidden or 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
// as found on http://stackoverflow.com/questions/7243065/help-with-custom-jquery-easing-function | |
// supporting math function (not included in the standard javascript Math object) | |
function sinh(aValue) { | |
var myTerm1 = Math.pow(Math.E, aValue); | |
var myTerm2 = Math.pow(Math.E, -aValue); | |
return (myTerm1-myTerm2)/2; | |
} | |
// adds the function to the javascript easing object |