Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

Delete blocked file, LockHunter!

LockHunter is a free tool to delete files blocked by something you do knot know. LockHunter is useful for fighting against malware, and other programs that are blocking files without a reason. Unlike other similar tools it deletes file into…

Fine-Grained Password Policies

기존의 ActiveDirectory DomainService에서는 하나의 도메인에는 오직 하나의 password policy와 account lockout policy를 적용할 수 있었으나, 윈도우 서버 2008에서부터는 Fine-Grained Password Policies를 통해 같은 도메인에서 여러 password policy를 설정할 수 있다. 기존에는 도메인으로만 적용되었기 때문에 자식도메인을 만들어서 각각 구성하였었다. 예) 관리자는…

How to solve SSL error of RubyGems

When you exeucte gem command, you may see SSL error like bellow. SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed This error is produced because of changes in rubygems.org infrastructure. How to solve it? 1. Downlaod update…

Neil Pasricha: The 3 A’s of awesome

Neil Pasricha’s blog 1000 Awesome Things savors life’s simple pleasures, from free refills to clean sheets. In this heartfelt talk from TEDxToronto, he reveals the 3 secrets (all starting with A) to leading a life that’s truly awesome. 동영상을 플레이하면…

Passing Property values by reference

Passing Property values by reference I was wondering how well properties were integrated into C#.  For example, C# lets you use += with the properties.   It’s easy enough to convert: MyProperty += 4 to MyProperty = MyProperty + 4 However,…

SerialPort 클래스 사용법

마이크로소프트는 .Net Framework 2.0 이후부터 Serial Communication 을 위하여 SerialPort 라는 클래스를 제공하고 있습니다. 마이크로소프트 MDSN Link : System.IO.Ports 네임스페이스에 존재하는 이 SerialPort 클래스를 이용하면 별다른 어려움없이 시리얼통신 기능을 구현 할 수 있습니다. 상세한 사용방법은 MSDN을 통해서 익히도록 하고,…