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
| #/bin/sh | |
| # Update: 2014-06-24 | |
| # Author: YoungShook | |
| # compress application. | |
| if [ "${CONFIGURATION}" = "Release" ]; then | |
| # Local Display App Name And Default Icon@2x.png ------------ need developer custom | |
| ICON_NAME="Icon-76@2x.png" |
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
| //合成処理のモジュール化 | |
| var spawn = require('child_process').spawn | |
| var fs = require('fs'); | |
| //子プロセスで処理 | |
| var gmcomposite = function(change_path, base_path, mask_path, output_path, callback) { | |
| var c = spawn('gm', ['composite', '-quality', 100, '-geometry', '+0+0', change_path, base_path, output_path]); | |
| c.stderr.on('data', function(data) { | |
| console.log('stderr: ' + data); | |
| }) |
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
| #import <Foundation/Foundation.h> | |
| #import <termios.h> | |
| #import <time.h> | |
| #import <sys/ioctl.h> | |
| @implementation NSString(UCS2Encoding) | |
| - (NSString*)ucs2EncodingString{ | |
| NSMutableString *result = [NSMutableString string]; |
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
| UITableView convenience classes for resizing header and footer with autolayout. |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Subscriptions - WHY</title> | |
| </head> | |
| <body> | |
| <outline text="cool" title="cool"> | |
| <outline htmlUrl="http://kedebug.com/" title="kedebug" xmlUrl="http://kedebug.com/atom.xml" type="rss" text="kedebug"/> | |
| <outline htmlUrl="http://lucida.me/" title="Lucida" xmlUrl="http://lucida.me/atom.xml" type="rss" text="Lucida"/> | |
| <outline htmlUrl="http://www.alloyteam.com" title="Web前端 腾讯AlloyTeam Blog | 愿景: 成为地球卓越的Web团队!" xmlUrl="http://www.alloyteam.com/feed/" type="rss" text="Web前端 腾讯AlloyTeam Blog | 愿景: 成为地球卓越的Web团队!"/> |
OlderNewer