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
| /** | |
| * Foo.h | |
| */ | |
| @interface Foo | |
| // プロパティを使うのでインスタンス変数は省略する | |
| // ここでは外部から触られても書き込みできないようにreadonlyにする | |
| @property (readonly, retain) NSString *str; | |
| @end |
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
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use LWP::UserAgent; | |
| use Socket; | |
| use Data::Dumper; | |
| BEGIN { | |
| *inet_aton = \&Socket::inet_aton; |
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
| // ==UserScript== | |
| // @name showYouTubeInGoogleSearch | |
| // @namespace http://github.com/monmon | |
| // @description Show YouTube Flash in Google search result | |
| // @include http://www.google.co.jp/search* | |
| // ==/UserScript== | |
| (function() { | |
| var length = 0; | |
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
| // ==UserScript== | |
| // @name nifty_cilp_rss_search | |
| // @namespace http://github.com/monmon | |
| // @description googleの検索結果に自分のクリップを入れる | |
| // @include http://www.google.co.jp/* | |
| // ==/UserScript== | |
| (function(){ | |
| var user = 'monmon'; // 自分のユーザ名 | |
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
| // ==UserScript== | |
| // @name hatena_bookmark_cmptag | |
| // @namespace http://github.com/monmon | |
| // @description 「おすすめタグ」と「キーワード」に自分のタグがあれば目立たせる | |
| // @include http://b.hatena.ne.jp/add* | |
| // @include http://b.hatena.ne.jp/*/edit* | |
| // ==/UserScript== | |
| (function(){ |
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
| // ==UserScript== | |
| // @name LDR_hide_mark_read | |
| // @namespace http://github.com/monmon | |
| // @description hide mark read. | |
| // @include http://reader.livedoor.com/reader/ | |
| // ==/UserScript== | |
| (function () { | |
| var count = 0; |
NewerOlder