No. | ビデオカード | 備考 |
---|---|---|
1 | Matrox Millennium | 初めてのビデオカード, 2D最強 |
2 | VooDoo1 PURE 3D(Canopus) | |
3 | RIVA 128 PWR128P(Canopus) | |
4 | VooDoo2 PURE3D II(Canopus) | |
5 | Matrox G400 | |
6 | ATI Rage 128 | 詳細不明 |
7 | GeForce 256 DDR ERAZOR X2(ELSA) | |
8 | VooDoo 5 5500 |
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
cp -r /Applications/Xcode_11.1_GM_Seed.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/13.* /Applications/Xcode_10.3.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/ |
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme", | |
"draw_white_space": "all", | |
"font_size": 18, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"theme": "Default.sublime-theme", |
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
{ | |
"title": "カスタム", | |
"rules": [ | |
{ | |
"description": "左option: 英数/右command: かな", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "left_option", |
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
extension String { | |
func isZIPCode() -> Bool { | |
do { | |
// let zipcodeRgx = "^\\d{7}$" | |
let zipcodeRgx = "^\\d{4}-\\d{3}$" | |
let regxp = try NSRegularExpression(pattern: zipcodeRgx, options: []) | |
let matches = regxp.matches(in: self, options:[], | |
range:NSMakeRange(0, (self as NSString).length)) | |
return (matches.count > 0) | |
} catch { |
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
import Foundation | |
struct Rational { | |
let numerator: Int | |
let denominator: Int | |
init(numerator: Int, denominator: Int) throws { | |
if denominator == 0 { | |
throw NSError(domain: "denominator must not be null", code: -1, userInfo: nil) | |
} |
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
// 既定の設定を上書きするには、このファイル内に設定を挿入します | |
{ | |
"editor.fontSize": 16, | |
"workbench.colorTheme": "Monokai", | |
"editor.renderWhitespace": "all" | |
} |
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
Swift : クラス継承とプロトコル拡張を比べてみる #yidev | |
http://www.slideshare.net/tomohirokumagai54/swift-yidev | |
Swift 2.0 で変わったところ「前編」 #cswift | |
http://www.slideshare.net/tomohirokumagai54/swift-20-cswift?related=1 | |
Swift 2.0 で変わったところ「後編」 #cswift | |
http://www.slideshare.net/tomohirokumagai54/swift-20-cswift-53225022?related=2 | |
Xcode 7 の新しいところ #cm_ios9 |
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
http://aesencryption.net | |
http://www.appcove.com/tool/aes |
NewerOlder