##古いソフトの対応
- VMware Fusion 6.0.5 問題なさげ
- iStat Menus 3.2.7 温度センサー関連をインストールしなければ問題なさげ
- LaunchBar 5.6 問題なさげ
- かわせみ 1.1.5 問題なさげ
- Audio Hijack Pro 2.11 問題なさげ
##リンク
##古いソフトの対応
##リンク
| #define KZRMETHOD_SWIZZLING_WITHBLOCK(className, selectorName, isClassMethod, originalIMP, originalSelector, block) {\ | |
| BOOL _val_isClassMethod=isClassMethod; \ | |
| const char* _val_selName=selectorName; \ | |
| if(*_val_selName=='+'){_val_isClassMethod=YES; _val_selName++;} \ | |
| Class _val_cls=objc_getClass(className); \ | |
| SEL originalSelector=sel_registerName(_val_selName); \ | |
| Method _val_originalMethod; \ | |
| if (_val_isClassMethod)_val_originalMethod = class_getClassMethod(_val_cls, originalSelector); \ | |
| else _val_originalMethod = class_getInstanceMethod(_val_cls, originalSelector); \ | |
| KZRIMPUnion originalIMP = (KZRIMPUnion)(IMP)method_getImplementation(_val_originalMethod); \ |
| tell application "Reminders" | |
| set reminderTitle to "Shimekiri" | |
| set listTitle to "work" | |
| set workerList to list listTitle | |
| -- remove old reminder | |
| set ids to {} | |
| repeat with r in reminder of workerList | |
| if name of r is reminderTitle then |
#DVTPlugInCompatibilityUUID
37B30044-3B14-46BA-ABAA-F01000C27B63A2E4D43F-41F4-4FB9-BB94-7177011C9AEDAD68E85B-441B-4301-B564-A45E4919A6ADC4A681B0-4A26-480E-93EC-1218098B9AA0A16FF353-8441-459E-A50C-B071F53F51B79F75337B-21B4-4ADC-B558-F9CADF7073A7E969541F-E6F9-4D25-8158-72DC3545A6C67FDF5C7A-131F-4ABB-9EDC-8C5F8F0B8A90| NS_INLINE CGFloat NSWidth(NSRect aRect) { | |
| return (aRect.size.width); | |
| } | |
| #define NSWidth(aRect) ({aRect.size.width;}) |
| NSImage* lightImage; | |
| { | |
| lightImage=[[NSImage alloc]initWithSize:[image size]]; | |
| [lightImage lockFocus]; | |
| NSRect rect=NSZeroRect; | |
| rect.size=[image size]; | |
| [image drawAtPoint:NSZeroPoint fromRect:rect operation:NSCompositeCopy fraction:0.4]; | |
| [lightImage unlockFocus]; | |
| } |
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>FKEY to Shift_L</name> | |
| <appendix>(+ When you type FKEY only, send FKEY)</appendix> | |
| <identifier>private.fkey2shiftL_fkey</identifier> | |
| <autogen>__KeyOverlaidModifier__ KeyCode::F1, KeyCode::SHIFT_L, KeyCode::F1</autogen> | |
| <autogen>__KeyOverlaidModifier__ KeyCode::F2, KeyCode::SHIFT_L, KeyCode::F2</autogen> | |
| <autogen>__KeyOverlaidModifier__ KeyCode::F3, KeyCode::SHIFT_L, KeyCode::F3</autogen> | |
| <autogen>__KeyOverlaidModifier__ KeyCode::F4, KeyCode::SHIFT_L, KeyCode::F4</autogen> |
| @interface SSRefrectingScrollView : NSScrollView | |
| @property BOOL inRefrecting; | |
| @property (assign)IBOutlet SSRefrectingScrollView* counterPartView; | |
| @end | |
| @implementation SSRefrectingScrollView |
| #!/usr/bin/php | |
| <?php | |
| /* | |
| Sequel Pro のプラグイン(bundles)サンプル | |
| needs PHP 5.3 or later because of str_getcsv() | |
| copy field names to clipboard | |
| */ | |
| $table = $_ENV['SP_SELECTED_TABLE']; |