gitの運用フロー検討のメモ書き

・branchの削除

・コミットコメントの規則

・画像ファイルをドラッグアンドドロップでの格納の禁止

・自分のアカウントに対してリポジトリの作成の禁止

Windowsでの改行コードの扱いについて

   参考:

気をつけて!Git for Windowsにおける改行コード - Qiita

・マージコミットのルール

    squashがあること

 

Markdown 使えそうなプラグイン

Prettier

 

Text Tables

 参考:

「Visual Studio Code」で“Markdown”テーブルを扱う際は必携「Text Tables」【レビュー】 - 窓の杜

Draw.io Integration

参考:

VScodeの拡張機能「Draw.io Integration」で背景色を白色に変更する方法

 

Markdown PDF

Excel to Markdown table

 

参考:

VisualStudioCodeでMarkdownを書く際に入れておきたい便利な拡張機能5選 - Qiita

 

 

.net Excel関連

.netでexcelを使用する場合のまとめ

 

Excelファイルを C#VB.NET で読み込む "正しい" 方法

https://qiita.com/midori44/items/acab9106e6dad9653e73

 

オープンソースライブラリである「NPOI」を利用する方法
https://www.fenet.jp/dotnet/column/language/415/

 

Open XML SDK
https://www.atmarkit.co.jp/ait/articles/1810/17/news022.html
microsoft純正 xlsx形式以降じゃないと使えない。

 

ClosedXML
https://www.atmarkit.co.jp/ait/articles/1810/24/news016.html

 

旧来のやりかた
https://www.atmarkit.co.jp/ait/articles/0803/06/news147.html

Apple Mach-O Linker (Id) Error

 

iOS 5の顔検出機能とカメラを使ったiPhoneアプリを作る

 IOS5の顔検出機能とカメラを使ったiPhoneアプリを作る

http://www.atmarkit.co.jp/fsmart/articles/ios_sensor03/01.html

上記を参考に作成したところ、ビルド時にエラー発生。

Apple Mach-O Linker (Id) Error

f:id:kk-1984:20130206225017p:plain

「CIDetector」のフレームワーク

「CIImage」を入れてなかったLink Binary With Librariesに追加したら、

ビルドが通った。

 

参考

http://d.hatena.ne.jp/tanaponchikidun/20120618/1339979392

 

Terminating app due to uncaught exception

最近、iOS開発を初めた。

良く出会うエラーが以下。

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<ViewController 0x748e150> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key ×××.'

 

前のコネクションが残っていたのが原因だった。

storyboardのReferencing Outletsの

不要なコネクションを消せば、うまく実行できた。

 

参考:http://blog.daisukeyamashita.com/post/956.html