본문 바로가기

반응형

창고/Backup_2013_0121

(226)
Unity3D 개발 팁 1. unity3d 중요 클래스 다이어그램 http://www.teotigraphix.com/taxonomy/term/28 2. unity3d game 프로그래밍에서 중요한 10가지 http://abitgames.com/2011/blog/10-things-to-know-programming-unity3d-games/
Unity3D 스크립트 오버뷰 출처: http://allosha.tistory.com/ 원출처 : 유니티 포럼
mysql 6.0.11-alpha 윈도우 환경에서 root 패스워드를 잊어버렸을때 >> 환경 OS : WIndows XP sp3 Mysql : mysql-noinstall-6.0.11-alpha-win32 *. root 암호를 잃어버렸을때 1. 서비스 되고 있는 mysql 을 다운 ( 제어판 > 관리도구 > 서비스 ) 2. {mysql홈}\bin\mysqld.exe --skil-grant 실행 ( 버젼마다 데몬프로그램 이름이 바뀌는듯, mysql-nt.exe 인경우도 있음 ) 3. {mysql홈}\bin\mysql 접속 4. 다음 쿼리실행 ( root 패스워드 초기화 ) use mysql; update user set password=password('변경된암호') where user='root'; flush privileges; 5. mysql 서비스 재실행 후 root 로 접속하여..
Q7 /* Main */ using System; using System.Collections.Generic; using System.Text; using System.Collections; using Utils; namespace EulerProject { class Program { static void question() { /* 10001 st 소인수 찾기 */ int cnt = 0; double index = 1; while (cnt < 10001 ) { index += 1; double pn = Utils.Math.getPrimeFactors(index); if (pn == 1 || pn == index) cnt++; } Console.WriteLine("{0} primeNumber is {1}",..
치트프로그램 샘플 http://damiproductions.darkbb.com/t337-cmaking-a-game-trainer (국진 제보 ) http://www.ownedcore.com/forums/general/programming/142992-tutorial-memory-editing-c.html 둘다 ProcessMemoryReaderLib 를 이용하여 메모리 접근, 그리고 읽기와 수정 방법에 대해서 나옴 기본닷넷 클래스인 process 도 이용하고=ㅅ= 두번째 링크에 가면 데모 프로그램이 나옴 윈도우 기본게임인 지뢰찾기의 메모리를 읽어 폭탄위치를 읽어냄 프리셀이랑 다른것도 있네 -ㅅ-
웹어플리케이션 배포방법 http://ecogeo.tistory.com/89 왜 war 라는 패키지 방식을 나두고, 다 풀어해쳐서 배포하는 것일까? war 파일은 과연 표준인것인가? 에 대한 해답글-_-;; 즉, 1. war:war ( 1파일 배포, 결국 was 에 의해서 압축해제됨 )2. war:exploded ( war 를 압축해제한 상태로 배포 )3. war:in-place ( 배포파일 및 소스파일 까지 포함 )셋다 배포방법중에 하나인거임..우리 회사는 3번 방식배포중~ 배포후 운영서버에서 재컴파일=ㅅ=
localstorage 이용 방법 function save(item) { var playlistArray = getStoreArray("playlist"); playlistArray.push(item); // localhost storage 저장 localStorage.setItem("playlist", JSON.stringify(playlistArray)); } function loadPlaylist() { var playListArray = getSaveSongs(); var ul = document.getElementById("playlist"); if( playListArray != null ) { for(var i=0;i
input text 박스에 글씨 남기기 html5 부터는 간단히 태그로 사용가능 placeholder 이용!!

반응형