Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
1. 드래그 해서 전달하려고 하는 클래스 선언 [code lang=”csharp”] namespace DragTest { public class Class1 { public int a = 0; } } [/code] 2. 드래그(Drag) 하려고 하는 항목에 _MouseDown 이벤트_를 생성하고 이벤트 내부에 드래그 시작을 알리는 함수 구현 [code…
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…
데이터 멤버 대신에 항상 프로퍼티를 사용하라 const 보다는 readonly가 좋다 cast 보다는 is나 as가 좋다 #if 대신 Conditional Attribute를 사용하라 항상 ToString()을 작성하라 value 타입과 reference 타입을 구분하라 immutable atomic value 타입이 더 좋다 value 타입을 사용할 때 0이라는 값이…
DX플밍.zip
하나의 계정이 여러개의 그룹에 포함되어 있을때, 그 계정의 최종적인 권한이 어떻게 되는지 확인할 때 Effective Permissions 탭에서 확인할 계정을 입력해 보면 그 계정의 최종적인 권한을 확인 할 수 있다.
각 위치에 방어탑을 구축해서 벌레들이 최대한 돌아 지나가도록 만들면서 방어탑을 이용해서 다 때려잡는 게임 정말 잘 만든 플래시 게임으로 하다보면 시간가는 줄 모름. ㅋㅋㅋ 게임하러 가기 :
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
현재 안드로이드 폰에서 와이파이가 연결가능한지, 3G가 연결가능한지 확인하는데 사용 가능한 유틸 클래스 사용하는 방법 와이파이 상태 확인 : ZemnaNetworkInfo.IsWifiAvailable(현재 컨텍스트) 3G 상태 확인 : ZemnaNetworkInfo.Is3GAvailable(현재 컨텍스트) 둘중에 아무거나 연결 가능한지 확인 : ZemnaNetworkInfo.IsAnyAvailable(현재 컨텍스트) Source [code language=”java”] import android.content.Context; import…
Class Wizard의 중요한 Tip (
The rules below are not guidelines or recommendations, but strict rules. Contributions to Android generally will not be accepted if they do not adhere to these rules. Not all existing code follows these rules, but all new code is expected to.…
CodingStyle.pdf
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…