허당 레몬도리
article thumbnail
필립스 4350UC UHD HDMI 2.0 ZBD 개봉기 & 짧은 사용기
다. 레몬도리 이야기 2016. 12. 30. 17:33

1. 박스 2. 개봉구성품케이블전원케이블HDMI X 2DP-Mini to DPUsb 3.0(후면 허브)오디오 케이블D-SUB부속품받침대(좌,우)나사 X 4설명서 조립 친절하게 L, R 써 있고 좌, 우 모니터에 맞는 모양이 다릅니다. 확인하세요. ※ 전동 드라이버 쓰시는 분들 조심하세요 나사가 약해서 헛돌면 저렇게 마모되어 버립니다. 3. 후기 다행히 불량화소가 한개도 없네요몇 개의 다른 분들 후기를 보고 산 것인데 다른 분들도 불량화소 이야기는 없었습니다. 마침 영화 "침묵의 목격자"가 나와서 켜놓고 사진 찍었습니다. 연결은 U+ TV이고 UHD TV입니다. HDMI로 연결해서 보고 있습니다. 참고로, 모니터 기본 설정은 HDMI 1.4로 되어있습니다. 혹시 글씨가 확대되면 깨지나 싶어서 근접해서 찍었..

JSON serializers benchmarks updated
가. 언어유형 2016. 11. 21. 15:36

출처 : http://theburningmonk.com/2014/08/json-serializers-benchmarks-updated-2/DISCLAIMER : as always, you should bench­mark against your pay­load and use case, the bench­mark num­bers I have pro­duced here is unlikely to be rep­re­sen­ta­tive of your use cases and nei­ther is any­body else’s bench­mark numbers.You can use the sim­ple test har­ness I cre­ated and see these exam­ple code to bench­m..

[C#] 변수명 가져오기
가. 언어유형/C# 2016. 7. 29. 12:39

변수명 찾기 http://stackoverflow.com/questions/9801624/get-name-of-a-variable-or-parameter변수명 찾기, 변수 값 가져오기https://blogs.msdn.microsoft.com/csharpfaq/2010/03/11/how-can-i-get-objects-and-property-values-from-expression-trees/

article thumbnail
Bluestack 이용하여 apk Log 보기
나. 설치 및 설정/Other 2016. 7. 22. 18:20

블루스택을 이용해서 로그를 볼 수 있네요 방법은 블루스택에 apk를 설치하시고(당연 빌드에 로그를 남기게 해야겠죠?) 설치가 되면 CMD(명령프롬프트를 띄웁니다.)android-sdk가 설치된 경로를 찾습니다. 전 C:\Program Files (x86)\Android\android-sdk\platform-tools 여기에 설치 되었네요그리고 명령어를 입력합니다. adb logcat 이제 준비는 끝났습니다.블루스택에서 기능을 테스트하면 로그가 주~욱 올라올겁니다. 주의) 프롬프트를 선택하면 로그가 안 올라 옵니다.갑자기 로그가 안 올라온다 느끼면 프롬프트 창에서 ESC키를 한번 눌러주세요

mongodb Index 정보 보기

var collectionNames = db.getCollectionNames(); for(var i = 0, len = collectionNames.length; i

Mongodb 쉘 스크립트 사용

What you want is: mongo sm-repository2.db.qa.test.com:27017/testdb --eval "db.stats()"Or for longer scripts: mongo sm-repository2.db.qa.test.com:27017/testdb script.js 출처 : http://stackoverflow.com/questions/4837673/how-to-execute-mongo-commands-through-shell-scripts

article thumbnail
뜻밖에 문자(이태릭체? 간격체?)

뜻 밖에 비주얼스튜디오에서 입력되는 문자를 보게되었다.무슨 키를 눌렀는지 갑자기 글씨체가 바뀌어서 당황했다.아래와 같은 이상한 공백으로 영문이 입력되어서 당황하다가 뭘 눌렀나 생각해보다가 Alt와 =를 같이 눌러보니 다시 원상태로 돌아왔다. 단축키가 있었던 모양이다. 써보지 못한 단축키라 당황했다. 나만 그런건가? ㅎㅎㅎ 같은 거 보신 분은 Alt + = 조합으로 탈출하시길~

MVC5 POST Json Call Sample(Json 데이터타입 호출 샘플)
카테고리 없음 2016. 6. 2. 12:08

출처 : http://stackoverflow.com/questions/21578814/how-to-receive-json-in-a-mvc-5-action-method-as-a-paramterUnfortunately Dictionary got always problem with Model Binding in MVC. Read the full story here. So we have to create our own custom model binder to get the Dictionary as a parameter to our controller action.To solve your requirement, here is the working solution -First create your ViewMode..