Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

Extension 클래스를 통해 기존 클래스를 확장하기

C# 3.0 에서부터 새로 제공되는 기능으로 Extensions 라는 것이 있다. 이 것은 기존에 정의되어 있는 클래스를 확장할 수 있도록 해주는 방법이라고 할 수 있다. 백문이 불여일견이니 어떻게 하는지 한번 살펴보도록 하겠다. 일단 먼저 기본으로 제공되는 String에 현재의 문자열의 길이를 리턴해주는…

Fine-Grained Password Policies

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

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 : 

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…

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

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

GP(Group Policy) 설정

– GP가 계층적으로 링크되어 있을때, 충돌나는 GP는 하위의 GP가 적용된다. – Software Installation Display the Deploy Software dialog box : 소프트웨어 설치화면 띄움 Publish : 사용자에게 설치 할지 말지 물어봄 Assign : 강제적으로 소프트웨어 설치 Advanced : 고급설정

Google App Engine for Java

IBM developer Networks 자료 Google App Engine for Java: Part 1: 새로운 시작 Google App Engine for Java: Part 2: 킬러 애플리케이션 작성하기 Google App Engine for Java: Part 3: 영속성과 관계

Google Docs에서 블로그에 글 포스팅하기

Google사의 온라인 문서편집 서비스인 Google Docs에서 워드프레스나, 텍스트큐브와 같은 블로그로 글을 포스팅하는 기능이 존재한다. 일단 블로그에 포스팅할 문서를 작성하고 저장한다. 그리고 저장버튼 오른쪽에 보면 ‘Share’ 버튼이 있다. 버튼을 눌러보자 위 화면과 같은 메뉴가 출력된다. ‘Publish as web page…‘ 메뉴를 클릭한다.…

Generic List 복제하는 방법

클래스에서 Copy() 나 Clone() 함수를 제공하지 않아 For 문을 이용해서 대입해야 하는 줄 알았다… 😥 [code lang=”csharp”] // Generic List 생성 List a = new List(); // 값 추가하기 a.Add(1); a.Add(2); a.Add(3); // List 복제하기 List b = new List(a);…

Getting List of Installed Applications in Android

출처 : 방법1. PackageManager.queryIntentActivities() 함수 이용 [code language=”java”] public class AppList extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); PackageManager pm = this.getPackageManager(); Intent intent = new Intent(Intent.ACTION_MAIN, null); intent.addCategory(Intent.CATEGORY_LAUNCHER); List list = pm.queryIntentActivities(intent, PackageManager.PERMISSION_GRANTED); for (ResolveInfo rInfo…

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