Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
기존의 ActiveDirectory DomainService에서는 하나의 도메인에는 오직 하나의 password policy와 account lockout policy를 적용할 수 있었으나, 윈도우 서버 2008에서부터는 Fine-Grained Password Policies를 통해 같은 도메인에서 여러 password policy를 설정할 수 있다. 기존에는 도메인으로만 적용되었기 때문에 자식도메인을 만들어서 각각 구성하였었다. 예) 관리자는…
C# 3.0 에서부터 새로 제공되는 기능으로 Extensions 라는 것이 있다. 이 것은 기존에 정의되어 있는 클래스를 확장할 수 있도록 해주는 방법이라고 할 수 있다. 백문이 불여일견이니 어떻게 하는지 한번 살펴보도록 하겠다. 일단 먼저 기본으로 제공되는 String에 현재의 문자열의 길이를 리턴해주는…
WordPress의 Mystique 테마의 상단 메뉴에 출력되는 아이콘을 추가하는 방법이 기술되어 있는 페이지다. 링크
DX플밍.zip
데이터 멤버 대신에 항상 프로퍼티를 사용하라 const 보다는 readonly가 좋다 cast 보다는 is나 as가 좋다 #if 대신 Conditional Attribute를 사용하라 항상 ToString()을 작성하라 value 타입과 reference 타입을 구분하라 immutable atomic value 타입이 더 좋다 value 타입을 사용할 때 0이라는 값이…
Clone laravel source to server $ git clone Install necessary modules $ npm install$ composer install –no-dev -o –prefer-dist$ bower install Make .env $ cp .env.example .env Generate key to .env $ php artisan key:generate Execute gulp if necessary…
DateTime 변수는 null로 설정될 수 없고 무조건 값을 가져야 한다. 대부분의 사람들은 null을 DateTime 변수에 설정하기 위해 DateTime.MinValue 를 이용한다. DateTime dt = DateTime.MinValue;
Laravel provides unique validation rule for check unique value on a given database table. Ref : Syntax unique:table,column,except,idColumn,whereColumn1,whereValue1,whereColumn2,whereValue2,… Ex1. Validate unique value in given database table ‘username’ => ‘unique:users,username’ Ex2. Validate unique value except given ID In mostly used…
DC 핸들로 CDC 객체를 만들려면 CDC의 멤버 함수중 FormHandle()이라는 멤버 함수가 있습니다. 핸들을 가지고 객체를 생성할 수 있게 하는 함수로 핸들만 알고 있으면 객체를 생성할 수 있습니다. FromHandle()은 CDC 뿐만 아니라 핸들을 갖고 있는 윈도우 오브젝트에 모두 사용할 수 있습니다.…
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…
1. Check what kind of file is infected by malware 2. Use find method to search that file above find -name ‘filename’ 3. Open infected file using editor 4. Delete code 5. Restart Server
상단 광고 삽입을 위해 여백 줄이기 [css].top { margin: 15px 0px 10px 0px; float:left; width: 970px; border-bottom:1px solid #EEEEEE; border-top:1px solid #EEEEEE;}[/css]
– Distributed File System의 약자이다. – DFS Namespace 서비스와 DFS Replication 서비스가 있다. – 사용자가 DFS에서 제공하는 파일서비스 주소로 접근하여 데이터를 자신이 위치한 서버에서 가져올 수 있다. – Ex) Contoso.comMarketing – 도메인 베이스와 스탠드얼론 베이스 타입이 있다 – 사용자는 루트 네임스페이스만 알고…
Part1 – System Analysis & Database Design Part2 – Internal User Management Part3 – Integrate With Social Login Part1 – System Analysis & Database Design 1. System Analysis 1.1. REQUIREMENTS User can register using signup feature. User can login using…
1. 드래그 해서 전달하려고 하는 클래스 선언 [code lang=”csharp”] namespace DragTest { public class Class1 { public int a = 0; } } [/code] 2. 드래그(Drag) 하려고 하는 항목에 _MouseDown 이벤트_를 생성하고 이벤트 내부에 드래그 시작을 알리는 함수 구현 [code…