Kim
예언자
책을 읽고 예쁜말들을 여기에 적는다. 결혼에 대하여 바다가 그대들 영혼의 해안 사이에서 물결치게 하십시오. 서로의 잔을 채우되 한 잔으로 같이 마시지는 마십시오. 서로에게 자신의 빵을...

VSCode C# Locale in IntelliSense and debugger
문제 C# Intellisense 언어가 안바뀐다. Display Languange Mode를 영어로 바꿨는데도, c# Error가 한글로 나옴 해결책 Omnisharp의 언어가 안바뀌는 문제여서 찾아봄 https://github.com/OmniSharp/omnisharp-vscode/issues/2513 Navigate to the directory...

Elasticsearch index mapping
index mapping index mapping이란 data의 type정의라고 보면된다. (db에서 스키마 정의) { "mapping": { "properties": { "@message": { "type": "text", "fields": { "keyword": { "type": "keyword",...

C# Html To Jira Description
목적 Html Tag가 있는 text를 Description에 넣을때 Html tag를 text, img, table에 맞게 별도 파싱 해야되서 공수가 크다. 이렇게 안하고 자동으로 html -> wiki 변경할...

C# Pattern Matching
The is type pattern expression Before C# 7.0 public static double ComputeArea(object shape) { if (shape is Square) { var s = (Square)shape; return s.Side...