E D R , A S I H C RSS

Full text search for "exe"

exe


Search BackLinks only
Display context of search results
Case-sensitive searching
  • NSIS/예제2 . . . . 33 matches
         OutFile "example2.exe"
          File "C:\winnt\notepad.exe"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          WriteUninstaller "uninstall.exe"
          CreateShortCut "$SMPROGRAMS\Example2\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
          CreateShortCut "$SMPROGRAMS\Example2\Example2 (notepad).lnk" "$INSTDIR\notepad.exe" "" "$INSTDIR\notepad.exe" 0
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          WriteUninstaller "uninstall.exe"
          Delete $INSTDIR\notepad.exe
          Delete $INSTDIR\uninstall.exe
         ; It will install notepad.exe into a directory that the user selects,
         OutFile "example2.exe"
          File "C:\winnt\notepad.exe"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          WriteUninstaller "uninstall.exe"
          CreateShortCut "$SMPROGRAMS\Example2\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
          CreateShortCut "$SMPROGRAMS\Example2\Example2 (notepad).lnk" "$INSTDIR\notepad.exe" "" "$INSTDIR\notepad.exe" 0
          Delete $INSTDIR\notepad.exe
          Delete $INSTDIR\uninstall.exe
         OutFile: "example2.exe"
  • Java/ModeSelectionPerformanceTest . . . . 28 matches
          public void printPerformance(String[] modeExecute) {
          executeIfElse(modeExecute);
          private void executeIfElse(String[] modeExecute) {
          for (int i = 0; i < modeExecute.length; i++) {
          executeWithIfElse(modeExecute[i]);
          public void executeWithIfElse(String mode) {
          public void printPerformance(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          executeReflection(modeExecute);
          private void executeReflection(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          for (int i = 0; i < modeExecute.length; i++) {
          method = this.getClass().getMethod("do" + modeExecute[i], new Class[]{int.class});
          public void printPerformance(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          initReflectionMap(modeExecute);
          executeReflectionWithMapping(modeExecute);
          private void executeReflectionWithMapping(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          for (int i = 0; i < modeExecute.length; i++) {
          Method method = (Method) methodMap.get(modeExecute[i]);
          public void printPerformance(String[] modeExecute) {
          executeInnerclassMapping(modeExecute);
          private void executeInnerclassMapping(String[] modeExecute) {
  • 이영호/nProtect Reverse Engineering . . . . 24 matches
         => guardcat.exe -> gc_proch.dll
         => gcupdater -> guardcat.exe -> gc_proch.dll
         몇몇개의 함수만을 수정하고 guardcat.exe만 실행하였으나 gc_proch.dll의 hooking 루틴때문에 막혀버렸다.
         gc_proch.dll 파일을 제거후 실행하였더니 gaurdcat.exe가 실행되고 debugger도 제대로 동작 하는 것을 알았다.
         중요한것은 update를 어떻게 막느냐이다. 아마도 gc_proch.dll이 없더라도 mabinogi.exe는 제대로 실행될 것이다.
         => mabinogi.exe -> client.exe -> gcupdater -> guardcat.exe -> gc_proch.dll
         1. mabinogi.exe(게임 자체의 업데이트 체크를 한다. 그리고 createprocess로 client.exe를 실행하고 종료한다.)
         2. client.exe(client가 실행될 때, gameguard와는 별개로 디버거가 있는지 확인하는 루틴이 있는 듯하다. 이 파일의 순서는 이렇다. 1. 데이터 파일의 무결성검사-확인해보지는 않았지만, 이게 문제가 될 소지가 있다. 2. Debugger Process가 있는지 Check.-있다면 프로세스를 종료한다. 3. gcupdater.exe를 서버로부터 받아온다. 4. createprocess로 gcupdater를 실행한다. 5. 자체 게임 루틴을 실행하고 gcupdater와 IPC를 사용할 thread를 만든다.)
         3. gcupdater(실행시 항상 서버에 접속하여 파일 3개를 받아온다. guardcat.exe, INST.dat, gc_proch.dll을 순서대로 받아와 자체적으로 wsprintf를 이용하여 복사한다.-아마 디버거에 API를 걸리기 싫었는지 모른다. createprocess로 guardcat.exe를 실행시킨다.)
         4. guardcat.exe(실행시 EnumServicesStatusA로 Process List를 받아와 gc_proch.dll 파일과 IPC로 데이터를 보낸다. 이 파일이 실행되는 Process를 체크하여 gc_proch.dll로 보내게 된다. 또한 IPC를 통해 client.exe에 Exception을 날리게 되 게임을 종료시키는 역할도 한다.)
         지금까지의 자료들을 분석한 결과 key는 client.exe가 쥐고 있는 것으로 보인다.
         client.exe가 실행될 때, 데이터 무결성과 디버거를 잡아내는 루틴을 제거한다면, updater의 사이트를 내 사이트로 변경후 인라인 패치를 통한 내 protector를 올려 mabinogi를 무력화 시킬 수 있다.
         아니면 client.exe가 gcupdater.exe를 받아내는 부분을 고치면 한결 수월 해 질 수도 있다. 단지, 무결성이 넘어가지 않는다면 힘들어진다.
         mabinogi.exe -> client.exe로 넘어가는 부분
         |CommandLine = ""C:\Program Files\Mabinogi\client.exe" code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea""
         client.exe code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea" 로 실행시키면 된다.
  • IndexedTree/권영기 . . . . 22 matches
         IndexedTree
         struct Indexed_tree{
         Indexed_tree it;
         void Init_IndexedTree(node *current, int limit, int *count, int *items){
          Init_IndexedTree(current->left, limit, count, items);
          Init_IndexedTree(current->right, limit, count, items);
          Init_IndexedTree(it.root, level, &it.count, items);
         BinaryIndexedTree
         void init_BinaryIndexedTree(int *tree, int *f, int *n){
         int read_BinaryIndexedTree(int *tree, int sp, int ep){
         void update_BinaryIndexedTree(int *tree, int address, int item, int *n)
          init_BinaryIndexedTree(tree, f, &n);
          printf("%d", read_BinaryIndexedTree(tree, 3, 7));
         BinaryIndexedTree C++연습
         class IndexedTree{
          IndexedTree(int *f, int n);
         int IndexedTree::read(int sp, int ep)
         void IndexedTree::update(int address, int item, int key){
         IndexedTree::IndexedTree(int *f, int n){
          IndexedTree *it = new IndexedTree(f, n);
  • NSIS/예제3 . . . . 20 matches
         OutFile "tetris.exe"
          File f:\tetris\execute\tetris.exe
          WriteUninstaller "uninstall.exe"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris" "UninstallString" '"$INSTDIR\uninstall.exe"'
          CreateShortCut "$SMPROGRAMS\ZPTetris\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
          CreateShortCut "$SMPROGRAMS\ZPTetris\ZPTetris.lnk" "$INSTDIR\tetris.exe"
          Delete $INSTDIR\uninstall.exe
          Delete $INSTDIR\tetris.exe
         OutFile: "tetris.exe"
         File: "Tetris.exe" [compress] 101234/1675339 bytes
         WriteUninstaller: "uninstall.exe"
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris\UninstallString="$INSTDIR\uninstall.exe"
         CreateShortCut: "$SMPROGRAMS\ZPTetris\Uninstall.lnk"->"$INSTDIR\uninstall.exe" icon:$INSTDIR\uninstall.exe,0, showmode=0x0, hotkey=0x0
         CreateShortCut: "$SMPROGRAMS\ZPTetris\ZPTetris.lnk"->"$INSTDIR\tetris.exe" icon:,0, showmode=0x0, hotkey=0x0
         Delete: "$INSTDIR\uninstall.exe"
         Delete: "$INSTDIR\tetris.exe"
         Output: "F:\NSIS\tetris.exe"
         EXE header size: 35328 / 35328 bytes
  • zennith/w2kDefaultProcess . . . . 17 matches
         Csrss.exe - 작업관리자에서 종료 불가
         Win32.sys가 Win32 subsystem의 커널모드 부분인데 비해서 Csrss.exe는 사용자모드 부
         Explorer.exe - 작업관리자에서 종료 가능
         Internat.exe - 작업관리자에서 종료 가능
         Lsass.exe - 작업관리자에서 종료 불가
         Mstask.exe - 작업관리자에서 종료 불가
         Smss.exe - 작업관리자에서 종료 불가
         되며 Winlogon 및 Win32 (Csrss.exe) 프로세스를 구동하고 시스템 변수를 설정하는 등
         Spoolsrv.exe - 작업관리자에서 종료 불가
         Svchost.exe - 작업관리자에서 종료 불가
         기 때문에 2개 이상이 생길 수도 있다. Svchost.exe를 이용하는 프로세스들의 명세를
         확인하려면 윈2000 CD에 있는 Tlist.exe를 이용하면 되고 구문은 명령 프롬프트에서
         Services.exe - 작업관리자에서 종료 불가
         Taskmgr.exe - 작업관리자에서 종료 가능
         Winlogon.exe - 작업관리자에서 종료 불가
         Winmgmt.exe - 작업관리자에서 종료 불가
         작업관리자에서 종료할 수 없는 프로세스들의 대부분은 Resource Kit 유틸인 Kill.exe
  • NSIS . . . . 15 matches
          * makensis 로 Script 를 컴파일한다. 그러면 makensis 는 스크립트를 분석하면서 포함해야 할 화일들을 하나로 묶어준다. 그리고 zip의 형식으로 압축해준다. (내부적으로 zip2exe 가 이용된다. 이건 zlib 사용됨.)
          CreateShortCut "$SMPROGRAMS\NSIS\ZIP2EXE project workspace.lnk" \
          "$INSTDIR\source\zip2exe\zip2exe.dsw"
         === ExecWait ===
         exec 로 해당 프로세스를 실행할 때 해당 프로세스가 죽을 때 까지 wait.
         regsvr32.exe 로 dll 을 unregister 한 다음에 전체 폴더를 삭제할 때, regsvr32.exeExec 가 아닌 ExecWait 로 실행해주어야 한다. (그렇지 않으면 해당 dll 이 unregister 되기 전에 dll 화일이 delete 되어 정상적인 uninstall 이 되지 않을 수도 있다.)
         사용 예 : exec 로 regsvr32.exe 호출시 비동기 호출이 되어 뒤의 delete 문이 실행된다. 이를 방지하기 위한 방법으로 다음과 같이 한다.
          Exec 'regsvr32.exe /u /s "$INSTDIR\COMDLL.dll"'
          FindProcDLL::FindProc "regsvr32.exe"
         Exec 'regsvr32.exe /s "$INSTDIR\${NAME_OF_MY_DLL}"'
         Exec 'regsvr32.exe /s /u "$INSTDIR\${NAME_OF_MY_DLL}"'
         === NSIS 에서 uninstall.exe 만들기 ===
         "UninstallString" "$INSTDIR\Uninstall.exe"
         WriteUninstaller "$INSTDIR\Uninstall.exe"
  • 영호의바이러스공부페이지 . . . . 15 matches
          The first time a file infected with the 163 COM Virus is executed,
          an infected program is executed another .COM file will attempt to
         If there is an error in executing this function the carry flag will be set,
         Then uses Debug to make the file SAMPLE.COM executing this command --
         executing the command -
         Sub-Zero is a memory resident COM and EXE infector that is based somewhat on
         ; It should be made into a .COM file before executing, with either
         ; the "/t" command line flag in TLINK or Microsoft's EXE2BIN utility.
         ; This program has the potential to permanently destroy executable
         ; All executable code is contained in boundaries of procedure "main".
         main proc near ; Code execution begins here
         exe_filespec db "*.EXE",0
         find_exe:
          mov dx,offset exe_filespec ; Check for .EXE extension first
          call find_healthy ; Otherwise, try to find healthy .EXE
          jnz find_exe ; If we're still rolling, find another
         Copy the below to a file called 1992.USR then execute --
         run it will seek out the first EXE file in the second directory from the
         virus will jump from directory to directory when executed until it finds
         an uninfected EXE file to nail.
  • 영호의해킹공부페이지 . . . . 13 matches
         coded daemons - by overflowing the stack one can cause the software to execute
         it can handle. We use this to change the flow of execution of a program -
         hopefully by executing code of our choice, normally just to spawn a shell.
         It executed fine. Now lets try...
         OVERFLOW caused an invalid page fault in module OVERFLOW.EXE at 015f:00402127.
         And when executing the program, the output we get is as follows...
         Padding? Right. Executing the NOP function (0x90) which most CPU's have - just
         address we can land somewhere in the middle of the NOPs, and then just execute
         Shellcode? Right. We can execute pretty much anything we want, and as much as
         #telnet stream tcp nowait root /usr/local/libexec/tcpd /usr/libexec/telnetd
         telnet stream tcp nowait drew /usr/local/libexec/tcpd /home/drew/phjeeer
         use mc1.exe and mc2.exe to get the code
         Note: if u cant find pclocals use net_monitor.exe, i dunno if it gets the big
  • SeminarHowToProgramIt/Pipe/VendingMachineParser.py . . . . 11 matches
          tok = self.lexer.get_token()
          tok=self.lexer.get_token()
          self.outstream.write(self.lexer.error_leader()+msg+'\n')
          tok=self.lexer.get_token()
          tok=self.lexer.get_token()
          lexer=shlex.shlex(aStream,aName)
          lexer.source = 'include'
          lexer.wordchars += '.,-'
          self.lexer=lexer
          tok = lexer.get_token()
  • SuperMarket/인수 . . . . 11 matches
          virtual void executeCommand(SuperMarket& sm, User& user, const string& str) = 0;
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          void executeCommand(SuperMarket& sm, User& user, const string& str)
          _tableCmd[command]->executeCommand(sm, user, str);
  • JavaNetworkProgramming . . . . 10 matches
          protected Thread execution;
          if(execution == null){
          execution = new Thread(this); //Runnable 인터페이스를 구현한 것을 넣어줌
          execution.setPriority(Thread.MIN_PRIORITY); //우선수위를 정함
          execution.start(); // 쓰레드시작
          if(execution !=null){
          execution.interrupt(); //stop()을 쓰는 것은 별로 바람직하지 않다 stop()은 쓰레드가 어떤 상황에 있더라도 쓰레드를 바로 멈추어 버리기 때문에,
          execution = null; //쓰레드가 크리티컬 섹션을 수행하는 도중 이 메소드가 호출되는 경우,중요한 데이터에 다른 쓰레드가 영영 접근할수 없는
          while(execution == myself){
          execution =null;
  • html5/webSqlDatabase . . . . 10 matches
         == Indexed Database ==
          * SeeAlso) [html5/indexedDatabase]
          * Indexed Database는 새로 등장한 또다른 로컬 저장소 스펙이다
          * 현재 Web SQL Database 는 사양 책정이 중지된 상태이며, IndexedDB 라는 새로운 스펙이
          tx.executeSql('CREATE TABLE IF NOT EXISTS ' +
          tx.executeSql('INSERT INTO todo(todo, added_on) VALUES (?,?)',
          tx.executeSql('SELECT * FROM todo', [], renderFunc,
          tx.executeSql('DELETE FROM todo WHERE ID=?', [id],
          tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id unique, text)');
          tx.executeSql('INSERT INTO foo (id, text) VALUES (1, "synergies")');
  • Linux/필수명령어/용법 . . . . 9 matches
         디렉토리 이름과 cd 명령 사이에 반드시 공백이 있어야 한다. 디렉토리 이름을 주지 않고 수행하면 사용자의 홈 디렉토리로 이동한다. 자신이 이동하고자 하는 디렉토리는 자신에게 실행 권한(execution permission)이 있어야 한다.
         -exec 명령 : 원하는 검색 조건에 맞는 파일을 찾으면 명시된 명령을 실행한다. 명령의 끝은 \;을 사용하여 끝낸다. find가 검색해낸 파일의 이름을 인수로 사용하고 싶다면 그 위치에 {}를 사용한다.
         - $ find -user qwfwq -exec cat {} list\;
         - $ uuencode canexe.Z canexe.Z > exemail.uu
         canexe.Z 라는 파일을 인코딩 작업을 거친 후 exemail.uu라는 파일로 저장한다. 이 파일을 디코딩하면 canexe.Z라는 이름으로 파일이 만들어진다.
  • Temp/Parser . . . . 9 matches
          tok = self.lexer.get_token()
          tok=self.lexer.get_token()
          self.outstream.write(self.lexer.error_leader()+msg+'\n')
          lexer=shlex.shlex(aStream,aName)
          lexer.source = 'include'
          lexer.wordchars += '.,-'
          self.lexer=lexer
          tok = lexer.get_token()
  • VonNeumannAirport/1002 . . . . 9 matches
         Error executing cl.exe.
         AirportSec.exe - 1 error(s), 0 warning(s)
         Error executing cl.exe.
         AirportSec.exe - 1 error(s), 0 warning(s)
         Error executing cl.exe.
         AirportSec.exe - 1 error(s), 0 warning(s)
  • AsemblC++ . . . . 8 matches
         C 프로젝트로 빌드로 생성된 .exe파일에서 어셈블 코드를 찾아내고 그 효율성과 다른 각 IDE들의 차이점을 찾아보려는 의도로 만들어진 페이지.
         == VS의.exe 어셈블코드 보기 ==
         .exe파일의 어셈블 코드부분에 대한 질문. [http://zeropage.org/wiki/AsemblC_2b_2b?action=edit 지식in]
         결론부터 말을 하자면 .exe 파일에서 어셈블리 코드를 얻어낸 것이 아닙니다. 물론 그것도 가능하지만 매우 어렵죠.
         이렇게 얻은 어셈블리 코드는 모든 최적화 과정이 끝난 상태이기 때문에 .exe 파일로 만들어질 때 까지 변형되지 않습니다.
         그렇기 때문에 굳이 어려운 방법을 통해 .exe 파일에서 어셈블리 코드를 얻어낼 필요가 없는 것이죠. --[상규]
          .exe 파일에 대한 어셈블리 코드는 역어셈블러(아래 상협이가 말한 softice와 같은 프로그램)만 있으면 쉽게 얻을 수 있습니다. 수정에 관한 보안장치도 전혀 없구요. 하지만 .exe 파일에 대한 어셈블리 코드는 분석하거나 수정하는것 자체가 거의 불가능할 정도로 어렵습니다. 이유는... 시간이 없어서 나중에 쓰도록 하죠-_-; --[상규]
  • ACM_ICPC/2012년스터디 . . . . 7 matches
          * Binary Indexed Tree
          * [IndexedTree/권영기]
          * Binary Indexed Tree
          - (Binary) Indexed Tree (이건 알아둬야 합니다. 실제로 Binary Indexed Tree는 Binomial에 가깝지만..)
          - Interval Tree (이것 또한 Indexed Tree가 이녀석의 역할을 대신할정도로 만능이지만.)
         다각형이 시작되는 edge를 만날때 ... indexed tree
  • .vimrc . . . . 6 matches
          exe "normal A " . """ . fname . """
          exe "normal A " . "___" . fname . "___"
          exe "normal A " . "___" . fname . "___"
          exe "normal A " . "// ___" . fname . "___"
          exe "normal A" . cname . " {"
          exe "normal A" . "\n" . cname . "() {}\nvirtual ~" . cname . "() {}"
  • MFCStudy_2001 . . . . 6 matches
          * 벽돌깨기:[http://zeropage.org/pds/MFCStudy_2001_final_혜영_Alcanoid.exe 혜영],[http://zeropage.org/pds/MFCStudy_2001_final_인수_Arca.exe 인수],[http://zeropage.org/pds/MFCStudy_2001_final_선호_arkanoid.exe 선호]
          * 오목:[http://165.194.17.15/~namsangboy/Projects/ai-omok/omok.exe 상협],[http://zeropage.org/pds/MFCStudy_2001_final_창섭_winomok.exe 창섭]
          * 지뢰찾기:[http://zeropage.org/pds/MFCStudy_2001_final_영창_MINE_blue.exe 영창];인수와 선호는 소스 날려 먹었다는 납득할수 없는(--+) 이유로 거부;[[BR]]
  • NSIS/Reference . . . . 6 matches
         || OutFile || "example.exe" || 인스톨러의 화일 이름 ||
         || Exec || command || 특정 프로그램을 실행하고 계속 다음진행을 한다. $OUTDIR 은 작업디렉토리로 이용된다. ex) Exec '"$INSTDIR\command.exe" parameters'||
         || ExecWait || command [user_var(exit code)] || 특정 프로그램을 실행시키고, 종료될 때까지 기다린다. ||
         || ExecShell || action command [parameters] [SW_SHOWNORMAL | SW_SHOWMAXIMIZED | SW_SHOWMINIMIZED]|| ShellExecute를 이용, 프로그램을 실행시킨다. action은 보통 'open', 'print' 등을 말한다. $OUTDIR 은 작업디렉토리로 이용된다.||
          * WriteUninstaller - uninstller 화일이름 설정. 보통 uninstall.exe 라고 써주면 됨. 단, 레지스트리에 등록시키는 화일과 같아야 한다.
          * $EXEDIR - installer 가 실행되는 위치
          Delete $INSTDIR\Uninst.exe ; delete self (see explanation below why this works)
          Delete $INSTDIR\myApp.exe
         uninstaller 는 uninstall을 위해 시스템 임시디렉토리에 자기자신을 복사하므로, Uninstall Section 에서는 반드시 Uninst.exe를 지워준다.
  • SummationOfFourPrimes/1002 . . . . 6 matches
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
         C:\WINDOWS\system32\cmd.exe /c python SummationOfFourPrimes.py
  • VMWare/OSImplementationTest . . . . 6 matches
          http://www.execpc.com/~geezer/johnfine/index.htm
         많이 지원하는 어셈블러입니다. 설치과정없이 그냥 nasm.exe 만 있으면 됩니다.
          Makeboot.exe
         gdt_code: ; Code segment, read/execute, nonconforming
         입니다. 따로 프로젝트를 만들어서 간단히 컴파일해서 makeboot.exe를 만들도록
         Partcopy.exe 툴을 사용하여 부팅 디스켓에 놓을 수도 있지만 번거롭습니다. 따라서 VMWare에서 직접 이를 디스켓 이미지로 로드하도록 합니다.
  • BeingALinuxer . . . . 5 matches
          [http://zeropage.org/~linuxer/tools/FileZilla_2_2_14_setup.exe FileZilla_2_2_14_setup.exe] - FTP, SFTP Client
          [http://zeropage.org/~linuxer/tools/putty.exe putty.exe] - TELNET, SSH Client
          [ftp://ftp.vim.org/pub/vim/pc/gvim63.exe gvim6.3] - VI Improved 에디터
  • NSIS/예제1 . . . . 5 matches
         OutFile "TestInstallSetup.exe"
          File "C:\windows\notepad.exe"
         OutFile: "TestInstallSetup.exe"
         File: "NOTEPAD.EXE" [compress] 20148/53248 bytes
         Output: "C:\Program Files\NSIS\TestInstallSetup.exe"
         EXE header size: 35328 / 35328 bytes
         ==== 만들어진 TestInstallSetup.exe 실행결과 ====
  • ZeroPageServer/old . . . . 5 matches
         || [http://165.194.17.15/pub/util/putty.exe putty noversion],[http://165.194.17.15/pub/util/putty0_53b.exe putty 0.53b] || ssh1, 2 Client 0.53b 는 [[BR]] 하단 ssh 옵션에서 ssh2 (or ssh2 only) 선택||
         || [http://openlook.org/distfiles/PuTTY/putty.exe putty 한글 입력 패치 적용] || 출처[http://fallin.lv/zope/pub/noriteo/putty 장혜식님의 홈] ||
         || [http://165.194.17.15/pub/util/WinSCP2.exe WinSCP 2.0 Beta], [http://165.194.17.15/pub/util/WinSCP22.exe WinSCP 2.2]|| ssh1, 2 ftp Client ||
  • Gof/Command . . . . 4 matches
         Command Pattern은 request 를 객체화함으로서 toolkit 객체로 하여금 불특정한 어플리케이션 객체에 대한 request를 만들게 한다. 이 객체는 다른 객체처럼 저장될 수 있으며 pass around 가능하다. 이 pattern의 key는 수행할 명령어에 대한 인터페이스를 선언하는 추상 Command class에 있다. 이 인터페이스의 가장 단순한 형태에서는 추상적인 Execute operation을 포함한다. 구체화된 Command subclass들은 request에 대한 receiver를 instance 변수로 저장하고 request를 invoke하기 위한 Execute operation을 구현함으로서 receiver-action 짝을 구체화시킨다. The receiver has the knowledge required to carry out the request.
         어플리케이션은 각각의 구체적인 Command 의 subclass들로 각가각MenuItem 객체를 설정한다. 사용자가 MenuItem을 선택했을때 MenuItem은 메뉴아이템의 해당 명령으로서 Execute oeration을 호출하고, Execute는 실제의 명령을 수행한다. MenuItem객체들은 자신들이 사용할 Command의 subclass에 대한 정보를 가지고 있지 않다. Command subclass는 해당 request에 대한 receiver를 저장하고, receiver의 하나나 그 이상의 명령어들을 invoke한다.
         예를 들어 PasteCommand는 clipboard에 있는 text를 Document에 붙이는 기능을 지원한다. PasteCommand 의 receiver는 인스턴스화할때 설정되어있는 Docuemnt객체이다. Execute 명령은 해당 명령의 receiver인 Document의 Paste operation 을 invoke 한다.
         OpenCommand의 Execute operation은 다르다. OpenCommand는 사용자에게 문서 이름을 물은뒤, 대응하는 Document 객체를 만들고, 해당 문서를 여는 어플리케이션에 문서를 추가한 뒤 (MDI를 생각할것) 문서를 연다.
          * undo 기능을 지원하기 원할때. Command의 Execute operation은 해당 Command의 효과를 되돌리기 위한 state를 저장할 수 있다. Command 는 Execute 수행의 효과를 되돌리기 위한 Unexecute operation을 인터페이스로서 추가해야 한다. 수행된 command는 history list에 저장된다. history list를 앞 뒤로 검색하면서 Unexecute와 Execute를 부름으로서 무제한의 undo기능과 redo기능을 지원할 수 있게 된다.
          * logging change를 지원하기 원할때. logging change 를 지원함으로서 시스템 충돌이 난 경우에 대해 해당 command를 재시도 할 수 있다. Command 객체에 load 와 store operation을 추가함으로서 change의 log를 유지할 수 있다. crash로부터 복구하는 것은 디스크로부터 logged command를 읽어들이고 Execute operation을 재실행하는 것은 중요한 부분이다.
          * invoker는 command에서 Execute를 호출함으로서 request를 issue한다. 명령어가 undo가능할때, ConcreteCommand는 명령어를 undo하기 위한 state를 저장한다.
          virtual void Execute () = 0;
          virtual void Execute ();
         void OpenCommand::Execute () {
          virtual void Execute ();
         void PasteCommand::Execute () {
          vitual void Execute ();
         constructor는 receiver와 instance 변수에 대응되는 action을 저장한다. Execute는 단순히 action을 receiver에 적용한다.
         void Simplecommand<Receiver>::Execute () {
         aCommand->Execute ();
          virtual void Execute ();
         MacroCommand의 열쇠는 Execute 맴버함수에 있다. 이것은 모든 부명령어들을 탐색하면서 그들 각각의 Execute operation를 수행한다.
         void MacroCommand::Execute () {
          c->Execute ();
  • IpscLoadBalancing . . . . 4 matches
          lexer=shlex.shlex(stream)
          numOfElements=int(lexer.get_token())
          thisLine.append(int(lexer.get_token()))
          numOfElements=lexer.get_token()
  • MFCStudy_2001/진행상황 . . . . 4 matches
          * 1월 9일자 진행 프로그램: [http://zeropage.org/pds/Alcanoid1_혜영.exe 혜영] [http://zp.cse.cau.ac.kr/~nuburizzang/Arca.exe 인수] [http://zeropage.org/pds/arkanoid_선호.exe 선호] [http://zeropage.org/pds/omok_상협.exe 상협] (창섭이는 부탁으로 제외하고 다음 이시간에)
  • NSIS/예제4 . . . . 4 matches
         OutFile "VncKorPatch.exe"
          File "vncconfig.exe"
          File "vncviewer.exe"
          File "winvnc4.exe"
  • ProgrammingLanguageClass/2006/Report3 . . . . 4 matches
         subprogram, the corresponding thunk compiled for that parameter is executed. Even
         though it is difficult to avoid run-time overhead in the execution of thunks, sometimes it
         You are supposed to upload your source program and executable file. You are also
         to exercise your program completely.
  • ProgrammingLanguageClass/Report2002_1 . . . . 4 matches
          * <identifier>와 <constant>의 경우에는 찾아진 lexeme을 함께 출력한다.
          * 어휘분석기(lexical analyzer)의 소스코드는 정수 변수 next_token, 문자열 변수 token_string, 함수 lexical()을 포함하여야 한다. 함수 lexical()은 입력 스트림을 분석하여 하나의 lexeme을 찾아낸 뒤, 그것의 token type을 next_token에 대입하고, lexeme 문자열을 token_string에 저장하는 함수이다.
          * 문장이 문법에 적합하지 않으면 관련 오류 메시지를 출력한다. 그 다음 오류를 발생시킨 lexeme을 제거 또는 첨가한 후, 파싱을 재개한다. 예를 들어, x = a + + b일 경우, “+” 연산자가 한 개가 더 존재하므로 오류 메시지를 출력한다. 그 다음, “+”기호를 제거한 후 파싱을 계속한다.
  • 데블스캠프2006/목요일/winapi . . . . 4 matches
         Upload:timer.exe
         Upload:click_me.exe
         Upload:getdc.exe
         Upload:dead_pixel.exe
  • 자바와자료구조2006 . . . . 4 matches
         [http://www.gayhomes.net/debil/flexeril.html flexeril]
         [http://h1.ripway.com/redie/flexeril.html flexeril]
  • 창섭/배치파일 . . . . 4 matches
         배치파일의 기능은 순차적이고 반복된 동일한 작업 과정을 몇개의 혹은 수십, 수백 개의 연관된 명령어를 하나의 파일로 집약하여 그 하나의 파일(배치파일)만 실행함으로써 원하는 작업 과정을 수행하는것입니다.배치파일에 붙는 확장자는 .bat(batch 의 약어) 입니다.도스에서 실행이 가능하기 때문에 .com, .exe 확장자가 붙는 외부 명령어와 함께 실행 가능한 파일로 분류됩니다.차이가 있다면 .com, .exe 명령어는 컴퓨터만 해석 가능한 기계어 코드로 구성되어 있는반면, 배치 파일은 사람이 알아볼수 있는 일반 텍스트로 이루어져있다는 것입니다.
         배치 파일은 파일 안에 기록되어 있는 명령의 순서대로 실행됩니다.가장 대표적인 것이 부팅에 이용되며, 컴퓨터의 루트 디렉토리에 위치하고 있는 Autoexec.bat 파일입니다. 그런데 만약 배치 파일의 실행의 순서를 순차적이 아닌멀티부팅용 Autoexec.bat 처럼 사용자 마음대로 정하고 싶다면 배치파일에 제공되는배치명령어의 용도를 알고 있어야 합니다.
  • 3DGraphicsFoundation . . . . 3 matches
          * 인수의 프로그램 [http://165.194.17.15/~nuburizzang/Fracta.exe] : 소스 조올라 더렵다 --; 튜토리얼에서 제공하는 무지막지하게 긴 템플릿을 써서 상당히 길기도 하다. 걍 실행파일만..--; 근데 꼭 심시티 같다--;
          * 상협의 프로그램 [http://165.194.17.15/~namsang/FractalSurface.exe] : 오예 링크 걸렸당~
          * [http://nexe.gamedev.net] : 여기는 DX 초보자용 -- 정수
  • ALittleAiSeminar . . . . 3 matches
          * http://www.othelloclub.com/program/wz423.exe - wzebra
          * http://jaist.dl.sourceforge.net/sourceforge/psyco/psyco-1.5.win32-py2.4.exe
          def execute(self):
  • CincomSmalltalk . . . . 3 matches
          * 연결 프로그램으로 압푹을 푼 디렉토리 안에 있는 bin\win 디렉토리 안에 있는 visual.exe 를 지정해준다.
          * [http://zeropage.org/pub/language/smalltalk_cincom/OsNoncom.exe ObjectStudio]
          * [http://zeropage.org/pub/language/smalltalk_cincom/osmanuals.exe ObjectStudio documentation]
          * {{{~cpp ObjectStudio}}} 를 다운받아 압축을 풀고 SETUP.EXE 를 실행하여 설치한다.
  • EcologicalBinPacking/임인택 . . . . 3 matches
         indexes = '123 132 213 231 312 321'.split()
          for str in indexes : # seq in indexes
  • Garbage collector for C and C++ . . . . 3 matches
         # -DNO_EXECUTE_PERMISSION may cause some or all of the heap to not
         # have execute permission, i.e. it may be impossible to execute
         # and Solaris/SPARC and platforms that provide execinfo.h.
  • NUnit/C#예제 . . . . 3 matches
          1. NUnit gui나 console 브라우져로 빌드후 나온 dll 혹은 exe를 로딩해서 Test를 실행한다.
          1. Command에는 설치한 NUnit 콘솔 프로그램의 경로를 적어준다.(예:C:\Program Files\NUnit 2.2\bin\nunit-console.exe)
          1. Argument에 {{{ $(ProjectDir)\bin\debug\$(TargetName).exe }}} 라고 적는다. ( 보통은 디버그 모드에서서 컴파일 하므로 폴더가 debug이다. 릴리즈인 경우에는 release로 바꾸면 될 듯)
  • STLErrorDecryptor . . . . 3 matches
         컴파일을 맡은 프로그램은 CL.EXE란 것인데, 이 프로그램은 C/C++컴파일러(C2.DLL+C1XX.DLL)를 내부적으로 실행시키는 프론트엔드의 역할만을 맡습니다. VC IDE는 컴파일시 이 프로그램을 사용하도록 내정되어 있습니다.
         나) '''원래의 C/C++ 컴파일러를 작동시키되 그 결과를 필터링해주는 기능이 추가된 프론트엔드를 CL.EXE이란 이름으로 행세(?)'''하게 하면, VC의 IDE나 기존의 개발환경에 전혀 영향을 주지 않고 필터링만 할 수 있게 될 겁니다. 해독기 패키지에는 이런 CL.EXE가 포함되어 있습니다. 이것을 "프록시(proxy) CL"이라고 부릅니다.
          * 원래의 CL,EXE이 CL2.EXE로 리네임됨
          * 해독기 패키지에 포함된 프록시 CL이 원래의 CL.EXE이 있던 자리를 대신함
          * 펄 스크립트 인터프리터(PERL.EXE)가 사용 가능함
          * 프록시 CL(CL,EXE)이 CL2.EXE를 실행함
          * 펄 스크립트 인터프리터(PERL.EXE)를 실행하고, 에러 필터 스크립트(STLfilt.pl)를 띄움
          * CL2.EXE가 내는 컴파일 결과를 에러 필터 스크립트에 파이프(pipe)를 통해 통과시킴
          * CL.EXE : VC에서 사용하는 원래의 CL.EXE를 대신할 프록시 CL.
          * STLTask.EXE : 해독기의 필터링 기능을 토글하는 컨트롤러로, 윈도우 작업표시줄(TaskBar)에 위치하게 됩니다.
         프록시 CL이 원래의 CL.EXE의 행세를 할 수 있도록 하는 과정입니다.
         가) Visual C++가 설치된 디렉토리로 이동하고, 여기서 \bin 디렉토리까지 찾아 들어갑니다. (제 경우에는 D:\Program Files2\Microsoft Visual Studio .NET\Vc7\bin입니다.) 제대로 갔으면, 원래의 CL을 백업용으로 모셔다 놓을 폴더를 하나 만듭니다. (제 경우에는 '''native_cl'''이란 이름으로 만들었습니다.) 그리고 나서 CL.EXE를 그 폴더에 복사해 둡니다.
         나) \bin 디렉토리에 있는 CL.EXE를 CL2.EXE로 이름을 바꾸어 줍니다.
         다) 이젠 프록시 CL의 동작에 필요한 환경 옵션을 제공하는 Proxy-CL.INI 파일을 여러분의 개발환경에 맞게 고쳐야 합니다. 텍스트 편집기로 Proxy-CL.INI를 열면 아래의 [common], [proxy.cl], [stltask.exe] 부분이 모두 비어 있는데, 윗부분의 주석문을 참고하면서 환경 변수를 고쳐줍니다. 반드시 설정해야 하는 옵션은 다음과 같습니다.
          * PERL_EXE : 펄 스크립트 인터프리터(PERL.EXE)의 전체 경로. 역시 파일 이름까지 써 주세요.
          * CL_DIR : VC의 컴파일러 프론트엔드인 CL.EXE가 위치한 디렉토리. 이 부분을 지정하지 않으면 해독기 컨트롤러가 제대로 작동하지 않습니다.
         프록시 CL의 에러 필터링을 활성화하거나 비활성화하는 역할을 맡은 프로그램인 STLtask.exe를 실행시켜 태스크바에 띄우는 과정입니다.
         가) STLfilt.zip의 압축을 푼 디렉토리에서 STLtask.exe를 실행합니다. 별 문제가 없으면 아래와 같은 대화 상자가 뜹니다.
         ''참고) 대화 상자의 상단을 보면 "CL.EXE를 CL.STL로 복사했다"란 메시지가 보이는데, 이는 프록시 CL도 백업용으로 하나 복사해 둔다는 뜻이니 괘념치 않아도 됩니다. ''
  • ZP&COW세미나 . . . . 3 matches
          * VNC Viewer: http://165.194.17.15/pub/util/vncviewer.exe
          * Java 2 SDK: http://165.194.17.15/pub/language/java/j2sdk-1_4_2_01-windows-i586.exe
          * Python: http://165.194.17.15/pub/language/python/Python-2.3.exe
  • ZeroPageServer/SubVersion . . . . 3 matches
         D:Program FilesTortoiseSVNbinTortoisePlink.exe" -l 계정 -pw 암호
          푸티의 에이전트로 TortoisePlink.exe 가 접속이 되는 이유는 TortoisePlink.exe가 푸티의
  • ZeroPageServer/Telnet계정 . . . . 3 matches
         ZeroPage Server의 Linux Telnet 계정으로, '''ssh2'''(Secure SHell 2 - 보안계정) 를 지원하는 Telnet클라이언트( 예 [http://zeropage.org/pub/util/putty.exe putty] ) 로 접근할수 있다.
          * 링크된 pub 디렉토리에 파일을 저장하시면, http://zeropage.org/pub/xxx 로 노출시킬수 있습니다. 예를 들어서, ~/pub/util/putty.exe 를 넣어 두었다면, http://zeropage.org/pub/util/putty.exe 로 링크가 걸리고 다운을 받을수 있습니다.
  • django/ModifyingObject . . . . 3 matches
          cursor.execute("SELECT 1 FROM %s WHERE %s=%%s LIMIT 1" % \
          cursor.execute("UPDATE %s SET %s WHERE %s=%%s" % \
          cursor.execute("INSERT INTO %s (%s) VALUES (%s)" %
  • lostship . . . . 3 matches
         [http://zeropage.org/pub/util/vncviewer.exe VNC View] [http://zeropage.org/pub/util/putty.exe putty Client] [http://zeropage.org/pub/util/WinSCP2.exe WinSCP 2.0 Beta]
  • 그래픽스세미나/2주차 . . . . 3 matches
         || 이상규 || [http://165.194.17.15/~lsk8248/wiki/Seminar/%b1%d7%b7%a1%c7%c8%bd%ba%bc%bc%b9%cc%b3%aa/2%c1%d6%c2%f7/Space.zip Space] 상하좌우 방향키와 +,- 키를 눌러보세요^^ [[BR]] [http://165.194.17.15/~lsk8248/wiki/Seminar/%b1%d7%b7%a1%c7%c8%bd%ba%bc%bc%b9%cc%b3%aa/2%c1%d6%c2%f7/Space.exe Space 실행 파일] [http://165.194.17.15/~lsk8248/wiki/Seminar/%b1%d7%b7%a1%c7%c8%bd%ba%bc%bc%b9%cc%b3%aa/2%c1%d6%c2%f7/ErrorSpace.exe 에러난 Space 실행 파일(멋진 에러..ㅡ.ㅡ)]||
         || [창섭] || Upload:Sun.exe 아무것도 아닙니다. 그냥 빨간 구...;; ||
  • 데블스캠프2003/다섯째날 . . . . 3 matches
         Upload:진훈원명오목.exe
         [http://165.194.17.15/~whiteblue/OMOK.exe 오목/상욱]
         Upload:재선동일오목.exe
  • 데블스캠프2004/금요일 . . . . 3 matches
         JDK 1.5 : http://zeropage.org/~neocoin/eclipse3.0rc3/jdk-1_5_0-beta2-windows-i586.exe
         http://zeropage.org/pub/language/python/Python-2.3.exe
         압축을 풀고, 해당 디렉토리에 들어간 뒤 c:\python23\python.exe 를 실행해주세요.
  • 새싹교실/2011/쉬운것같지만쉬운반/2011.5.3 . . . . 3 matches
          3. C에서 exe파일이 만들어지는 과정
          3. 소스 코드를 작성한다 -> 컴파일(.obj파일 생성) -> 링크(다른 오브젝트와) = .exe파일 생성
          3. C에서 exe파일이 만들어지는 과정
  • 유용한팁들 . . . . 3 matches
         == Simple Text Indexer Using SQLite ==
          * [SimpleTextIndexerUsingSQLite]
          * 원본 글 : [http://www.codeproject.com/useritems/Text_Indexer.asp]
  • 파이썬->exe . . . . 3 matches
         주제 : win32com 을 이용한 파이썬 프로그램 py2exe로 실행파일 만들기
         py2exe로 패키징하여 다른 컴퓨터에서 돌리면 에러가 납니다
         python setup.py py2exe --packages win32com
  • .bashrc . . . . 2 matches
         function fe() { find . -name '*'$1'*' -exec $2 {} \; ; } # 파일을 찾아서 $2 의 인자로 실행
         complete -A command nohup exec eval trace gdb
  • ACM_ICPC/2013년스터디 . . . . 2 matches
          * Binary Indexed Tree
          * [http://211.228.163.31/30stair/bridging/bridging.php?pname=bridging&stair=15 bridging - binary indexed tree를 이용한 Up Sequence 문제]
  • APlusProject/ENG . . . . 2 matches
          "aspnet_regiis.exe -i" 명령어 실행하면 다음 메시지와 함께 ASP.NET이 설치됨
         C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis.exe -i
  • Applet포함HTML/진영 . . . . 2 matches
         ''C:\j2sdk1.4.1_01\bin\HtmlConverter.exe 로 컨버트''
          '''ex) htmlconverter.exe NotHelloWorldApplet.html'''
  • BabyStepsSafely . . . . 2 matches
         This article outlines the refactoring of an algorithm that generate the prime numbers up to a user specified maximum. This algorithm is called the Sieve of Eratosthenes. This article demonstrates that the granularity of the changes made to the source code are very small and rely completely on the ability to recompile and test the code after every change no matter how small. The step where the code is tested insures that each step is done safely. It is important to note that the execution of tests do not actually guarantee that the code is correct. The execution of the tests just guarantees that it isn't any worse that it used to db, prior to the change. This is good enough for the purposes of refactoring since we are tring to not damage anything thay may have worked before Therefore for each change in the code we will be recompilling the code and running the tests.
  • BuildingWikiParserUsingPlex . . . . 2 matches
          def execute(self):
          return macro.execute()
  • CeeThreadProgramming . . . . 2 matches
         /* Create independent threads each of which will execute function */
         /* wait we run the risk of executing an exit which will terminate */
  • ComputerNetworkClass/2006 . . . . 2 matches
          * http://zerowiki.dnip.net/~namsangboy/program/ethereal.exe
          * http://zerowiki.dnip.net/~namsangboy/program/WinPcap_3_1.exe
  • FortuneCookies . . . . 2 matches
          * "Perl is executable line noise, Python is executable pseudo-code."
          * Executive ability is prominent in your make-up.
  • FoundationOfUNIX . . . . 2 matches
          * [http://zeropage.org/~neocoin/putty.exe putty Client] 여기서 프로그램 다운 받아서 깔아서 접속하세요
          * find ./ -name '*.txt' -ls -exec rm {} \; (현재 디렉토리 이후 *.txt 인파일을 모두 찾아서 지우기.
  • HelpOnInstallation . . . . 2 matches
          * 윈도우즈 사용자의 경우는 아파치 웹서버를 제외한 PHP + rcs + 기타 몇몇 프로그램이 함께 패키징 된 apmoni-setup-1.1.x.exe를 제공합니다.
          * 윈도우즈 사용자의 경우 micro apache 웹서버가 포함된, mapmoni-setup-1.1.x.exe 를 받으실 수도 있습니다. (단, 여기서 .x. 는 3 이상)
  • IntelliJ . . . . 2 matches
          1. Path to CVS client 에 도스프롬프트의 cvs.exe 나 cvs95.exe 등을 연결
  • MFCStudy_2002_1 . . . . 2 matches
         || 정훈 || [http://zp.cse.cau.ac.kr/~wizardhacker/data/WinOmok.exe WinOmok.exe] ||
  • NeoCoin/Server . . . . 2 matches
         find / -user <사용자> -fstype <파일시스템 타입> !-name "/dev/*" ! -name "/proc/*" -exec ls -lh{} \;
         find ./ -name *.html -exec perl -pi -e `s/<바뀌고>/<바뀔>/g` {} \;
  • OperatingSystemClass/Exam2002_2 . . . . 2 matches
         6. Consider a file currently consisting of 100 blocks. Assume that the file control block(and the index block, in the case of indexed allocation) is already in memory, Calculate how many disk I/O operations are required for contiguous, linked and indexed (single-level) allocation strategies, if for one block, the following conditions hold. In the contiguous allocation case, assume that there is no room to grow in the beginning, but there is room to grow in the end. Assume that the block information to be added in stored in memory.
  • RandomWalk2/TestCase2 . . . . 2 matches
         test.exe 는 작성한 프로그램 실행 파일 이름입니다.
         c:\RandomWalk2Test> alltest.bat test.exe
  • STLPort . . . . 2 matches
          Error executing link.exe.
  • ScheduledWalk/창섭&상규 . . . . 2 matches
          * 진행자(Executor)
          * 모든것을 진행한다.(Execute) | 사용자(User), 판(Board), 바퀴벌레(Roach), 여정(Journey)
         class Executor
          void Execute(User *user)
          Executor executor;
          executor.Execute(&user);
  • SchemeLanguage . . . . 2 matches
          * [http://www.swiss.ai.mit.edu/projects/scheme/mit/7.7/7.7.1/scheme-7.7.1-ix86-win32.exe MIT Scheme]
          * 위문서를 보기위해서는 [http://object.cau.ac.kr/selab/lecture/undergrad/ar500kor.exe AcrobatReader]가 필요하다.
  • SeminarHowToProgramIt . . . . 2 matches
          * [http://python.org/ftp/python/2.2/Python-2.2.exe Python]
          * [ftp://ftp.kr.vim.org/pub/vim/pc/gvim60.exe gvim]
  • Telephone . . . . 2 matches
         http://zeropage.org/pub/WinMergeSetup.exe - winmerge
         c:\> telephone.exe
  • UbuntuLinux . . . . 2 matches
          Options Indexes MultiViews
         To install your own script, copy it to /etc/init.d, and make it executable.
  • VimSettingForPython . . . . 2 matches
          silent execute '!C:Vimvim62diff -a ' . opt . v:fname_in . ' ' . v:fname_new . ' > ' . v:fname_out
         map <F6> :!pythonw.exe "C:Python23Toolsidleidle.pyw"<CR>
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 2 matches
         LuaForWindows_v5.1.4-35.exe
         설치된경로를 따라 Eclipse의 Profiler말고 Interpreter로 lua.exe로 path를 설정해주면 Eclipse에서 Project를 만든뒤 출력되는 Lua파일을 볼수 있다.
  • XpWeek/20041220 . . . . 2 matches
          먼저 설치 : [http://zeropage.org/pub/language/java/j2re-1_4_2_01-windows-i586.exe Java 1.4.2]
          * [http://zeropage.org/pub/upload/Timer.exe Timer]
  • ZeroPageServer/set2002_815 . . . . 2 matches
          * 27일 오후에 suexec rename, cgiwrap설치후 삭제하고, suexec 복구하자 잘 동작
  • 데블스캠프2003/셋째날/J2ME . . . . 2 matches
         [http://165.194.17.15/pub/language/java/j2sdk-1_4_0_01-windows-i586.exe J2SE]
         [http://165.194.17.15/pub/language/j2me_wireless_toolkit-2_0-windows.exe wireless toolkit]
  • 데블스캠프2003/셋째날/여러가지언어들 . . . . 2 matches
         [http://165.194.17.15/~mulli2/Program/Python/Python-2.2.2.exe Python 2.2.2]
         [http://165.194.17.15/pub/language/plt-204.exe Scheme]
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 2 matches
          return exec(trim("file -bi ".escapeshellarg($f)));
          $buffer = shell_exec(trim("php ".escapeshellarg($to_read)));
  • 상협/삽질일지/2002 . . . . 2 matches
          * 나를 엄청나게 괴롭히던 삽질 해결.. 원인은 stmt.execute("SELECT * FROM Table1 WHERE ID = 'mID'"); 이 구문이었다. ㅠㅜ stmt.execute("SELECT * FROM Table1 WHERE ID = '"+ mID+"'"); 이렇게 해주어야 했던 것을... 잘못된 코드가 있으면 좀더 유심히 관찰해서 원인이 무엇인지 파악하는 버릇을 들여야 겠다. 너무 주먹 구구식으로 한거 같다. 어쨋든 찾아서 기쁘다.
  • 새싹교실/2012/주먹밥 . . . . 2 matches
          * 리다이렉션 > 표시는 현재 출력을 다른곳으로 돌릴때 쓴다고 했죠. 현재 이 test.exe파일을 실행시키면 5를 출력한다고 합니다
          test.exe > test.txt
  • 서지혜/단어장 . . . . 2 matches
          executables for stack architectures are invariably smaller than executables for register architectures.
  • 토비의스프링3/오브젝트와의존관계 . . . . 2 matches
          ps.executeUpdate();
          ResultSet rs = ps.executeQuery();
  • 튜터링/2013/Assembly . . . . 2 matches
          1. Instruction Execution Cycle을 도식하고, 설명하세요.
          4.다음 방식(indirect, indexed)로 코드를 작성하고, 설명하시오.
          indirect operands indexed operands
  • 파이썬으로익스플로어제어 . . . . 2 matches
          * [http://prdownloads.sourceforge.net/pywin32/pywin32-204.win32-py2.4.exe?download Python 2.4 버전]
          * [http://prdownloads.sourceforge.net/pywin32/pywin32-204.win32-py2.3.exe?download Python 2.3 버전]
  • 0PlayerProject . . . . 1 match
         [http://zeropage.org/~mulli2/SSHWinClient-3.1.0-build235.exe ssh win client] 제로 페이지 리눅스 계정 접속 프로그램
  • 2학기자바스터디/첫번째모임 . . . . 1 match
         [http://165.194.17.15/pub/language/java/j2sdk-1_4_2_01-windows-i586.exe]
  • 5인용C++스터디/다이얼로그박스 . . . . 1 match
          1-3 대화상자에서 MFC AppWizard[exe]를 선택을 하고, Location: 에 사용자가 생성시키고 싶은
  • 5인용C++스터디/떨림없이움직이는공 . . . . 1 match
         [http://165.194.17.15/~lsk8248/wiki/Study/5%c0%ce%bf%ebC++%bd%ba%c5%cd%b5%f0/%b6%b3%b8%b2%be%f8%b4%c2%bf%f2%c1%f7%c0%cc%b4%c2%b0%f8/Ball.exe 떨림없이움직이는공]
  • 5인용C++스터디/시계 . . . . 1 match
         [http://165.194.17.15/~lsk8248/wiki/Study/5%c0%ce%bf%ebC++%bd%ba%c5%cd%b5%f0/%bd%c3%b0%e8/Clock.exe 시계]
  • 5인용C++스터디/움직이는공 . . . . 1 match
         [http://165.194.17.15/~lsk8248/wiki/Study/5%c0%ce%bf%ebC++%bd%ba%c5%cd%b5%f0/%bf%f2%c1%f7%c0%cc%b4%c2%b0%f8/Ball.exe 움직이는공]
  • AI오목컨테스트2005 . . . . 1 match
         Upload:Omok.exe - 파이썬 AI와 대결하기 위해 소스를 약간 수정한 오목 실행파일
  • ALittleAiSeminar/Namsang . . . . 1 match
          def execute(self):
  • AM/20040712세번째모임 . . . . 1 match
          * 실습예 Upload:MoveBox.exe
  • APlusProject . . . . 1 match
         [http://zeropage.org/~erunc0/study/dp/RationalRose.exe RationalRose 2002]
  • AVG-GCC . . . . 1 match
         Usage: AVR-GCC.EXE [options] file... ''' 사용법 : AVR-GCC.EXE [옵션] FILE... '''[[BR]]
          -time Time the execution of each subprocess[[BR]]
         the various sub-processes invoked by AVR-GCC.EXE. In order to pass other options[[BR]]
  • AcceleratedC++/Chapter0 . . . . 1 match
          main 함수의 리턴형은 ISO/ANSI C++ 표준에서 int로 정하고 있다. 리턴값은 프로그램이 아무런 에러 없이 종료되는 경우에는 0을 리턴하도록 되어 있고, 에러가 발생해서 종료한 경우에는 0 이외의 값을 리턴하도록 되어있다. 이 값은 OS로 돌려지는 값이기는 하지만 OS에서 이것에 따라 특별히 처리하는 것은 없기 때문에 일반적인 경우에는 이 값은 아무런 의미가 없다. 이 값을 이용할수 있는 방법으로는 exec... 함수를 이용하여 프로그램을 실행해주고 받아오는 방법 등이 있다.
  • ActiveXDataObjects . . . . 1 match
         {{|Microsoft ADO (ActiveX Data Objects) is a Component object model object for accessing data sources. It provides a layer between programming languages and databases, which allows a developer to write programs which access data, without knowing how the database is implemented. No knowledge of SQL is required to access a database when using ADO, although one can use ADO to execute arbitrary SQL commands. The disadvantage of this is that this introduces a dependency upon the database.
  • Applet포함HTML/영동 . . . . 1 match
         * 음... HTML 컨버터로 컨버트하긴 했는데 ftp사용법을 몰라서 계정에 올리는 법을 모르겠네요. 그러한 관계로, 상욱이처럼 파일 내용만 올릴게요. ftp쓰는 법 배워서 링크시킬게요... [http://165.194.17.15/pub/util/WinSCP2.exe WinSCP 2.0 Beta]
  • Cpp/2011년스터디 . . . . 1 match
         참고 : 경악스러운 문제의 그 릴리즈 http://pds22.egloos.com/pds/201108/21/51/Tetris-rino2.exe
  • CppUnit . . . . 1 match
         Error executing link.ex
  • CubicSpline/1002 . . . . 1 match
          * Python - [http://python.org/ftp/python/2.2.1/Python-2.2.1.exe Python 2.2.1]
  • D3D . . . . 1 match
         실행 파일: http://zp.cse.cau.ac.kr/~erunc0/study/d3d/potentialFunc.exe
  • DebuggingSeminar_2005 . . . . 1 match
          || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/_core_viewing_decorated_names.asp undname.exe] || C++ Name Undecorator, Map file 분석툴 ||
  • DebuggingSeminar_2005/UndName . . . . 1 match
         DLL 파일에 의해서 분석된 내용을 보면 DLL 에 함수의 이름이 이상하게(?) 변형되어 있는것을 확인하실 수 있는데(DUMPBIN.EXE 를 통해서 가능합니다.) 이 이름의 원형을 알고 싶을때가 있습니다. 그럴때 undname.exe 라는 파일을 사용하시면 아주 쉽게 확인해 보실 수 있습니다.
  • DevCpp . . . . 1 match
         zp 내 링크. http://zeropage.org/pub/util/devcpp-4.9.9.2_setup.exe
  • DevCppInstallationGuide . . . . 1 match
         다운 로드 - http://zeropage.org/pub/util/devcpp-4.9.9.2_setup.exe
  • DevPartner . . . . 1 match
         DPP70.exe (VC.NET에만 설치할 수 있습니다. 주의하세요!) 를 실행합니다. 거의 한 클릭에 끝납니다.
  • DirectX2DEngine . . . . 1 match
          * SDK는 이 주소로 받으세요 : [http://www.microsoft.com/downloads/info.aspx?na=90&p=&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=1FD20DF1-DEC6-47D0-8BEF-10E266DFDAB8&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f5%2ff%2fd%2f5fd259d5-b8a8-4781-b0ad-e93a9baebe70%2fdxsdk_jun2006.exe DOWNLOAD]
  • DylanProgrammingLanguage . . . . 1 match
         Dylan is an advanced, object-oriented, dynamic language which supports rapid program development. When needed, programs can be optimized for more efficient execution by supplying more type information to the compiler. Nearly all entities in Dylan (including functions, classes, and basic data types such as integers) are first class objects. Additionally Dylan supports multiple inheritance, polymorphism, multiple dispatch, keyword arguments, object introspection, macros, and many other advanced features... --Peter Hinely
  • Eclipse와 JSP . . . . 1 match
         eclipse.exe 실행
  • EightQueenProblem/da_answer . . . . 1 match
         == Project2.exe (Delphi) ==
  • EightQueenProblemDiscussion . . . . 1 match
         Note that the d=(e-=d)&-e; statement can be compiled wrong on certain compilers. The inner assignment should be executed first. Otherwise replace it with e-=d,d=e&-e;.
  • Emacs . . . . 1 match
          * 해당 패키지 줄에서 i(install)로 설치할 패키지의 선택, d(delete)로 지울 패키지 선택, x(execute)로 선택된 작업들 실행.
  • FastSearchMacro . . . . 1 match
         5000여개의 파일이 있을 때 FastSearch는 2초 걸렸다. php는 파일 처리속도가 늦다는 이유로 FullSearchMacro를 쓰면 약 15여초 걸린다. 그 대신에, wiki_indexer.pl은 하루에 한두번정도 돌려야 되며, 5분여 동안의 시간이 걸린다.
  • FocusOnFundamentals . . . . 1 match
         The many good ideas that underlie these approaches and tools must be taught. Laboratory exercises
  • GDBUsage . . . . 1 match
         (gdb) exec-file pipe3
         Execute the rest of the line as a shell command.
  • GIMP . . . . 1 match
          * [http://plasticbugs.com/?page_id=294 GIMPShop] : script-fu.exe 에러 해결. 백그라운드 윈도우 제공. 포토샵 단축키 제공.
  • HeadFirstDesignPatterns . . . . 1 match
         - I received the book yesterday and I started to read it on the way home... and I couldn't stop, took it to the gym and I expect people must have seen me smile a lot while I was exercising and reading. This is tres "cool". It is fun but they cover a lot of ground and in particular they are right to the point.
  • HighResolutionTimer . . . . 1 match
         The '''QueryPerformanceCounter''' function retrieves the current value of the high-resolution performance counter (if one exists on the system). By calling this function at the beginning and end of a section of code, an application essentially uses the counter as a high-resolution timer. For example, suppose that '''QueryPerformanceFrequency''' indicates that the frequency of the high-resolution performance counter is 50,000 counts per second. If the application calls '''QueryPerformanceCounter''' immediately before and immediately after the section of code to be timed, the counter values might be 1500 counts and 3500 counts, respectively. These values would indicate that .04 seconds (2000 counts) elapsed while the code executed.
  • InsideCPU . . . . 1 match
         음...여기까지만..귀찮아서 못 적겠다.. 보통 플로피의 0번 섹터를 write하기 위해 rawrite.exe란 프로그램을 쓴다. 플로피의 데이타를 얻기 위해 BIOS의 인터럽트루틴을 사용한다. 이를 위한 인터럽트는 INT 13h가 된다.
  • InterMap . . . . 1 match
         ISBN http://www.amazon.com/exec/obidos/ISBN=
  • JavaScript/2011년스터디/김수경 . . . . 1 match
          // remove it when we're done executing
  • JavaScript/2011년스터디/윤종하 . . . . 1 match
          // Use a self-executed anonymous function to induce scope
  • JavaStudy2004/자바따라잡기 . . . . 1 match
          * http://zeropage.org/~iruril/jdk-1_5_0_01-windows-i586-p.exe
  • LUA_1 . . . . 1 match
         루아의 공식 사이트는 http://www.lua.org/ 입니다. 하지막 MS-Windows 환경에서 루아를 시작하고 싶으시다면 http://code.google.com/p/luaforwindows/ 에서 루아 프로그램을 다운 받으실 수 있습니다. 우선 MS-Windows 환경이라고 가정하고 앞서 말한 사이트의 Download 페이지에서 LuaForWindows_v5.1.4-45.exe 를 다운 받습니다. 나중에는 버전명이 바뀐 바이너리 파일이겠죠. 이 파일을 다운로드 받아서 설치하면 시작>Programs>Lua>Lua (Command Line) 를 찾아 보실 수 있습니다. 해당 프로그램을 실행하면 Command 화면에 ">" 와 같은 입력 프롬프트를 확인하실 수 있습니다. 그럼 간단히 Hello world를 출력해 볼까요?
  • LinuxProgramming/SignalHandling . . . . 1 match
          SIGSTOP - stop executing
  • MajorMap . . . . 1 match
         ALU is is a part of the execution unit, a core component of all CPUs. ALUs are capable of calculating the results of a wide variety of basic arithmetical computations such as integer and floating point arithmetic operation(addition, subtraction, multiplication, and division), bitwise logic operation, and bit shitf operation. Therefore the inputs to the ALU are the data to be operated on (called operands) and a code from the control unit indicating which operation to perform. Its output is the result of the computation.--from [http://en.wikipedia.org/wiki/ALU]
  • MatrixAndQuaternionsFaq . . . . 1 match
          of the matrix are indexed by the following row:column pairs:
  • MicrosoftFoundationClasses . . . . 1 match
          Debug/ex13_01.exe : fatal error LNK1120: 2 unresolved externals''
  • MineFinder . . . . 1 match
         Module Statistics for minerfinder.exe
  • MoinMoinFaq . . . . 1 match
          * You need a GNU diff executable in your webserver's PATH. Note that the PATH of your webserver might be much shorter than the PATH you are used to from your shell.
  • MoniWikiOptions . . . . 1 match
          * 기본값은 `'png|jpg|jpeg|gif|mp3|zip|tgz|gz|txt|css|exe|hwp|pdf'`
  • MoniWikiPo . . . . 1 match
         msgid "Only WikiMaster can execute rcs"
  • MoreEffectiveC++/Efficiency . . . . 1 match
         라이브러리 디자인은 프로그램 제작 과정에서의 중간물이다.(an exercise in compromise) 이상적인 라이브러리는 작아야 하고, 힘있고(powerful), 유연하며, 확장성있고, 명시적이고, 범용적이고, 지원이 좋와야 하고, 사용 자약에 자유로워야 하고, 버그가 없어야 한다. 물론 존재 하지 않는다. 용량이나, 속도에 최적화된 라이브러리들은 보통 이동하기에 어렵다.(portable:다른 하드웨어 간에 이식하기 어렵다 정도의 의미) 풍부한 기능들을 가진 라이브러리는 직관적이지 못하다. 버그가 없는 라이브러리는 일정 부분에 제약이 있다. 실세계에서 우리는 모든것을 만족 시키지는 못한다.;항상 특정한 어떤것을 추구하게 된다.
  • MySQL 설치메뉴얼 . . . . 1 match
          $MYSQL = '/usr/local/bin/mysql'; # path to mysql executable
  • NUnit/C++예제 . . . . 1 match
          * NUnit이 깔린 폴더의 bin안에 보면 NUnit-gui.exe을 실행한다. 컴파일해서 나온 dll을 로딩해주고 run하면 테스트들을 실행해준다.
  • OpenGL_Beginner . . . . 1 match
          * 2.04 : Chapter 5장 예제 작성 [http://zeropage.org/~neocoin/Robot_2002.02.04.exe Robot]
  • OpenGL스터디_실습 코드 . . . . 1 match
         //exectly half of width and height
  • OptimizeCompile . . . . 1 match
         e.g. instruction prefetching, branch prediction, out-of-order execution
  • PHPStudy2005 . . . . 1 match
          * [http://165.194.17.15/~namsangboy/wikiProject/rwapm.exe rwapm]
  • ProgrammingLanguageClass/Report2002_2 . . . . 1 match
         Be sure to design carefully your test data set to exercise your program completely. You are also recommended in your documentation to include the rationale behind your test programs.
  • ProjectPrometheus/CookBook . . . . 1 match
          ResultSet rs = stmt.executeQuery("......... some query statement ...................");
  • ProjectZephyrus/간단CVS사용설명 . . . . 1 match
          '''1. 패스 설정로 하기''' Autoexec.bat 에서
  • Python/DataBase . . . . 1 match
         cur.execute("select * from owiki_page_name")
  • PythonForStatement . . . . 1 match
         These represent finite ordered sets indexed by non-negative numbers. The built-in function len() returns the number of items of a sequence. When the length of a sequence is n, the index set contains the numbers 0, 1, ..., n-1. Item i of sequence a is selected by a[i].
  • R'sSource . . . . 1 match
         import py2exe
  • RUR-PLE . . . . 1 match
          * [http://prdownloads.sourceforge.net/wxpython/wxPython2.6-win32-unicode-2.6.1.0-py24.exe wxPython다운로드]
  • RedThon . . . . 1 match
          [http://165.194.17.15/pub/language/python/Python-2.3.exe 파이선 받기]
  • Refactoring/SimplifyingConditionalExpressions . . . . 1 match
          * A method has conditional behavior that does not make clear the normal path of execution [[BR]] ''Use guard clauses for all the special cases.''
  • Ruby/2011년스터디/서지혜 . . . . 1 match
          pe32.szExeFile, pe32.th32ProcessID, pe32.cntThreads, pe32.th32ParentProcessID);
          TCHAR *targetProcess = _T("NateOnMain.exe"); // 종료하려는 프로세스의 이름을 쓴다
          if(0 == _tcscmp(pe32.szExeFile, target)){
  • SVN/Server . . . . 1 match
          * [http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91] 에서 svn-1.3.1-setup.exe 다운 받아서 설치
  • SimpleTextIndexerUsingSQLite . . . . 1 match
         Upload:indexer.zip
  • SubVersionPractice . . . . 1 match
         [http://subversion.tigris.org/files/documents/15/25364/svn-1.2.3-setup.exe Download Subversion]
  • TeachYourselfProgrammingInTenYears . . . . 1 match
         execute single instruction 1 nsec = (1/1, 000,000,000) sec
  • TellVsAsk . . . . 1 match
         you can then progress naturally to specifying commands that the class may execute, as opposed to queries
  • TestDrivenDatabaseDevelopment . . . . 1 match
          ResultSet rs = pstmt.executeQuery();
  • TheWarOfGenesis2R . . . . 1 match
          * [http://zeropage.org/pub/Genesis2R/BasicMovement.exe 실행파일]
  • TkinterProgramming/Calculator2 . . . . 1 match
          exec code in self.myNameSpace, self.myNamespace
  • TortoiseSVN/IgnorePattern . . . . 1 match
         */debug *\debug */Debug *\Debug */Release *\Release */release *\release *.obj *.pdb *.pch *.ncb *.suo *.bak *.tmp *.~ml *.class Thumbs.db *.o *.exec ~*.* *.~*
  • UploadFile . . . . 1 match
         기본값은 {{{$pds_allowed}}}를 정하지 않았을 경우 {{{'png|jpg|jpeg|gif|mp3|zip|tgz|gz|txt|css|exe|hwp'}}}로 내정됩니다.
  • UploadFileMacro . . . . 1 match
         $pds_allowed="png|jpg|jpeg|gif|mp3|zip|tgz|gz|txt|css|exe|hwp|pdf|flv";
  • WikiSandPage . . . . 1 match
         Upload:putty_h.exe
  • WikiSlide . . . . 1 match
         === Exercises ===
         For the exercises we use your own Wiki-homepage which is usually based on a WikiName `FirstnameLastname`:
  • WikiTextFormattingTestPage . . . . 1 match
         http://narasimha.tangentially.com/cgi-bin/n.exe?twiky%20editWiki(%22WikiEngineReviewTextFormattingTest%22)
  • YongAn처음화면 . . . . 1 match
         [파이썬->exe]
  • ZPBoard/APM/Install . . . . 1 match
          * Apache를 다운 받아 설치한다. (http://www.apache.org/dist/httpd/binaries/win32/apache_1.3.26-win32-x86-no_src.exe)
  • ZeroPageServer/계정신청상황 . . . . 1 match
         * ''' 접속시 주의사항''' : ["ZeroPageServer/set2002_815"]에서는 ssh2 텔넷을 지원합니다. 접속시 [http://zeropage.org/pub/util/putty.exe putty]나, 접속하실때 ssh2 지원 client를 사용하세요. ssh1전용인 zterm은 작동하지 않습니다.
  • ZeroPage_200_OK . . . . 1 match
          * 자바스크립트에서 자주 this 얘기가 나오던데, 이번에 이야기를 들을 수 있어서 좋았습니다. 개인적인 느낌을 말하자면 함수가 데이터로 취급되는데 함수 내부에서 함수를 호출한 객체(execution context)의 정보를 사용하기 위해서 this를 사용한다는 느낌이는데 맞는지 모르겠군요. p.print를 넘기는 것도 실제로 class p에 있는 함수를 넘기는 게 아니라 p.print에 바인딩 된 어떤 함수를 넘기는 것이니까 내부의 this가 기존 OOP와 같이 해당 class의 인스턴스는 될 수 없겠죠. 그리고 제일 마음에 들었던 것은 역시 예전에 했던 스터디에서 다뤘던 자바스크립트의 네 가지 특징에 대해서 들을 수 있었다는 점이었습니다. 사실 예전 스터디 떄 무척 듣고 싶었는데 개인적인 사정으로 참가를 할 수 없어서 꽤 아쉬웠던 터라 ;;; 마지막에는 개인적인 사정으로 시간이 안 맞아서 좀 급하게 나갔는데, 그래도 최대한 들을 수 있는 데까지 듣기를 잘 한 것 같은 느낌이 들었습니다. - [서민관]
  • django/RetrievingObject . . . . 1 match
          cursor.execute(query, [depart_id])
  • erunc0/PhysicsForGameDevelopment . . . . 1 match
          * Release - http://zp.cse.cau.ac.kr/~erunc0/study/physics/Particle_Test.exe
  • html5/richtext-edit . . . . 1 match
         http://www.quirksmode.org/dom/execCommand/
  • pragma . . . . 1 match
         Each implementation of C and C++ supports some features unique to its host machine or operating system. Some programs, for instance, need to exercise precise control over the memory areas where data is placed or to control the way certain functions receive parameters. The #pragma directives offer a way for each compiler to offer machine- and operating-system-specific features while retaining overall compatibility with the C and C++ languages. Pragmas are machine- or operating-system-specific by definition, and are usually different for every compiler.
  • stuck!! . . . . 1 match
         zp 내 링크. http://zeropage.org/pub/util/devcpp-4.9.9.2_setup.exe
  • 고한종/십자가돌리기 . . . . 1 match
         http://pds22.egloos.com/pds/201104/17/51/JT.exe
  • 공학적마인드 . . . . 1 match
          * '공학적 마인드'라는 키워드 검색 결과 : [http://www.google.co.kr/search?hl=ko&ie=UTF-8&newwindow=1&q=%EA%B3%B5%ED%95%99%EC%A0%81+%EB%A7%88%EC%9D%B8%EB%93%9C&btnG=%EA%B5%AC%EA%B8%80+%EA%B2%80%EC%83%89&lr= 구글][http://search.naver.com/search.naver?where=nexearch&query=%B0%F8%C7%D0%C0%FB+%B8%B6%C0%CE%B5%E5&frm=t1&x=0&y=0 네이버][http://search.empas.com/search/all.html?s=&f=&z=A&q=%B0%F8%C7%D0%C0%FB+%B8%B6%C0%CE%B5%E5 엠파스][http://kr.search.yahoo.com/search?fr=kr-front&KEY=&p=%B0%F8%C7%D0%C0%FB+%B8%B6%C0%CE%B5%E5 야후]
  • 권영기 . . . . 1 match
          * [정모/2013.2.26] - OMS : 재미있는 문제 (Indexed Binary Tree)
  • 김희성 . . . . 1 match
          * 7z는 확장자가 exe일 떄, 다중 압축도 임의로 푼다는 것을 알아내었습니다. 압축을 풀 때 주의해야할듯 합니다.(3/17)
  • 넥슨입사문제 . . . . 1 match
         Upload:NexenProblems.hwp
  • 단식자바 . . . . 1 match
         [Java], [http://zeropage.org/~iruril/jdk-1_5_0_01-windows-i586-p.exe ZP pub의 JDK]
  • 덜덜덜/숙제제출페이지 . . . . 1 match
         고쳤었요~~ "average.exe(ver.2.301)"<-이거 그럴듯 하죠?ㅋㅋㅋ- [정윤선]
  • 데블스캠프2003/넷째날/Linux실습 . . . . 1 match
         [http://zeropage.org/pub/util/putty.exe putty Client]
  • 데블스캠프2005/VPython . . . . 1 match
         http://vpython.org/download/VPython-Win-Py2.4-3.2.2.exe 설치
  • 데블스캠프2005/게임만들기 . . . . 1 match
         Upload:Tetris_tool.exe
  • 데블스캠프2006/SSH . . . . 1 match
          * SSH download : http://zerowiki.dnip.net/~namsangboy/ssh.exe
  • 데블스캠프2010/Prolog . . . . 1 match
          * [http://lakk.bildung.hessen.de/netzwerk/faecher/informatik/swiprolog/indexe.html Editor]
  • 데블스캠프2011/네째날/이승한 . . . . 1 match
          * [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
  • 데블스캠프2011/넷째날/Git . . . . 1 match
          * [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
  • 레밍즈프로젝트/프로토타입/에니메이션 . . . . 1 match
         Upload:beonit.exe
  • 리눅스연습 . . . . 1 match
         [http://openlook.org/distfiles/PuTTY/putty.exe putty]
  • 바퀴벌레에게생명을 . . . . 1 match
         실행파일: Upload:rkdRandomWalk.exe
  • 비행기게임 . . . . 1 match
          게임 그래픽 부분이 만만치 않긴 하지.. 흐흐. 스프라이트 그리는 사람이 고충이 생각보다 많음. 안티 엘리어싱 부분의 경우 투명색이 제대로 처리가 되지 않기 때문에 도트노가다를 해주어야 하거든. 나의 경우 포토샵으로 일단 트루컬러로 그린뒤 그것을 256 indexed color 로 바꾸고 투명색 하나 넣어서 도트노가다 해주는 식이거나, 또는 아에 3D 툴로 그리던지. (3D 툴로 모델링하고 렌더링시에 웬만한 툴들은 alpha channel 을 따로 저장하거든. 그래서 3D 툴로 만든건 안티 엘리어싱 문제를 그리 의식하지 않음.) 또는 아에 엔진 자체가 3D이고 스프라이트들이 3D 이던지지만 이건 논의 대상 밖이겠군; 해성이의 경우는 원래 도트 노가다에 일가견이 있기에 뭐 전부 그려주긴 했고;
  • 삼총사CppStudy/20030806 . . . . 1 match
          * friend 함수를 위해서는 VS 6.0 sp 5를 깔아야 한다.[http://download.microsoft.com/download/vstudio60ent/SP5/Wideband-Full/WIN98Me/KO/vs6sp5.exe]
  • 새싹교실/2011 . . . . 1 match
          프로그래밍 단계(code 작성->compile->link->generating .exe file)
  • 새싹교실/2011/學高/1회차 . . . . 1 match
          * 프로그래밍 과정 : program edit -> compile -> execution ※에러나면 맨 처음으로
  • 새싹교실/2011/쉬운것같지만쉬운반/2011.3.23 . . . . 1 match
          3. .exe 파일 생성
  • 새싹교실/2012/우리반 . . . . 1 match
          * printf,\n,\t,\a,\\,\",return 0; in main,compile, link, scanf, int ==> variables, c=a+b;, %d, + => operator, %,if, ==, !=, >=, else, sequential execution, for, a?b:c, total variable, counter variable, garbage value, (int), 연산우선순위, ++a a++ pre/post in/decrement operator, math.h // pow,%21.2d, case switch, break, continue, logical operator || && ! 등.
  • 새싹교실/2013/라이히스아우토반/1회차 . . . . 1 match
          1. 이 기계어에 다른 필요한 이것저것 기타등등이 붙으면 실행파일이 된다. (윈도우 환경에서는 .exe가 바로 실행파일)
  • 알고리즘2주숙제 . . . . 1 match
         4. (Homework exercises) How many spanning trees are in an n-wheel( a graph with n "outer" verices in a cycle, each connected to an (n+1)st "hub" vertex), when n >= 3?
  • 알고리즘3주숙제 . . . . 1 match
         = Exercises =
         [http://pages.cpsc.ucalgary.ca/~jacobs/Courses/cpsc413/W05/labs/DivideConquer.pdf Divide and conquer lab exercises]
  • 오목/민수민 . . . . 1 match
         Upload:민수민오목.exe
  • 오목/재선,동일 . . . . 1 match
         Upload:재선동일오목.exe
  • 오목/진훈,원명 . . . . 1 match
         Upload:진훈원명오목.exe
  • 이영호/한게임 테트리스 . . . . 1 match
         tet3.exe Crack.
  • 인상깊은영화 . . . . 1 match
         http://search.naver.com/search.naver?where=nexearch&query=%C8%F7%B3%EB%C5%B0%BF%C0&sm=tab_hty
  • 임인택/Temp . . . . 1 match
         http://zeropage.org/~dduk/dcmp/wxPython2.6-win32-unicode-2.6.0.1-py24.exe
  • 정모/2006.1.19 . . . . 1 match
         Upload:Omok.exe
  • 제로Wiki . . . . 1 match
          * [http://165.194.17.5/~namsangboy/ssh.exe ssh다운받기]
  • 조현태/놀이/지뢰파인더 . . . . 1 match
         지뢰파인더 1.0v - Upload:MineFinder.exe
  • 창섭 . . . . 1 match
         [http://165.194.17.15/pds/200232993449/SSHWinClient-3.1.0-build235.exe ssh 접속프로그램][[BR]]
  • 프로그래밍 . . . . 1 match
         준비물 : [http://zeropage.org/pub/upload/Timer.exe 타이머]
  • 프로그래밍잔치/셋째날 . . . . 1 match
          관련 화일 : [http://zeropage.org/pub/WinMergeSetup.exe winmerge(화일비교프로그램)]
  • 프로그램내에서의주석 . . . . 1 match
         내가 가지는 주석의 관점은 지하철에서도 언급한 내용 거의 그대로지만, 내게 있어 주석의 주된 용도는 과거의 자신과 대화를 하면서 집중도 유지, 진행도 체크하기 위해서 이고, 기타 이유는 일반적인 이유인 타인에 대한 정보 전달이다. 전자는 command.Command.execute()이나 상규와 함께 달은 information.InfoManager.writeXXX()위의 주석들이고,후자가 주로 쓰인 용도는 각 class 상단과 package 기술해 놓은 주석이다. 그외에 class diagram은 원래 아나로그로 그린것도 있지만, 설명하면서 그린건 절대로 타인의 머리속에 통째로 저장이 남지 않는다는 전제로, (왜냐면 내가 그러니까.) 타인의 열람을 위해 class diagram의 디지털화를 시켰다. 하는 김에 그런데 확실히 설명할때 JavaDoc뽑아서 그거가지고 설명하는게 편하긴 편하더라. --["상민"]
Found 216 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.3928 sec