Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
INFO: Why Singletons are destroyed after five minutes 2002 Ingo Rammer Question I have a C# class that is being exposed via remoting as a Singleton Server Activated Object. However, sometimes this object just disappears and a new one is…
안드로이드 스마트폰을 사용하는 지인들에게 편하게 어플을 추천할 수 있는 Zemna App Adviser[Zemna 어플 추천] 어플의 2.0 버전이 안드로이드 마켓에 릴리즈 되었습니다. v2.0 수정사항 어플 검색기능 추가 어플 정렬기능 추가 어플 실행기능 추가 어플 삭제기능 추가 어플 리스트 로딩속도 향상 [button…
공유권한은 네트워크 접근시 사용되는 권한 보안권한은 로컬접근시와 네트워크 접근시 사용되는 권한 1. 공유, 보안내에서 권한이 중복되어 적용되어 있을 경우에는 – 더 많은 권한이 적용된다. – 권한에 거부가 설정되어 있으면 거부가 우선 적용된다. 2. 네트워킹에서 공유권한과 보안권한 – 더 적은 권한이 적용된다.…
만화가있는Algorithm.zip
터미널에서 “sudo nano /etc/X11/xorg.conf” 실행 Section “ServerLayout” Identifier “Default Layout” Screen 0 “Screen0” 0 0 InputDevice “Keyboard0” “CoreKeyboard” EndSection Section “InputDevice” Identifier “Keyboard0” Driver “kbd” Option “XkbModel” “pc105” Option “XkbLayout” “us” EndSection Section “Monitor” Identifier “Monitor0” ModelName “LCD Panel 1280×800”…
현재 제로보드 XE에 적용되어 있는 이슈트래커는 리눅스 기반에 설치되어야만 정상적으로 동작이 가능하다. 왜 윈도우나 맥에서는 동작되지 않는지 분석해 본 결과 각 운영체제별로 줄바꿈 문자에 대한 처리가 틀려 나타난 현상이였다. 각 운영체제별 줄바꿈 문자는 아래와 같은 구성으로 이루어져 있다. 윈도우 :…
1
WINAPI 변수 선언 public const int WM_NCLBUTTONDOWN = 0xA1; public const int HT_CAPTION = 0x2; Form의 MoveDown 이벤트 핸들러 작성 private void frmController_MouseDown(object sender, MouseEventArgs e) { // 왼쪽버튼이 눌렸는지 확인 if (e.Button == MouseButtons.Left) { …
프로그램에서 어플리케이션 설정(app.config) 파일에 등록되어 있는 서비스만 시작시키고 싶다면 간단히 ServiceHost.BaseAddresses 컬렉션만 체크하면 된다. 만일, app.config 파일에 서비스가 구성되어 있지 않다면 빈 컬렉션이 리턴된다. [code lang=”csharp”] ServiceHost host = new ServiceHost(typeof(MyService)); if (host.BaseAddresses.Count > 1) return; host.Open(); [/code] 출처 :…