- 無事購入できました:joy:
- 代理店価格(日本価格)より1~2万円ほど安く購入できる
- 初めて購入するときは結構沼るので注意が必要
- 必ず在庫通知がメールに届くようにする
- 万が一キャンセルされたときに、早く返金が欲しいなら
Paypal決済かつ銀行口座からの引き落としを使え
そんなところです
| <?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>IncompatiblePaths</key> | |
| <array> | |
| <dict> | |
| <key>Application Name</key> | |
| <string>Sxs Memory Card Driver</string> | |
| <key>Blurb</key> |
| #!/usr/bin/env node | |
| // Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/ | |
| // Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID | |
| // CONFIGURATION ####################################################################################################### | |
| const token = 'SLACK TOKEN'; | |
| // Legacy tokens are no more supported. | |
| // Please create an app or use an existing Slack App |
| cp -R /Applications/Xcode8.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.0\ \(14A345\) \ | |
| /Applications/Xcode7.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport |
| <?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>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>AutoJoin</key> | |
| <true/> | |
| <key>EncryptionType</key> |
| - (NSString *)text6Compatible | |
| { | |
| return self.text; | |
| } | |
| - (void)setText6Compatible:(NSString *)text6Compatible | |
| { | |
| self.text = text6Compatible; | |
| if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(7)) { |
| #!/bin/sh | |
| # | |
| # コマンドの実行が終わったらYOをするシェルスクリプト | |
| # | |
| # (1) APIユーザを作ってトークンを取得する | |
| # http://yoapi.justyo.co/ | |
| # | |
| # (2) APIユーザをフォローする | |
| # APIユーザと普通のユーザは別なので気をつけて | |
| # |
| # Since Contents/Resources/createinstallmedia command doesn't work, we need to manually create an disk image. | |
| # Mount InstallESD.dmg | |
| hdiutil mount /Applications/Install\ OS\ X\ 10.10\ Developer\ Preview.app/Contents/SharedSupport/InstallESD.dmg | |
| # Create a temporary writable BaseSystem image. | |
| hdiutil convert /Volumes/OS\ X\ Install\ ESD/BaseSystem.dmg -format UDRW -o rw.dmg | |
| # Get required sectors for packages. | |
| # You'll get these numbers. |
| ./configure \ | |
| --host="arm-apple-darwin" \ | |
| --enable-static \ | |
| --disable-shared \ | |
| --disable-dependency-tracking \ | |
| CC=`xcrun -f --sdk iphoneos clang` \ | |
| CXX=`xcrun -f --sdk iphoneos clang++` \ | |
| AR=`xcrun -f --sdk iphoneos ar` \ | |
| RANLIB=`xcrun -f --sdk iphoneos ranlib` \ | |
| NM=`xcrun -f --sdk iphoneos nm` \ |
| - (void)displayContentController:(UIViewController *)content | |
| { | |
| // 自身のビューコントローラ階層に追加 | |
| // 自動的に子ViewControllerの`willMoveToParentViewController:`メソッドが呼ばれる | |
| [self addChildViewController:content]; | |
| // 子ViewControllerの`view`を自身の`view`階層に追加 | |
| [self.view addSubview:content.view]; | |
| // 子ViewControllerに追加が終わったことを通知する |