IT業界のすみっこ暮らし

ふと気がついたときの記録



2017-08-01から1日間の記事一覧

Google Authenticatorのニ段階認証関連メモ

tech.sanwasystem.com www.jerriepelser.com stackoverflow.com QRコード生成 on-ze.com $('#qrcode').qrcode({width: 64, height: 64, text: 'otpauth://totp/System%3aaccount?secret=MXHAXGZ63RCPPGSWV2CTJRU6&issuer=System'}}); ※例:qrcodeUrlは「otpa…

C# 自動プロパティ

stackoverflow.com ufcpp.net 自動プロパティ(get/set の中身の省略) public string FirstName { get; set; } プロパティ private string firstName; public string FirstName { get { return this.firstName; } set { this.firstName = value; } } 最近省略…





プライバシーポリシー