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
brew reinstall imagemagick --with-jp2 --with-librsvg --with-quantum-depth-16 --with-pango | |
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
brew reinstall imagemagick --with-jp2 --with-librsvg --with-quantum-depth-16 --with-pango | |
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
/* | |
Takes data elements from an HTML tag and converts to a URL encoded string. | |
*/ | |
bonzo.aug({ | |
param: function () { | |
var str = []; | |
obj = this.data(); | |
for(var p in obj) | |
str.push(p + "=" + encodeURIComponent(obj[p])); |
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
$(selector).dialog({ | |
open: function (evt, ui) { | |
$(':focus', this).blur(); | |
}, | |
width:400, | |
height:250, | |
modal:true, | |
title:'Help' | |
}); |
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
// | |
// ZbarPlug.h | |
// Phun | |
// | |
// Created by Jeff Lee on 12/12/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import <UIKit/UIKit.h> |