Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

Fine-Grained Password Policies

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

Enabling Multi Line Break in WordPress

WordPress에서 블로그에 글을 작성할때 제일 성가신 점이 태그를 자동으로 분석하여 필터링 하기 때문에 한번에 여러줄을 넘길 수가 없다는 점이다. 그래서 자료를 찾아보던 중 해결방법이 있어서 소개하고자 한다. 모든 문제의 원인은 WordPress에서 사용하는 비주얼 에디터인 “TinyMCE“라는 오픈소스Javascript HTML WISIWYG 에디터에서 발생하는…

Event Dialog Box를 만들어 보자

Event Dialog Box를 만들어 보자 종종 Application을 보다보면 1~2초 동안 잠깐 나와서 메시지를 보여주고 스스로 사라지는 윈도우를 볼 수 있을 것이다. AfxMessageBox 처럼 쉽게 만들고, 사용자가 delete 시키는 아무런 작업을 하지 않아도 스스로 사라지는 그런 편리한 이벤트 대화 상자를 만들어…

FireFox에서 꼭 써야 할 확장기능

위지아라는 사이트에 파이어폭스(FireFox)에서 유용한 확장기능들이 정리되어 있다. 정말 기능들이 다양하지만, 나 같은 경우에는 ‘Download StatusBar’, ‘Coral IE Tab’ 확장기능만 사용한다. ㅋㅋ 사이트에 방문해서 자기마음에 드는 확장기능을 적용해서 써보면 좋을 듯 하다.. ^^ 사이트 링크 :

Get information of your system, CPU-Z!

If you want to get information of your system, you can use CPU-Z software. If you run this software, you can get CPU, Mainboard, Memory, System information. CPU [list style=”check”] Name and number Core stepping and process Package Core voltage…

Get current language in device

[code lang=”java”] // 현재 설정된 언어의 코드를 리턴한다. (예, ko) Locale.getDefault().getDisplayLanguage(); // 현재 설정된 언어의 국가를 리턴한다. (예, KR) Locale.getDefault().getDisplayCountry(); // 현재 설정된 언어를 문자열로 반환한다. (예, ko_KR) Locale.getDefault().toString(); [/code]

Get App Installed Date on Android

API Level 9 이전 버전 [code lang=”java”] PackageManager pm = context.getPackageManager(); ApplicationInfo appInfo = pm.getApplicationInfo(“app.package.name”, 0); String appFile = appInfo.sourceDir; long installed = new File(appFile).lastModified(); [/code] API Level 9 이상 [code lang=”java”] long installed = context.getPackageManager().getPackageInfo(“package.name”, 0).firstInstallTime; [/code] Reference

GAC(Global Assembly Cache)에 대해 알아보자

1. GAC란? GAC(Glocal Assembly Cache)란 마이크로소프트사의 CLR(Common Language Runtime) 플랫폼에 도입된 .NET 어샘플리 캐시입니다. 즉, 특수하게 관리되는 중앙 저장소를 두는 접근방법을 통해서 예전에 발생했던 DLL 지옥과 같은 문제가 발생하는것을 피하기 위한 공유 라이브러리라고 생각하시면 됩니다. GAC에 존재하는 어셈블리들은 강력한 이름으로…

Full-Screen Application

Yesterday I posted a quick update to an article I wrote back in 2007 entitled How to make a full-screen Windows app using VB.NET. Aside from 1 or 2 people saying “Oh man why don’t you be a man and…

Freeware Icon Editor – aaICO

This is a Free Icon Editor that you will find very useful. This is a great free tool.  The editor supports multiple resolutions, importing, exporting, various effects and much more. Download : 

Free Magic Partition Manager Software – EASEUS Partition Master

하드디스크 파티션 관리 프로그램중에서 무료로 쓸만한 프로그램이 있어서 소개하고자 한다. EASEUS라는 회사의 Partition Master라는 프로그램인데, 사용법도 매우 간편하고 기능도 훌륭하다. 보통 파티션 관리 프로그램을 사용하려는 주 목적이 현재 쪼개져 있거나 분할되어 있는 파티션을 자료의 손실없이 합치거나 분할하기 위해서 사용하려는 것일…