author thinca date 2012/05/27 place yokohama.vim #3 font VL ゴシック 26 font Migu_2M:h38:cSHIFTJIS
2012/05/27 yokohama.vim #3 thinca
| Patch: expand-input-maxlen.patch | |
| Probrem: More than 100 characters cannot be set to the caption | |
| Solution: expands the text buffer size to 255. | |
| Author: Kazuhiro Yoshikawa <yoshikaw@gmail.com> | |
| Files: src/input.c | |
| src/process.c | |
| --- a/src/input.c 2010-02-27 02:30:55.000000000 +0900 | |
| +++ b/src/input.c 2010-06-21 00:19:43.000000000 +0900 | |
| @@ -43,7 +43,7 @@ |
| sudo mkdir /Developer | |
| cd /Developer | |
| sudo chown `id -u` . | |
| ln -s /Applications/Xcode.app/Contents/Developer/* . | |
| ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs . |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Lars H. Nielsen (translated by Tony Kemp)</string> | |
| <key>name</key> | |
| <string>Wombat</string> | |
| <key>settings</key> | |
| <array> |
31 Aug 2011
私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップでgit-flowについてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。
| #!/bin/sh | |
| DIR=/Users/sbrown/backups | |
| FILE=`date +"%Y%m%d"`-pinboard-backup.json | |
| URL=https://USERNAME:PASSWORD@api.pinboard.in/v1/posts/all?format=json | |
| cd $DIR | |
| wget $URL -O $FILE |
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
| <script> | |
| $(function() { | |
| var changeMaskPasswd = function() { | |
| $('.passwd')[0].type = |
| <?php | |
| require_once 'PHPUnit/Framework/TestCase.php'; | |
| require_once 'vfsStream/vfsStream.php'; | |
| // require_once 'hoge.php'; | |
| /** | |
| * ファイルシステムのテストに関してはURL参照 | |
| * とりあえずざっくり使う方法メモ | |
| * @see http://www.phpunit.de/manual/3.6/ja/test-doubles.html#test-doubles.mocking-the-filesystem.examples.ExampleTest.php |