$ brew tap Homebrew/bundle
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
| export LANG=ja_JP.UTF-8 | |
| autoload -Uz colors | |
| colors | |
| PROMPT='%F{yellow}>_%f ' | |
| #RPROMPT='' | |
| # Completion Settings | |
| autoload -Uz compinit | |
| compinit | |
| zstyle ':completion:*' menu select |
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
| [storage] | |
| engine = dropbox | |
| directory = Mackup | |
| [applications_to_ignore] | |
| iterm2 | |
| illustrator | |
| photoshop | |
| Adobe-camera-row | |
| subversion |
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
| tap "homebrew/bundle" | |
| tap "homebrew/cask" | |
| tap "homebrew/cask-drivers" | |
| tap "homebrew/cask-fonts" | |
| tap "homebrew/core" | |
| tap "mas-cli/tap" | |
| tap "rcmdnk/file" | |
| tap "sanemat/font" | |
| tap "vitorgalvao/tiny-scripts" | |
| brew "bash-completion" |
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
| require_once('workflows.php'); | |
| $wf = new Workflows(); | |
| $orig = "{query}"; | |
| $xml = $wf->request( "http://google.co.jp/complete/search?hl=ja&ie=utf_8&oe=utf_8&output=toolbar&q=".urlencode( $orig ) ); | |
| $xml = simplexml_load_string( $xml ); | |
| $int = 1; | |
| foreach( $xml as $sugg ): | |
| $data = $sugg->suggestion->attributes()->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
| require('workflows.php'); | |
| $w = new Workflows(); | |
| // Grab input and build query url string | |
| $in = "{query}"; | |
| $url = "http://completion.amazon.co.jp/search/complete?method=completion&q=".urlencode( $in )."&search-alias=aps&mkt=6&x=updateISSCompletion&noCacheIE=1295031912518"; | |
| // Grab the data from Amazon | |
| $str = $w->request( $url ); |
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
| RewriteEngine on | |
| RewriteCond %{HTTP_REFERER} ^http://対象サイトのURL/.*$ | |
| RewriteRule ^(.*)$ 置換え画像のURL [R=301] |
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
| /** | |
| * Google ドキュメントのフォームから投稿があったら確認メールを自動返信する(日本語版) | |
| * English version will be available later. | |
| * | |
| * @author Masunaga Ray ( http://www.msng.info/ ) | |
| * @instruction http://www.msng.info/archives/2012/04/google-docs-auto-reply.php | |
| */ | |
| function sendConfirmation() { | |
| try { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); |