E D R , A S I H C RSS

Full text search for "sp"

sp


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 비행기게임/BasisSource . . . . 73 matches
         class Player(pygame.sprite.Sprite):
          speed = 4
          pygame.sprite.Sprite.__init__(self,self.containers)
          self.rect.move_ip(directionx*self.speed,directiony*self.speed)
          self.rect.move_ip(directionx*self.speed,0)
          self.rect.move_ip(0,directiony*self.speed)
         class Shots(pygame.sprite.Sprite) :
          speedx = -10
          speedy = 0
          def __init__(self, pos, kind, speedy=0) :
          pygame.sprite.Sprite.__init__(self, self.containers)
          self.speedy = speedy
          self.rect.move_ip(self.speedx, self.speedy)
          speedx = 7
          speedy = 0
          speedIncreaseRateOfY = 0.1
          pygame.sprite.Sprite.__init__(self, self.containers)
          self.speedy+=self.speedIncreaseRateOfY
          self.speedy-=self.speedIncreaseRateOfY
          self.rect.move_ip(self.speedx,self.speedy)
  • WikiTextFormattingTestPage . . . . 66 matches
         This page originated on Wiki:WardsWiki, and the most up-to-date copy resides there. This page has been copied here in order to make a quick visual determination of which TextFormattingRules work for this wiki. Currently it primarily determines how text formatted using the original Wiki:WardsWiki text formatting rules is displayed. See http://www.c2.com/cgi/wiki?WikiOriginalTextFormattingRules.
          This line, prefixed with one or more spaces, should appear as monospaced text. Monospaced text does not wrap.
          'This text, enclosed within in 1 set of single quotes and preceded by one or more spaces, should appear as monospaced text surrounded by 1 set of single quotes.'
          ''This text, enclosed within in 2 sets of single quotes and preceded by one or more spaces, should appear in monospaced italics.''
          '''This text, enclosed within in 3 sets of single quotes and preceded by one or more spaces, should appear in monospaced bold face type.'''
          ''''This text, enclosed within in 4 sets of single quotes and preceded by one or more spaces, should appear in monospaced bold face type surrounded by 1 set of single quotes.''''
          '''''This text, enclosed within in 5 sets of single quotes and preceded by one or more spaces, should appear in monospaced bold face italics.'''''
          ''''''This text, enclosed within in 6 sets of single quotes and preceded by one or more spaces, should appear as monospaced normal text.''''''
          This line, prefixed with one or more spaces, should appear as monospaced text.
         The next phrase, even though enclosed in triple quotes, '''will not display in bold because
         The next phrase, even though enclosed in triple quotes, '''will not display in bold because
          * Top level, preceded by <tab>*<space>, appears indented 4 spaces with a solid circular bullet.
          * Second level, preceded by <tab><tab>*<space>, appears indented 8 spaces with a hollow circular bullet.
          * Third level, preceded by <tab><tab><tab>*<space>, appears indented 12 spaces with a solid square bullet.
          * Fourth level, preceded by <tab><tab><tab><tab>*<space>, appears indented 16 spaces with a solid square bullet.
          * Fifth level, preceded by <tab><tab><tab><tab><tab>*<space>, appears indented 20 spaces with a solid square bullet.
          * Sixth level, preceded by <tab><tab><tab><tab><tab><tab>*<space>, appears indented 24 spaces with a solid square bullet.
          * Seventh level, preceded by <tab><tab><tab><tab><tab><tab><tab>*<space>, appears indented 28 spaces with a solid square bullet.
          * Eighth level, preceded by <tab><tab><tab><tab><tab><tab><tab><tab>*<space>, appears indented 32 spaces with a solid square bullet.
          * Ninth level, preceded by <tab><tab><tab><tab><tab><tab><tab><tab><tab>*<space>, appears indented 36 spaces with a solid square bullet.
  • LC-Display/곽세환 . . . . 64 matches
         using namespace std;
         bool display[8][7]; // 최대 8자리, 한 숫자를 나타내는데 필요한 선은 7개
         void makeDisplay(string n) // 수를 입력받음
          display[i][j] = false;
          display[i][2] = display[i][5] = true;
          display[i][0] = display[i][2] = display[i][3] = display[i][4] = display[i][6] = true;
          display[i][0] = display[i][2] = display[i][3] = display[i][5] = display[i][6] = true;
          display[i][1] = display[i][2] = display[i][3] = display[i][5] = true;
          display[i][0] = display[i][1] = display[i][3] = display[i][5] = display[i][6] = true;
          display[i][0] = display[i][1] = display[i][3] = display[i][4] = display[i][5] = display[i][6] = true;
          display[i][0] = display[i][2] = display[i][5] = true;
          display[i][0] = display[i][1] = display[i][2] = display[i][3] = display[i][4] = display[i][5] = display[i][6] = true;
          display[i][0] = display[i][1] = display[i][2] = display[i][3] = display[i][5] = display[i][6] = true;
          display[i][0] = display[i][1] = display[i][2] = display[i][4] = display[i][5] = display[i][6] = true;
         void showDisplay(int s, int length) // 크기와 자리수를 입력받음
          if (display[k][0])
          if (display[k][1])
          if (display[k][2])
          if (display[k][3])
          if (display[k][4])
  • MatrixAndQuaternionsFaq . . . . 61 matches
         Q8. What is the transpose of a matrix?
         Q51. How do I convert a spherical rotation angles to a quaternion?
         Q52. How do I convert a quaternion to a spherical rotation angles?
          transposed with respect to OpenGL.
          matrices respectively.
          operations, but perspective depth projection is performed using
          such as multiplication and perspective depth projection can be
          9 and 16 data elements respectively.
          for the implementation of character animation, spline curves and inverse
          X, Y and Z axii respectively.
         === Q8. What is the transpose of a matrix? ===
          The transpose of matrix is the matrix generated when every element in
          Then the transpose is equal to:
          If the matrix is a rotation matrix, then the transpose is guaranteed
          by itself a specific number of times.
          16 addition and 1 division operation (for perspective).
          to implement inverse kinematics using spline curves.
          inverse is already known or can be determined from taking the transpose
          calculating the inverse is equivalent of calculating the transpose.
          the base matrix for splines, inverse rotations and rearranging matrix
  • RandomWalk/동기 . . . . 57 matches
         using namespace std;
          int spawnX = rand()%size;
          int spawnY = rand()%size;
          data[spawnY][spawnX]++;
          spawnY--;
          spawnX--;
          if (spawnX>=0 && spawnY>=0)
          data[spawnY][spawnX]++;
          spawnY++;
          spawnX++;
          spawnY--;
          if (spawnY>=0)
          data[spawnY][spawnX]++;
          spawnY++;
          spawnY--;
          spawnX++;
          if (spawnY>=0 && spawnX<=MAX)
          data[spawnY][spawnX]++;
          spawnY++;
          spawnX--;
  • LispLanguage . . . . 41 matches
          * Functional Language. [:인공지능 AI] 등에 많이 쓰인다. [Scheme] 은 LispLanguage 의 방언.
          * 나무위키의 설명(덕질은 위대하다): https://namu.wiki/w/LISP
          * Common LISP wikibooks: https://en.wikibooks.org/wiki/Common_Lisp
          * 영문 LISP 튜토리얼 중에서 뉴비에게 가장 친절해 보이는 설명서. 하지만 미완성이다.
          * TutorialsPoint LISP: http://www.tutorialspoint.com/lisp/index.htm
          * emacs 강좌 - lisp 이해하기 1: http://ageofblue.blogspot.kr/2012/01/emacs-lisp-1.html
          * emacs라는 IDE는 lisp을 통해 제어할 수 있다. 심지어 거대한 lisp 인터프리터라고 불리기까지 한다. 이 글은 비록 emacs를 쓰기 위해 부가적으로 lisp을 설명하는 수준이지만, 몇 안되는 한국어 lisp 설명글이므로 참고를 위해 링크를 걸어 둔다.
          * Practical Common LISP: http://www.gigamonkeys.com/book/
          * [http://c2.com/cgi/wiki?CommonLispUnit CommonLispUnit]
          * [http://mypage.iu.edu/~colallen/lp/lp.html Lisp Prime] - 책인듯
          * [http://dept-info.labri.fr/~strandh/Teaching/Programmation-Symbolique/Common/David-Lamkins/contents.html Successful Lisp:How to Understand and Use Common Lisp] - 책인듯(some 에 대한 설명 있음)
         [http://www.peter-herth.de/ltk/ The Lisp Toolkit]
         [http://www.lispworks.com/products/clim.html Common Lisp Interface Manager]
         [http://www.lispworks.com/products/capi.html CAPI]
         [http://www.frank-buss.de/lisp/clim.html CLIM sample]
         clisp에서
         (dribble "/home/test.lisp")
         필요시 clisp에서 (load "/home/test.lisp")을 하면 로드됨}}}
         clisp에서
         하면 세션이 lispinit.mem으로 저장됨
  • LinkedList/영동 . . . . 39 matches
         using namespace std;
         void displayList(Node * argNode); //Function which displays the elements of linked list
          displayList(firstAddress);
         void displayList(Node * argNode)
         using namespace std;
         #define MAX_OF_LIST 8 //Maximum number of linked list and free space list
         void displayList(Node * argNode); //Function which displays the elements of linked list
         void eraseLastNode(Node * argNode, Node ** argFreeNode, int * argNumberOfList, int * argNumberOfFreeSpace);//Function which deletes the last node of the list
         void getNode(Node * argNode, Node ** argFreeNode, int * argNumberOfList, int * argNumberOfFreeSpace);//Function which takes the node from free space list
         void returnNode(Node * argNode, Node ** argFreeNode, int * argNumberOfList, int * argNumberOfFreeSpace);//Function which return a node of linked list to free space list
          int elementsOfFreeSpaceList=0;
          Node * freeSpaceList=NULL;//Create free space list
          displayList(firstAddress);
          displayList(firstAddress);//Display reversed list
          eraseLastNode(firstAddress, &freeSpaceList, &elementsOfLinkedList, &elementsOfFreeSpaceList);
          eraseLastNode(firstAddress, &freeSpaceList, &elementsOfLinkedList, &elementsOfFreeSpaceList);
          eraseLastNode(firstAddress, &freeSpaceList, &elementsOfLinkedList, &elementsOfFreeSpaceList);
          eraseLastNode(firstAddress, &freeSpaceList, &elementsOfLinkedList, &elementsOfFreeSpaceList);
          displayList(firstAddress);//Display the linked list with modified data
          displayList(freeSpaceList);//Display free space list with deleted data from linked list
  • PrettyPrintXslt . . . . 36 matches
          <span class="xmlverb-element-nsprefix">
          </span>
          <span class="xmlverb-element-name">
          </span>
          <xsl:variable name="pns" select="../namespace::*"/>
          <xsl:if test="$pns[name()=''] and not(namespace::*[name()=''])">
          <span class="xmlverb-ns-name">
          </span>
          <xsl:for-each select="namespace::*">
          <span class="xmlverb-element-nsprefix">
          </span>
          <span class="xmlverb-element-name">
          </span>
          <span class="xmlverb-attr-name">
          </span>
          <span class="xmlverb-attr-content">
          <xsl:with-param name="text" select="normalize-space(.)" />
          </span>
          <!-- namespace nodes -->
          <span class="xmlverb-ns-name">
  • LIB_3 . . . . 32 matches
         WAIT 와 SUSPEND 그리고 FREE 큐로 나누어 질 수 있다.
         SUSPEND는 인터럽트를 대기하던가? 아님 뭔가를 기다리기 위해 실행이 중지된 상태? 자원이겠찌?
          pSuspend_heap[count] = NULL;
          suspend_tcb_ptr = 0;
         SUSPEND 된 TASK 들을 다시 살려주는 고마운 펑션
          for ( int i = 0; i<= suspend_tcb_ptr ; i++ ) {
          if ( pSuspend_heap[i]->priority == priority ) {
          pReady_heap[ready_tcb_ptr] = pSuspend_heap[i];
          pSuspend_heap[i] = pSuspend_heap[suspend_tcb_ptr];
          pSuspend_heap[suspend_tcb_ptr] = NULL;
          suspend_tcb_ptr--;
         SUSPEND 큐에 넣어주고
         void LIB_suspend_task(INT16U priority){
          // ready -> suspend
          pSuspend_heap[++suspend_tcb_ptr] = pReady_heap[i];
          if ( pSuspend_heap[i] == task) {
          pFreeTCB[free_tcb_ptr] = pSuspend_heap[i];
          pSuspend_heap[i] = pSuspend_heap[suspend_tcb_ptr];
          pSuspend_heap[suspend_tcb_ptr] = NULL;
          suspend_tcb_ptr--;
  • joosama . . . . 29 matches
         [[HTML(<left><span style="font-size:7pt; letter-spacing:-1px;"><font face="Verdana" color=black><b>)]]bgm : 솔아솔아 푸르른 솔아 - MC Sniper[[HTML(</b></font></span></left>)]]
         [[HTML(<center><span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=ff4500><b>)]]
         ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ[[HTML(</b></font></span></center>)]]
         [[HTML(<center><span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=ffa500><b>)]]ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ[[HTML(</b></font></span></center>)]]
         [[HTML(<center><span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=ffd700 ><b>)]]ㅎㅎㅎㅎㅎㅎㅎ[이연주/공부방]ㅎㅎㅎㅎㅎㅎㅎ[[HTML(</b></font></span></center>)]]
         [[HTML(<center><span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=9acd32 ><b>)]]ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ[[HTML(</b></font></span></center>)]]
         [[HTML(<center><span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=87cefa ><b>)]]ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ[[HTML(</b></font></span></center>)]]
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=navy><b>)]] 3월 25일 근황보고~(∀`)」
         [[HTML(</b></font></span>)]]
         [[HTML(<center><span style="font-size:15pt; letter-spacing:4px;"><font face="Verdana" color=gray><b>)]]독도는 아름다운 우리땅입니다![[HTML(</b></font></span></center>)]]
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=gray><b>)]]
          출처 : 다음토론[[HTML(</b></font></span>)]]
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=black><b>)]]
  • MobileJavaStudy/SnakeBite/FinalSource . . . . 27 matches
         class SplashCanvas extends Canvas {
          Image splashImage = Image.createImage("/Splash.png");
          g.drawImage(splashImage, getWidth() / 2, getHeight() / 2, Graphics.HCENTER | Graphics.VCENTER);
          private Display display;
          private SplashCanvas splashCanvas;
          display = Display.getDisplay(this);
          splashCanvas = new SplashCanvas();
          splashCanvas.addCommand(continueCommand);
          splashCanvas.addCommand(exitCommand);
          splashCanvas.setCommandListener(this);
          display.setCurrent(splashCanvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
          display.setCurrent(snakeBiteCanvas);
          private int gameSpeed;
          gameSpeed = 50;
          if(gameSpeed > 10)
          gameSpeed -= 2;
          Thread.sleep(gameSpeed);
          private Display display;
  • CrackingProgram . . . . 25 matches
         using namespace std;
         2: using namespace std;
         00401031 mov ebp,esp
         00401033 sub esp,4Ch
         00401063 add esp,8
         0040106E add esp,4Ch
         00401071 cmp ebp,esp
         00401073 call __chkesp (004081a0)
         00401078 mov esp,ebp
         00401091 mov ebp,esp
         00401093 sub esp,44h
         004010B7 mov esp,ebp
         using namespace std;
         2: using namespace std;
         00401341 mov ebp,esp
         00401343 sub esp,48h
         00401367 add esp,8
         00401378 add esp,8
         00401389 add esp,8
         004013A4 add esp,8
  • CToAssembly . . . . 24 matches
         일반적으로 어셈블리어 명령어는 라벨(label), 연상기호(mnemonic), 연산수(operand)로 구성된다. 연산수 표시방법에서 연산수의 주소지정방식을 알 수 있다. 연상기호는 연산수에 저장된 정보에 작업을 한다. 사실 어셈블리어 명령어는 레지스터와 메모리위치에 작업을 한다. 80386계열은 eax, ebx, ecx 등의 (32비트) 범용레지스터를 가진다. 두 레지스터, ebp와 esp는 스택을 조작할때 사용한다. GNU Assembler (GAS) 문법으로 작성한 전형적인 명령어는 다음과 같다:
         일반적으로 함수는 함수가 사용할 변수들을 정의한다. 이 변수들을 유지하려면 공간이 필요하다. 함수 호출시 변수값을 유지하기위해 스택을 사용한다. 프로그램 실행중에 반복되는 재귀호출시(recursive call) activation record가 유지되는 방법을 이해하는 것이 중요하다. esp나 ebp같은 레지스터 사용법과 스택을 다루는 push와 pop같은 명령어 사용법은 함수호출과 반환방식을 이해하는데 중요하다.
         프로그램의 메모리 일부를 스택으로 사용하기위해 비워두었다. Intel 80386 이상의 마이크로프로세서에는 스택 최상위 주소를 저장하는, 스택포인터(stack pointer)라는 esp 레지스터가 있다. 아래 그림 1은 스택에 저장된 세 정수값 49, 30, 72를 보여준다 (정수는 각각 4 바이트를 차지한다). esp 레지스터는 스택 최상위 주소를 저장한다.
         명령어 popl %eax는 스택 최상위에 있는 값(4 바이트)을 eax 레지스터에 복사하고 esp를 4만큼 증가한다. 만약 스택 최상위에 있는 값을 레지스터에 복사하고 싶지 않다면? 명령어 addl $4, %esp를 실행하여 스택포인터만 증가하면 된다.
          movl %esp, %ebp
          subl $4, %esp
          movl %ebp, %esp
         먼저 스택포인터의 값을 기준포인터 레지스터(base pointer register) ebp에 복사한다. 기준포인터는 스택의 다른 위치를 접근할때 사용할 고정된 기준점이다. foo를 호출한 코드에서도 ebp를 사용하므로, 값을 esp 값으로 대체하기 전에 스택에 복사한다. 명령어 subl $4, %esp는 스택포인터를 감소하여 정수를 담기위한 (4 바이트) 공간을 만든다. 다음 줄은 값 10을 ebp에서 4를 뺀 (4 바이트) 주소에 복사한다. 명령어 movl %ebp, %esp는 스택포인터를 foo 시작시 가졌던 값으로 되돌리고, popl %ebp는 기준포인터 레지스터의 값을 되돌린다. 스택포인터는 이제 foo를 시작하기 전과 같은 값을 가진다. 아래 표는 main 시작과 목록 4의 (main에서 반환을 제외한) 각 명령어 실행후 레지스터 ebp, esp와 3988에서 3999까지 스택 주소의 내용이다. 우리는 main의 첫 명령어 실행전에 ebp는 값 7000, esp는 값 4000을 가지며, 스택 주소 3988에서 3999까지 임의의 값 219986, 1265789, 86이 저장되있다고 가정한다. 또, main에서 call foo 다음에 나오는 명령어의 주소가 30000이라고 가정한다.
          addl $4, %esp //esp를 push 이전 값으로 조정
          movl 4(%esp), %eax
          movl 4(%esp), %eax
          addl $4, %esp
          movl %esp, %ebp
          subl $4, %esp //정수 p의 공간 생성
          leave //즉, movl %ebp, %esp; popl %ebp ret
          movl %esp,%ebp
          subl $4,%esp
  • CivaProject . . . . 24 matches
         namespace civa { namespace io {
         }} // namespace civa::io
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace io {
         }} // namespace civa::io
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
  • SignatureSurvey . . . . 24 matches
          def repl_whiteSpace(self, aText):
          whiteSpace = Rep1(Str(" ")) | Rep1(Str("\t"))
          (whiteSpace, repl_whiteSpace),
          lines = [line for line in result.splitlines() if line.strip() != '']
         17 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         20 &nbsp;&nbsp;<...............................................................................................>95
         23 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         26 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         29 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         32 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         35 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
         38 &nbsp;&nbsp;&nbsp;<...............................................................................................>95
  • AspectOrientedProgramming . . . . 23 matches
         본 글은 Markus Voelter에 의해 작성된 글 중 일부이다. 원문은 AOP 기본 개념, Xerox PARC에 의해 구현된 Java의 AOP 확장 버전인 AspectJ 소개, Metaclass 프로그래밍과의 비교 등 총 3 파트로 구성되어 있으며, 번역문은 이 중 첫 번째 파트만 커버한다. 참고로 원문의 AspectJ 관련 코드는 상당히 오래된 문법에 기반하여 현재의 그것과 많은 차이를 보인다.
          최근 몇 년에 걸쳐 객체지향 프로그래밍(Object-Oriented Programming, OOP)은 절차적 방법론을 거의 완벽히 대체하며 프로그래밍 방법론의 새 주류로 떠오르게 되었다. 객체지향적 방식의 가장 큰 이점 중 하나는 소프트웨어 시스템이 여러 개의 독립된 클래스들의 집합으로 구성된다는 것이다. 이들 각각의 클래스들은 잘 정의된 고유 작업을 수행하게 되고, 그 역할 또한 명백히 정의되어 있다. 객체지향 어플리케이션에서는 어플리케이션이 목표한 동작을 수행하기 위해 이런 클래스들이 서로 유기적으로 협력하게 된다. 하지만 시스템의 어떤 기능들은 특정 한 클래스가 도맡아 처리할 수 없다. 이들은 시스템 전체를 들쑤시며 해당 코드들을 여러 클래스들에 흩뿌려 놓는다. 이런 현상을 횡단적(cross-cutting)이라 표현한다. 분산 어플리케이션에서의 락킹(locking, 동기화) 문제, 예외 처리, 로깅 등이 그 예이다. 물론 필요한 모든 클래스들에 관련 코드를 집어 넣으면 해결될 문제이다. 하지만 이런 행위는 각각의 클래스는 잘 정의된(well-defined) 역할만을 수행한다는 기본 원칙에 위배된다. 이런 상황이 바로 Aspect-Oriented Programming (AOP)이 잉태된 원인이 되었다.
          AOP에서는 aspect라는 새로운 프로그램 구조를 정의해 사용한다. 이는 쉽게 struct, class, interface 등과 같이 특정한 용도의 구조라 생각하면 된다. Aspect 내에는 프로그램의 여러 모듈들에 흩어져 있는 기능(하나의 기능이 여러 모듈에 흩어져 있음을 뜻한다)을 모아 정의하게 된다. 전체적으로, 어플리케이션의 각각의 클래스는 자신에게 주어진 기능만을 수행하고, 추가된 각 aspect들이 횡단적인 행위(기능)들을 모아 처리하며 전체 프로그램을 이루는 형태가 만들어진다.
          AOP에서는 이런 형태의 문제를 해결하기 위해 새로운 형태의 접근 방법을 제기하고 있다. AOP는 새로 도입된 프로그램 구조를 통해 시스템에 횡단되어 있는 기능들을 정의해 처리하도록 했다. 이 새로운 구조를 우리는 aspect라 부른다.
          우리의 예에 Lock이라는 aspect를 도입해보자. Lock aspect는 다음과 같은 역할이 할당될 것이다.
          Aspect는 또 어떤 일들을 수행할 수 있을까?
          특정 메소드(ex. 객체 생성 과정 추적) 호출을 로깅할 경우 aspect가 도움이 될 수 있다. 기존 방법대로라면 log() 메소드를 만들어 놓은 후, 자바 소스에서 로깅을 원하는 메소드를 찾아 log()를 호출하는 형태를 취해야할 것이다. 여기서 AOP를 사용하면 원본 자바 코드를 수정할 필요 없이 원하는 위치에서 원하는 로깅을 수행할 수 있다. 이런 작업 모두는 aspect라는 외부 모듈에 의해 수행된다. 또 다른 예로 예외 처리가 있다. Aspect를 이용해 여러 클래스들의 산재된 메소드들에 영향을 주는 catch() 조항(clause)을 정의해 어플리케이션 전체에 걸친 지속적이고 일관적으로 예외를 처리할 수 있다.
          먼저 ‘Aspect는 꼭 필요한가?’라는 질문에 답해보자. 물론 그렇지는 않다. 이상에서 언급한 모든 문제들은 aspect 개념 없이 해결될 수 있다. 하지만 aspect는 새롭고 고차원적인 추상 개념을 제공해 소프트웨어 시스템의 설계 및 이해를 보다 쉽게 한다. 소프트웨어 시스템의 규모가 계속 커져감에 따라 “이해(understanding)”의 중요성은 그만큼 부각되고 있다(OOP가 현재처럼 주류로 떠오르는데 있어 가장 중요한 요인 중 하나였다). 따라서 aspect 개념은 분명 가치 있는 도구가 될 것임에 틀림없다.다음의 의문은 ‘Aspect는 객체의 캡슐화 원칙을 거스르지 않느냐?’는 것이다. 결론부터 말하자면 ‘위반한다’ 이다. 하지만 제한된 형태로만 그렇게 한다는데 주목하도록 하자. aspect는 객체의 private 영역까지 접근할 수 있지만, 다른 클래스의 객체 사이의 캡슐화는 해치지 않는다.
         Aspect-Oriented Programming in Java
         http://javastudy.co.kr 에서 펐습니다. eclipse 프로젝트중에도 있는것 같더군요. (http://www.eclipse.org/aspectj/) - [임인택]
          AspectJ는 Eclipse 프로젝트라기 보다. Xerox PARC 의 AspectJ 프로젝트의 홈페이지가 옮겨 온것 입니다. 역시 이글이 wegra님이 해석해 놓으신거 였군요. 좀더 많은 내용은 아래의 SisterWiki 를 참고하시고, 관련포럼 비스무리 한데가 http://aosd.net 입니다. --NeoCoin
  • BusSimulation/조현태 . . . . 23 matches
         using namespace std;
         using namespace std;
          temp_where=in_road->car_move(&in_station, speed, where);
         bus::bus(int input_number, int input_size, int input_where, int input_speed)
          speed=input_speed;
         int road::Start_car(int input_number, int input_size, int input_where, int input_speed)
          cars[input_where]=new bus(input_number,input_size,input_where, input_speed);
         int road::car_move(int *state, int speed, int where)
          for (i=where+1; i<=where+speed; ++i)
          int speed;
         using namespace std;
         using namespace std;
          temp_where=in_road->car_move(&in_station, speed, where);
         bus::bus(int input_number, int input_size, int input_where, int input_speed)
          speed=input_speed;
         int road::Start_car( int input_number, int input_size, int input_where, int input_speed)
          cars[number_bus]=new bus(input_number,input_size,input_where, input_speed);
          cars[0]=new bus(input_number,input_size,input_where, input_speed);
         int road::car_move(int *state, int speed, int where)
          int temp_where=where+speed;
  • 데블스캠프2011/둘째날/Machine-Learning/SVM/namsangboy . . . . 23 matches
         maketestdir = lambda i : "/home/newmoni/workspace/svm/package/test/"+i+"/"+i+".txt"
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
          doclist = open(makedir(eachclass)).read().split("\n")
          for word in line.split(" "):
          classprob1 = float(classfreqdic["economy"]/totalct)
          classprob2 = float(classfreqdic["politics"]/totalct)
          return classfreqdic, wordfreqdic, prob1, classprob1, classprob2
          for word in document.replace("\n"," ").split(" "):
          totalprob+= math.log((classfreq1/classprob1)/(classfreq2/classprob2))
          classfreqdic, wordfreqdic, prob1, classprob1, classprob2 = readtrain()
          doclist = open(maketestdir(eachclass)).read().split("\n")
          classfreqdic, wordfreqdic, prob1, classprob1, classprob2 = readtrain()
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
          doclist = open(maketestdir(eachclass)).read().split("\n")
          for word in line.split(" "):
  • NUnit/C++예제 . . . . 22 matches
         using namespace System;
         using namespace NUnit::Framework;
         namespace NUnitSamples
         namespace NUnitSamples {
          * namespace 귀찮으면 안만들어도 된다.
         using namespace System;
         using namespace NUnit::Framework;
         평소대로 하자면 이렇게 하면 될것이다. 하지만 현재 프로젝트는 [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmxspec/html/vcmanagedextensionsspec_16_2.asp Managed C++ Extensions]이다. 이것은 C++을 이용해서 .Net을 Platform위에서 프로그래밍을 하기 위하여 Microsoft에서 C++을 확장한 형태의 문법을 제안된 추가 문법을 정의해 놓았다. 이를 이용해야 NUnit이 C++ 코드에 접근할수 있다. 이경우 NUnit 에서 검증할 클래스에 접근하기 위해 다음과 같이 클래스 앞에 [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmxspec/html/vcmanagedextensionsspec_16_2.asp __gc] 를 붙여서 선언해야 한다.
         __gc의 가 부여하는 능력과 제약 사항에 대해서는 [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmxspec/html/vcmanagedextensionsspec_4.asp __gc] 을 참고하자. NUnit 상에서 테스트의 대상 클래스는 무조건 포인터형으로 접근할수 있다. 이제 테스트 클래스의 내용을 보자.
         using namespace System;
         using namespace NUnit::Framework;
         namespace TestCase
  • RandomWalk2/Insu . . . . 21 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 방울뱀스터디/만두4개 . . . . 21 matches
         speed = 5
          if key in ['Right', 'Left', 'Up', 'Down', 'Space']:
          if dir == 'Right'and'Space' and x <= MAX_WIDTH-GAP-10 :
          x += speed
          canvas.move("oval", speed,0)
          canvas.create_line(row, col, row+speed, col, fill="red")
          row=row+speed
          x -= speed
          canvas.move("oval", -speed,0)
          canvas.create_line(row, col, row-speed, col, fill="red")
          row=row-speed
          y -= speed
          canvas.move("oval", 0,-speed)
          canvas.create_line(row, col, row, col-speed, fill="red")
          col=col-speed
          y += speed
          canvas.move("oval", 0,speed)
          canvas.create_line(row, col, row, col+speed, fill="red")
          col=col+speed
          # canvas.create_line(row, col+8, row + speed, col+8, fill="red")
  • MobileJavaStudy/NineNine . . . . 20 matches
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(list);
          display = null;
          public void commandAction(Command c,Displayable s) {
          display.setCurrent(form);
          display.setCurrent(list);
          Display display;
          display = Display.getDisplay(this);
          display.setCurrent(nineDanList);
          display = null;
          public void commandAction(Command c, Displayable d) {
          display.setCurrent(danForm);
          display.setCurrent(nineDanList);
  • SmalltalkBestPracticePatterns/DispatchedInterpretation . . . . 20 matches
         Objects change all this. How you distribute responsibility among objects is the critical decision, encoding is a distant second. For the most part, in well factored programs, only a single object is interested in a piece of information. That object directly references the information and privately performs all the needed encoding and decoding.
         Sets interact with their elements like this. Regardless of how an object is represented, as long it can respond to #=and #hash, it can be put in a Set.
         PostScriptShapePrinter>>display: aShape
          space;
          space;
         The simplest example of this is Collection>>do:. By passing a one argument Block(or any other object that responds to #value:), you are assured that the code will work, no matter whether the Collection is encoded as a linear list, an array, a hash table, or a balanced tree.
         This is a simplified case of Dispatched Interpretation because there is only a single message coming back. For the most part, there will be several messages. For example, we can use this pattern with the Shape example. Rather than have a case statement for every command, we have a method in PostScriptShapePrinter for every command, For example:
          space;
          space;
         Rather than Shapes providing #commandAt: and #argumentsAt:, they provide #sendCommantAt: anInteger to: anObject, where #lineFrom:to: is one of the messages that could be sent back. Then the original display code could read:
         PostScriptShapePrinter>>display:aShape
         This could be further simplified by giving Shapes the responsibility to iterate over themselves:
         PostScriptShapePrinter>>display: aShape
         The name "dispatched interpretation" comes from the distribution of responsibility. The encoded object "dispatches" a message to the client. The client "interprets" the message. Thus, the Shape dispatches message like #lineFrom:to: and #curveFrom:mid:to:. It's up to the clients to interpret the messages, with the PostScriptShapePrinter creating PostScript and the ShapeDisplayer displaying on the screen.
         '''''You will have to design a Mediating Protocol of messgaes to be sent back. Computations where both objects have decoding to do need Double Dispatch.'''''
  • UpgradeC++/과제1 . . . . 20 matches
         using namespace std;
          string space(4-i,' ');
          cout << space;
          string space(abs(size/2-i),' ');
          cout << space;
         using namespace std;
         using namespace std;
          string spaces(row-(j+1), ' ');
          cout << spaces;
          string spaces(row-(j+1), ' ');
          cout << spaces;
          string spaces(middle-(j+1), ' ');
          cout << spaces;
          string spaces(row-(middle+j-1), ' ');
          cout << spaces;
         using namespace std;
          char space = ' ';
          cout << space;
          cout << space;
         using namespace std;
  • XMLStudy_2002/XML+CSS . . . . 20 matches
         <HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-css.asp">How to Write a CSS StyleSheet for Browsing XML</HTML:A>
         [1]<HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-css.asp ">
         [2]<HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-overview.asp">
          display :block;
          display :block;
          display :inline;
          display :inline;
          display :inline;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
          display :block;
  • AcceleratedC++/Chapter11 . . . . 19 matches
          모든 멤버함수는 암묵적으로 한가지의 인자를 더 받는다. 그것은 그 함수를 호출한 객체인데, 이경우 그 객체가 const이거나 const 가 아닌 버전 2가지가 존재하는 것이 가능하기 때문에 parameter specification 이 동일하지만 오버로딩이 가능하다.
         vector<string> words = split(words); // copy constructor work
         string spaces(url_ch.size(), ' ');
         vector<string> split(const string&);
         v = split(line); // 함수의 종료시 임시 객체를 복사생성자로 생성
          // return all the space that was allocated
          // when growing, allocate twice as much space as currently in use
          // allocate new space and copy existing elements to the new space
          // return the old space
          // reset pointers to point to the newly allocated space
         // assumes `avail' points at allocated, but uninitialized space
          // return all the space that was allocated
          // when growing, allocate twice as much space as currently in use
          // allocate new space and copy existing elements to the new space
          // return the old space
          // reset pointers to point to the newly allocated space
         // assumes `avail' points at allocated, but uninitialized space
  • ProjectPrometheus/AT_BookSearch . . . . 19 matches
         def getSimpleSearchResponse(params):
          response = conn.getresponse()
          print response.status, response.reason
          data = response.read()
         def getAdvancedSearchResponse(params):
          response = conn.getresponse()
          print response.status, response.reason
          data = response.read()
          data = getAdvancedSearchResponse(params)
          data = getAdvancedSearchResponse(params)
          data = getAdvancedSearchResponse(params)
          data = getSimpleSearchResponse(params)
          data = getSimpleSearchResponse(params)
          data = getSimpleSearchResponse(params)
          def testKoreanAndNumberWithSpace(self):
          data = getSimpleSearchResponse(params)
  • StructuredText . . . . 19 matches
         Special symbology is used to indicate special constructs:
          * A paragraph that begins with a sequence of digits followed by a white-space character is treated as an ordered list element.
          * A paragraph with a first line that contains some text, followed by some white-space and '--' is treated as a descriptive list element. The leading text is treated as the element title.
          * Text enclosed single quotes (with white-space to the left of the first quote and whitespace or puctuation to the right of the second quote) is treated as example code.
          * Text surrounded by '*' characters (with white-space to the left of the first '*' and whitespace or puctuation to the right of the second '*') is emphasized.
          * Text surrounded by '**' characters (with white-space to the left of the first '**' and whitespace or puctuation to the right of the second '**') is made strong.
          * Text surrounded by '_' underscore characters (with whitespace to the left and whitespace or punctuation to the right) is made underlined.
          * Text encloded by double quotes followed by a colon, a URL, and concluded by punctuation plus white space, *or* just white space, is treated as a hyper link. For example:
          * Text enclosed by double quotes followed by a comma, one or more spaces, an absolute URL and concluded by punctuation plus white space, or just white space, is treated as a hyper link. For example:
          * Text enclosed in brackets which is preceded by the start of a line, two periods and a space is treated as a named link. For example:
          * A paragraph that has blocks of text enclosed in '||' is treated as a table. The text blocks correspond to table cells and table rows are denoted by newlines. By default the cells are center aligned. A cell can span more than one column by preceding a block of text with an equivalent number of cell separators '||'. Newlines and '|' cannot be a part of the cell text. For example:
         ||Spam||10||
          ||Spam||10||
  • 김영록/연구중/지뢰찾기 . . . . 19 matches
         static int space[16][16];
          switch(space[b][a]){
          cout << space[b][a] << " " ;
          if (space[X-1][Y-1] == 9){
          if (space[X][Y-1] == 9){
          if (space[X+1][Y-1] == 9){
          if (space[X-1][Y] == 9){
          if (space[X+1][Y] == 9){
          if (space[X-1][Y+1] == 9){
          if (space[X][Y+1] == 9){
          if (space[X+1][Y+1] == 9){
         space[X][Y] = mine_count;
         if (space[X][Y] ==9){
          switch(space[b][a]){
          cout << space[b][a] << " " ;
         else if(space[X][Y] ==10)
          space[b][a] = 10;
          if (space[x][y] != 9){
          space[x][y] = 9;
  • AVG-GCC . . . . 18 matches
          --help Display this information'''도움말'''[[BR]]
          --target-help Display target specific command line options[[BR]]
          (Use '-v --help' to display command line options of sub-processes)[[BR]]
          -dumpspecs Display all of the built in spec strings[[BR]]
          -dumpversion Display the version of the compiler'''컴파일러 버전'''[[BR]]
          -dumpmachine Display the compiler's target processor[[BR]]
          -print-search-dirs Display the directories in the compiler's search path[[BR]]
          -print-libgcc-file-name Display the name of the compiler's companion library[[BR]]
          -print-file-name=<lib> Display the full path to library <lib>[[BR]]
          -print-prog-name=<prog> Display the full path to compiler component <prog>[[BR]]
          -print-multi-directory Display the root directory for versions of libgcc[[BR]]
          -print-multi-lib Display the mapping between command line options and[[BR]]
          -specs=<file> Override builtin specs with the contents of <file>[[BR]]
          -v Display the programs invoked by the compiler[[BR]]
          -x <language> Specify the language of the following input files[[BR]]
  • OpenGL스터디_실습 코드 . . . . 18 matches
          glutPostRedisplay();
          GLfloat aspectRatio;
          aspectRatio = (GLfloat)w/(GLfloat)h;
          windowHeight = 100/aspectRatio;
          windowWidth = 100*aspectRatio;
          glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
          glutDisplayFunc(RenderScene);
          * Title : spiral shape pointing
          // Specify the point and move the Z value up a little
         void SpecialKeys(int key, int x, int y)
          glutPostRedisplay();
          glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
          glutDisplayFunc(RenderScene);
          glutSpecialFunc(SpecialKeys);
          glutPostRedisplay();
         void SpecialKeys(int key, int x, int y)
          glutPostRedisplay();
          glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
          glutSpecialFunc(SpecialKeys);
          glutDisplayFunc(RenderScene);
  • 김희성/리눅스계정멀티채팅2차 . . . . 18 matches
          sprintf(buff_snd,"i %s\n",arry);
          sprintf(buff_snd,"m %s\n",arry);
          sprintf(id[id_num],"%s",buff_rcv);
          sprintf(password[i],"%s",buff_rcv);
          sprintf(temp_buff,"./help\n");
          sprintf(temp_buff,"./list\n");
          sprintf(temp_buff,"./message ");
          sprintf(temp_buff,"send to %s : %s", id[i], &buff_rcv[j+11] );
          sprintf(temp_buff,"message from %s : %s",
          sprintf(buff_snd,"%s : %s",id[thread_id[t_num-1]],buff_rcv);
          sprintf(chat[chat_e],"%s",buff_snd);
          sprintf(buff_snd,"log\n");
          sprintf(buff_snd,"%s\n",chat[chat_s[i_num]]);
          sprintf(buff_snd,"%s has joined",id[i_num]);
          sprintf(buff_snd,"%s has left",id[i_num]);
          sprintf(buff_snd,"a");
          sprintf(buff_snd,"a");
          sprintf(buff_snd,"a");
  • 2010JavaScript/역전재판 . . . . 17 matches
         <div id='item_box'><span class='keyword'><br><br><br><br><br>hello</span></div>
          <span class='think'>(span 을 사용했음)</span><br>
          키워드는 <span class='keyword'>키워드!!</span>요렇게 ㅎㅎ
         background-color : transparent;
         span.text { /*대화창의 글자 속성을 지정*/
         span.think { /*대화 중 주인공이 혼자 말할때의 속성을 지정*/
         span.keyword { /*키워드의 속성을 지정*/
         span.date { /*날짜와 장소 출력할 때의 속성*/
          <span class='think'>(span 을 사용했음)</span><br>
          키워드는 <span class='keyword'>키워드!!</span>요렇게 ㅎㅎ
  • MobileJavaStudy/SnakeBite/Spec2Source . . . . 17 matches
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(canvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(startCanvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
          display.setCurrent(boardCanvas);
  • MobileJavaStudy/SnakeBite/Spec3Source . . . . 17 matches
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(canvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(startCanvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
          display.setCurrent(boardCanvas);
  • RSSAndAtomCompared . . . . 17 matches
         === Specifications ===
         The RSS 2.0 specification is copyrighted by Harvard University and is frozen. No significant changes can be made and it is intended that future work be done under a different name; Atom is one example of such work.
         The Atom 1.0 specification (in the course of becoming an
         [http://www.ietf.org/iesg.html Internet Engineering Steering Group]. The specification is structured in such a way that the IETF could conceivably issue further versions or revisions of this specification without breaking existing deployments, although there is no commitment, nor currently expressed interest, in doing so.
         See the Extensibility section below for how each can be extended without changing the specifications themselves.
          * well-formed, displayable XHTML markup
         Atom [http://www.ietf.org/internet-drafts/draft-ietf-atompub-autodiscovery-01.txt standardizes autodiscovery]. Additionally, Atom feeds contain a “self” pointer, so a newsreader can auto-subscribe given only the contents of the feed, based on Web-standard dispatching techniques.
         RSS 2.0 is not in an XML namespace but may contain elements from other XML namespaces. There is no central place where one can find out about many popular extensions, such as dc:creator and content:encoded.
         Atom 1.0 is in [http://www.w3.org/2005/Atom an XML namespace] and may contain elements or attributes from other XML namespaces. There are specific guidelines on how to interpret extension elements. Additionally, there will be an IANA managed directory rel= values for <link>. Finally, Atom 1.0 provides recommended extension points and guidance on how to interpret simple extensions.
         RSS 2.0 does not specify the handling of relative URI references, and in practice they cannot be used in RSS feeds.
         Atom 1.0 specifies use of the XML's built-in [http://www.w3.org/TR/xmlbase/ xml:base] attribute for allowing the use of relative references.
         RSS 2.0 provides the ability to specify email addresses for a feed’s “managingEditor” and “webMaster”, and for an item’s “author”. Some publishers prefer not to share email addresses, and use “dc:creator” from the dublin core extension instead.
         The RSS 2.0 specification includes no schema.
          <guid isPermaLink="false">urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</guid>
         ||image||logo||Atom recommends 2:1 aspect ratio||
  • ZeroPage_200_OK/소스 . . . . 17 matches
          li > span {background-color: gray;}
          li ul {display: none;}
          .menu > li:hover > span {background-color: blue; color: white;} /* (elementName)(.elementName)(:pseudo-class) */
          li:hover ul {display: block;}
          <span>File</span>
          <span>New</span>
          <li><span>a</span></li>
          <span>HaHa</span>
          <!-- span: inline element -->
          <span>zz</span>
          <th rowspan="2">price</th><!-- table head cell -->
          <td colspan="2">25,000 won</td>
  • 김희성/리눅스계정멀티채팅 . . . . 17 matches
          sprintf(buff_snd,"test\n");
          sprintf(buff_snd,"a\n");
          sprintf(buff_snd,"c\n");
          sprintf(buff_snd,"i\n");
          sprintf(id[id_num],"%s",buff_rcv);
          sprintf(buff_snd,"p\n");
          sprintf(password[id_num],"%s",buff_rcv);
          sprintf(buff_snd,"a\n");
          sprintf(buff_snd,"i\n");
          sprintf(buff_snd,"p\n");
          sprintf(buff_snd,"a\n");
          sprintf(buff_snd,"%s has joined",id[i_num]);
          sprintf(buff_snd,"%s\n",chat[chat_s[i_num]]);
          sprintf(buff_snd,"%s : %s",id[i_num],buff_rcv);
          sprintf(chat[chat_e],"%s",buff_snd);
          sprintf(buff_snd,"%s has left",id[i_num]);
          sprintf(buff_snd,"test\n");
  • AcceleratedC++/Chapter7 . . . . 16 matches
          * Visual C++ 6.0 에서 소스를 컴파일 할때 책에 나온대로 (using namespace std를 사용하지 않고 위와 같이 사용하는 것들의 이름공간만 지정할 경우) map<string, int>::const_iterator 이렇게 치면 using std::map; 이렇게 미리 이름공간을 선언 했음에도 불구하고 에러가 뜬다. 6.0에서 제대로 인식을 못하는것 같다. 위와 같이 std::map<string, int>::const_iterator 이런식으로 이름 공간을 명시하거나 using namespace std; 라고 선언 하던지 해야 한다.
         #include "split.h" // 6.1.1. 절에서 만들어 놓은 함수
         // 기본적으로 split 함수를 이용하여서 단어를 tokenize 한다. 만약 인자로 find_url을 주게되면 url이 나타난 위치를 기록한다.
         map<string, vector<int> > xref(istream& in, vector<string> find_words(const string&) = split)
          // call `xref' using `split' by default
          * '''map<string, vector<int> > xref(istream& in, vector<string> find_words(const string&) = split)'''
          기본 변수 split 을 이용해서 입력받은 값을 이용해서 ret를 초기화한다.
          vector<string> entry = split(line); // split 함수를 이용해서 입력된 문자열을 ' '를 기존으로 tokenize 한다.
          // write the rest of the words, each preceded by a space
         #include "split.h"
          // `split' the input into words
          vector<string> entry = split(line);
          // locate the rule that corresponds to `word'
          // write the rest of the words, each preceded by a space
  • DPSCChapter1 . . . . 16 matches
         Welcome to ''The Design Patterns Smalltalk Companion'' , a companion volume to ''Design Patterns Elements of Reusable Object-Oriented Software'' by Erich Gamma, Richard Helm, Ralph Johnson, and Jogn Vlissides(Gamma, 1995). While the earlier book was not the first publication on design patterns, it has fostered a minor revolution in the software engineering world.Designers are now speaking in the language of design patterns, and we have seen a proliferation of workshops, publications, and World Wide Web sites concerning design patterns. Design patterns are now a dominant theme in object-oriented programming research and development, and a new design patterns community has emerged.
         ''Design Patterns'' describes 23 design patterns for applications implemented in an object-oriented programming language. Of course, these 23 patterns do not capture ''all'' the design knowledge an object-oriented designer will ever need. Nonetheless, the patterns from the "Gang of Four"(Gamma et al.) are a well-founded starting point. They are a design-level analog to the base class libraries found in Smalltalk development environments. They do not solve all problems but provide a foundation for learning environments. They do not solve all problems but provide a foundation for learning about design patterns in general and finding specific useful architectures that can be incorporated into the solutions for a wide variety of real-world design problems. They capture an expert level of design knowledge and provide the foundation required for building elegant, maintainable, extensible object-oriented programs.
         In the Smalltalk Companion, we do not add to this "base library" of patterns;rather, we present them for the Smalltalk designer and programmer, at times interpreting and expanding on the patterns where this special perspective demands it. Our goal is not to replace Design Patterns; you should read the Smalltalk Companion with Design Patterns, not instead of it. We have tried not to repeat information that is already well documented by the Gang of Four book. Instead, we refer to it requently;you should too.
         Smalltalk experts know many things that novices do not, at various abstraction levels and across a wide spectrum of programming and design knowledge and skills:
          * How to use the specific tools of the Smalltalk interactive development environment to find and reuse existing functionality for new problems, as well as understanding programs from both static and runtime perspective
         This is by no means an exhaustive list, and even novices understand and use much of the knowledge. But some items, especially the last -- recurring patterns of software design, or design patterns -- are the province of design expert.
         A '''design pattern''' is a reusable implementation model or architecture that can be applied to solve a particular recurring class of problem. The pattern sometimes describes how methods in a single class or subhierarchy of classes work together; more often, it shows how multiple classes and their instances collaborate. It turns out that particular architectures reappear in different applications and systems to the extent that a generic pattern template emerges, one that experts reapply and customize to new application - and domain-specific problems. Hence, experts know how to apply design patterns to new problems to implement elegant and extensible solutions.
         Design patterns also provide a succinct vocabulary with which to describe new designs and retrospectively explain existing ones. Patterns let us understand a design at a high level before drilling down to focus on details. They allow us to envision entire configurations of objects and classes at a large grain size and communicate these ideas to other designers by name. We can say, "Implement the database access object as a Singleton," rather than, "Let's make sure the database access class has just one instance. The class should include a class variable to keep track of the singl instance. The class should make the instance globally available but control access to it. The class should control when the instance is created and ..." Which would you prefer?
         Christopher Alexander and his colleagues have written extensively on the use of design patterns for living and working spaces-homes, buildings, communal areas, towns. Their work is considered the inspiration for the notion of software design patterns. In ''The Timeless Way of Building''(1979) Alexander asserts, "Sometimes there are version of the same pattern, slightly different, in different cultures" (p.276). C++ and Smalltalk are different languages, different environments, different cultures-although the same basic pattern may be viable in both languages, each culture may give rise to different versions.
         The Gang of Four's ''Design Patterns'' presents design issues and solutions from a C+ perspective. It illustrates patterns for the most part with C++ code and considers issues germane to a C++ implementation. Those issue are important for C++ developres, but they also make the patterns more difficult to understand and apply for developers using other languages.
         This book is designed to be a companion to ''Design Patterns'', but one written from the Smalltalk perspective. One way to think of the ''Smalltalk Companion'', then, is as a variation on a theme. We provide the same pattern as in the Gang of Four book but view them through Smalltalk glasses. (In fact, when we were trying out names for the ''Smalltalk Companion'', someone suggested "DesignPattern asSmalltalkCompanion." However, we decided only hard-core Smalltalkers would get it.)
          * Discussion of issues specific to Smalltalk implementions of the Gang of Four's design patterns
          * More Smalltalk known uses, especially from the major Smalltalk envirnoments class libraries
  • MoreEffectiveC++/Techniques1of3 . . . . 16 matches
         다음과 같이 가상 함수로 출력을 구현하고, 전역이든, namespace로 묶여 있든, 비 멤버 함수로 스트림 객체와의 출력의 고리를 연결시켜서, 비멤버 함수가 가상함수처럼 돌아가도록 구현한다.
         전역 공간 사용에 대한 문제의 해결책의 또다른 접근 방법이라고 한다면, name space를 사용하는 것이다. 다음과 같이 단순히 PrintingStuff name space로 묶어 버린다.
         namespace PrintingStuff { // namespace의 시작
          class Printer { // namespace로서 이 클래스는
          public: // PrintingStuff namespace 안에 존재하는 것이다.
          { // PrintingStuff namespace안에 존재 하는 것이다.
         } // namespace의 끝
         using PrintingStuff::thePrinter; // thePrinter를 현재의 namespace안에서
          void displayEditDialog(); // tuple의 수정을 하기 위한 유저의
          pt->displayEditDialog();
         editTuple내에 LogEntry객체를 생각해 보자. 수정을 위한 log를 남기기위해서는 displayEditDialog의 시작과 끝에서 매번 불러주면 되는데, 구지 왜 구지 이렇게 했을까? 이에관한 내용은 예외에 관련된 상황 때문인데, Item 9를 참고하면 된다.
          pt->displayEditDialog();
         pt->displayEditDialog();
         (pt.operator->())->displayEditDialog();
  • cookieSend.py . . . . 16 matches
         def getResponse(host="", port=80, webpage="", method="GET", paramDict=None, cookieDict=None):
          response = conn.getresponse()
          print response.status, response.reason
          data = response.read()
          httpData['response'] = data
          httpData['cookie'] = response.getheader('Set-Cookie')
          httpData['msg'] = response.msg
         def printResponse(aStr):
          print "------------------------- response start ------------------------------"
          print "------------------------- response end ------------------------------"
          httpData = getResponse(host="zeropage.org", webpage="/~reset/testing.php", method='GET', paramDict=params, cookieDict=cookie)
          printResponse(httpData['response'])
          printResponse(httpData['msg'])
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/namsangboy . . . . 16 matches
         maketestdir = lambda i : "/home/newmoni/workspace/svm/package/test/"+i+"/"+i+".txt"
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
          doclist = open(makedir(eachclass)).read().split("\n")
          for word in line.split(" "):
          classprob1 = float(classfreqdic["economy"]/totalct)
          classprob2 = float(classfreqdic["politics"]/totalct)
          return classfreqdic, wordfreqdic, prob1, classprob1, classprob2
          for word in document.replace("\n"," ").split(" "):
          totalprob+= math.log((classfreq1/classprob1)/(classfreq2/classprob2))
          classfreqdic, wordfreqdic, prob1, classprob1, classprob2 = readtrain()
          doclist = open(maketestdir(eachclass)).read().split("\n")
  • DebuggingSeminar_2005/AutoExp.dat . . . . 15 matches
         ; optional Watch format specifier.
         ; text Any text.Usually the name of the member to display,
         ; member Name of a member to display.
         ; format Watch format specifier. One of the following:
         ; Letter Description Sample Display
         ; For details of other format specifiers see Help under:
         ; "format specifiers/watch variable"
         ; The special format <,t> specifies the name of the most-derived
         ; type of the object. This is especially useful with pointers or
         ; There are some special entries allowed in the AutoExpand section:
         ; $BUILTIN is used to display more complex types that need to do more
         ; $ADDIN allows external DLLs to be added to display even more complex
         CTimeSpan =time=<m_time>
         ; This section lets you define your own errors for the HRESULT display.
         ; Changes will take effect the next time you redisplay the variable.
  • MobileJavaStudy/HelloWorld . . . . 15 matches
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(mainScreen);
          public void commandAction(Command c,Displayable s) {
          private Display display;
          display = Display.getDisplay(this);
          display.setCurrent(canvas);
          display = null;
          public void commandAction(Command c, Displayable d) {
  • Spring/탐험스터디/2011 . . . . 15 matches
         [[pagelist(^Spring)]]
          * [Spring Framework 3]를 탐험해보자!
          * [Spring]의 핵심 가치와 원리에 대한 이해
          * Spring Framework 3 다루는 다른 교재 가능
          * 과제: SpringSource Tool Suite에서 Spring MVC Template 프로젝트 생성
          1.3 Resttemplate : spring에서 RESTful에 접근하기 위한 template. spring에서 데이터를 받아오는 방법.
          - HomeController는 MVC 모델의 컨트롤러로 뷰에 모델을 바인딩하는 역할을 담당한다. home() 메소드 내부의 Welcome home!은 logger에 찍히는 문자열이기 때문에 실제로 실행시에 보이는 것은 아니다. HomeController가 하는 주된 역할은 return "home";을 함으로써 HomeController를 사용하는 쪽에서 home.jsp(뷰)를 찾을 수 있게 하는 것이다.
          - 결국 화면에 나타나는 것은 뷰인 home.jsp이므로 Hello world!는 이쪽에 들어있다.
          1.4. Connection c = DriverManager.getConnection(...); 문장에서 에러가 나는데 문자열의 localhost/springbook 부분을 자신이 사용할 테이블의 이름으로 바꾸어 주어야 한다. localhost/test로 바꿔준다. 이후의 문자열 두 개는 각각 자신의 MySQL 계정 이름(기본값 root), MySQL 비밀번호를 적어주면 된다.
          2.1. 우선 책에서 외부 라이브러리를 사용하고 있는데, STS에는 필요한 라이브러리가 들어있지 않은 것 같다. 이쪽 페이지(http://www.tutorials4u.net/spring-tutorial/spring_install.html)를 보고 라이브러리를 받아야 한다. 받아서 압축을 풀고 spring-framework-3.0.5.RELEASE/dist 폴더에 있는 jar 파일들을 프로젝트에 포함시켜주면 AnnotationContext, AnnotationConfigApplicationContext, @Configuration, @Bean 등을 사용할 수 있게 된다.
          1. Spring MVC Template Project 생성하여 실행해보려다 실패.
          1. Spring Project를 생성하고 실행하는데 Tomcat 설치가 필요하여 플러그인 설치함.
          1. Spring Project를 생성하고 실행하는데 포트가 이미 사용중이라 되지 않음.
         spring-framework-3.0.5.RELEASE/dist 폴더에 있는 jar 파일들을 프로젝트에 포함시켰는데,
         책에 jar 파일 목록에 있던 것 중 org.springframework.~~ 가 아닌 것들이 빠져있어서 그런가 아래와 같은 오류가 나는..
          at org.springframework.context.support.AbstractApplicationContext.<init>(AbstractApplicationContext.java:160)
          at org.springframework.context.support.AbstractApplicationContext.<init>(AbstractApplicationContext.java:213)
          at org.springframework.context.support.GenericApplicationContext.<init>(GenericApplicationContext.java:101)
          at org.springframework.context.annotation.AnnotationConfigApplicationContext.<init>(AnnotationConfigApplicationContext.java:63)
          at springbook.user.dao.UserDaoTest.main(UserDaoTest.java:13)
  • BigBang . . . . 14 matches
          * ALGOL계 언어라고도 한다고 한다.. [http://hkpark.netholdings.co.kr/web/inform/default/inform_view.asp?menu_id=9730&id=1456&parent_id=1517 궁금해 할 사람을 위해]
          * 그러나 비슷한 시기에 탄생한 Fortran, lisp등을 제하고 이후 대부분의 언어에게 영향을 주었으니 ALGOL과 무관한 언어가 있을까..
         using namespace std;
          * namespace : 이름 중복을 막기 위해 사용
          * using namespace NAME; -> NAME의 namespace를 해당 scope 안에서 이용하겠다는 것
          * 기본 함수들의 namespace
          * [http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3485.pdf c++11(아마도?) Working Draft]의 7.5절 linkage specification 참고
          * mutex, semaphore, spinlock, critical section, race condition, dead lock
          using namespace std;
          * namespace로 같은 이름을 가진 클래스들을 사용해보자
          * template와 friend 사이에 여러 매핑이 존재한다. many to many, one to many, many to one, one to one : [http://publib.boulder.ibm.com/infocenter/comphelp/v7v91/index.jsp?topic=%2Fcom.ibm.vacpp7a.doc%2Flanguage%2Fref%2Fclrc16friends_and_templates.htm 참고]
          * vector(메모리가 연속적인 (동적) 배열), string, deque(double ended queue, 덱이라고도 한다. [http://www.cplusplus.com/reference/deque/deque/ 참고]), list(linked-list)
          * tr1은 C++0x에서 제정된 것들이 tr1 namespace로 정의되어 있었는데 C++11이 나오면서 다 통합되었다고 한다.
  • DirectDraw/Example . . . . 14 matches
         CDisplay* disp = new CDisplay();
          DispatchMessage(&msg);
         // create and display the main program window.
          disp->CreateFullScreenDisplay(hWnd, 640, 480, 16);
          disp->CreateSurfaceFromBitmap( &suf1, "bitmap1.bmp", 48, 48);
          disp->CreateSurfaceFromBitmap( &suf2, "bitmap2.bmp", 20, 20);
          SAFE_DELETE(disp);
          disp->Clear();
          disp->Blt(0, 0, suf1, NULL);
          disp->Blt(x++, y++, suf2, NULL);
          disp->Present();
  • FortuneCookies . . . . 14 matches
          * "Say it, don't spray it!"
          * He who spends a storm beneath a tree, takes life with a grain of TNT.
          * Mind your own business, Spock. I'm sick of your halfbreed interference.
          * Show your affection, which will probably meet with pleasant response.
          * If you suspect a man, don't employ him.
          * Don't speak about Time, until you have spoken to him.
          * You will gain money by a speculation or lottery.
          * Far duller than a serpent's tooth it is to spend a quiet youth.
          * You display the wonderful traits of charm and courtesy.
          * You will be given a post of trust and responsibility.
          * Be careful how you get yourself involved with persons or situations that can't bear inspection.
          * You can do very well in speculation where land or anything to do with earth is concerned.
          * Don't be overly suspicious where it's not warranted.
          * Someone is speaking well of you.
          * Nobody expects the Spanish Inquisition!
  • JavaScript/2011년스터디/서지혜 . . . . 14 matches
          <td colspan=5>
          <td colspan=2>
          <td colspan=3>
         org.zeropage.namespace = 0; // 이건되고
         //org.zeropage.namespace.function1 = "" // 이건 왜 안됨?
         org.zeropage.namespace = function() {
         org.zeropage.namespace();
         var simple.zeropage = org.zeropage.namespace;
         /* TypeError: Object 0 has no method 'namespace' */
         org.zeropage.namespace = 0; // 이건되고
         //org.zeropage.namespace.function1 = 0 // 이건 왜 안됨?
         org.zeropage.namespace = function() {
         org.zeropage.namespace();
         var simple.zeropage = org.zeropage.namespace;
  • LC-Display/문보창 . . . . 14 matches
         // no706 - LCD Display
         using namespace std;
         void makeDisplay(Digit * d, const int line);
         void showDisplay(char pd[][MAX_COL], int row, int index);
          makeDisplay(digits, line);
         void makeDisplay(Digit * d, const int line)
          char display[MAX_ROW][MAX_COL]; // display에 담길 Digital 숫자
          display[j][k] = ' ';
          toDigital(display, row, col, j, d[i].num[j]);
          showDisplay(display, row, index);
         void showDisplay(char pd[][MAX_COL], int row, int index)
         [LC-Display] [문보창]
  • TwistingTheTriad . . . . 14 matches
         One example of this deficiency surfaced in SmalltalkWorkspace widget. This was originally designed as a multiline text-editing component with additional logic to handle user interface commands such as Do-it, Show-it, Inspect-it etc. The view itself was a standard Windows text control and we just attached code to it to handle the workspace functionality. However, we soon discovered that we also wanted to have a rich text workspace widget too. Typically the implementation of this would have required the duplication of the workspace logic from the SmalltalkWorkspace component or, at least, an unwarranted refactoring session. It seemed to us that the widget framework could well do with some refactoring itself!
         In MVC, most of the application functionality must be built into a model class known as an Application Model. It is the reponsibility of the application model to be the mediator between the true domain objects and the views and their controllers. The views are responsible for displaying the domain data while the controller handle the raw usr gestures that will eventually perform action on this data. So the application model typically has method to perform menu command actions, push buttons actions and general validation on the data that it manages. Nearly all of the application logic will reside in the application model classes. However, because the application model's role is that of a go-between, it is at times necessary for it to gain access to the user interface directly but, because of the Observer relationship betweeen it and the view/controller, this sort of access is discouraged.
          - 내가 파악한 MVC 모델은 너무 얕은 지식이였나. 여태껏 그냥 Layer 단으로만 그렇게 나누어진다만 생각했지 해당 이벤트 발생시나 모델의 값 변화시 어떠한 단계로 Control 이 흘러가는지에 대해서는 구체적으로 생각해본 적이 없었던 것 같다. 화살표를 보면 Application Model -> Controller 로의 화살표가 없다. 그리고 Problem Space 의 범위도 차이가 난다.
         This is the data upon which the user interface will operate. It is typically a domain object and the intention is that such objects should have no knowledge of the user interface. Here the M in MVP differs from the M in MVC. As mentioned above, the latter is actually an Application Model, which holds onto aspects of the domain data but also implements the user interface to manupulate it. In MVP, the model is purely a domain object and there is no expectation of (or link to) the user interface at all.
         The behaviour of a view in MVP is much the same as in MVC. It is the view's responsibility to display the contents of a model. The model is expected to trigger appropriate change notification whenever its data is modified and these allow the view to "hang off" the model following the standard Observer pattern. In the same way as MVC does, this allows multiple vies to be connected to a single model.
         One significant difference in MVP is the removal of the controller. Instead, the view is expected to handle the raw user interface events generated by the operating system (in Windows these come in as WM_xxxx messages) and this way of working fits more naturally into the style of most modern operating systems. In some cases, as a TextView, the user input is handled directly by the view and used to make changes to the model data. However, in most cases the user input events are actually routed via the presenter and it is this which becomes responsible for how the model gets changed.
         While it is the view's responsibility to display model data it is the presenter that governs how the model can be manipulated and changed by the user interface. This is where the heart of an application's behaviour resides. In many ways, a MVP presenter is equivalent to the application model in MVC; most of the code dealing with how a user interface works is built into a presenter class. The main difference is that a presenter is ''directly'' linked to its associated view so that the two can closely collaborate in their roles of supplying the user interface for a particular model.
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 14 matches
         namespace DevilsCamp
          display();
          private void display() {
          display();
         namespace DevilsCamp
          /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
          protected override void Dispose(bool disposing)
          if (disposing && (components != null))
          components.Dispose();
          base.Dispose(disposing);
          this.SuspendLayout();
  • 벡터/박능규 . . . . 14 matches
         using namespace std;
          vector<student> sp;
          sp.push_back(st[1]);
          sp.push_back(st[2]);
          sp.push_back(st[3]);
          sp.push_back(st[4]);
          sort(sp.begin(), sp.end(), compare);
          for(vector<student>::iterator i= sp.begin();i!=sp.end(); i++)
          sort(sp.begin(),sp.end(),compare2);
          for(i=sp.begin();i<sp.end();i++)
  • 빵페이지/숫자야구 . . . . 14 matches
         using namespace std;
         using namespace std;
          char space[64]; // 입력하는 숫자를 저장하는 배열
          cin.getline(space, 64);
          if ((space[0] == 'q' || space[0] == 'Q') && space[1] == '\0')
          if (space[i] < '1' || space[i] > '9')
          if (space[4] != '\0')
          if (space[i] == space[h])
          if (space[j] == random[j])
          if (j != k && space[j] == random[k])
  • 2011년독서모임 . . . . 13 matches
          * [김준석] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8934940069 나는 아직 어른이 되려면 멀었다]
          * [김수경] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8955614101 왜 사람들은 이상한 것을 믿는가]
          * [서지혜] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8988964373 작심후 3일]
          * [강소현] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8984314307 1등만 기억하는 더러운 세상]
          * [김수경] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8986509814 우리말 달인]
          * [강소현] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=896330020X 중독의 이해와 상담의 실제]
          * [정의정] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8956604231 꿈의 도시]
          * [김준석] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8952723147 나니아 연대기]
          * [강소현] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=890110511X 더 박스]
          * [권순의] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8937831090 GO] (가네시로 가즈키)
          * [강소현] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8937831090 GO] (가네시로 가즈키)
          * [강소현] - [http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=899006225X 수집이야기]
          * [강소현] - '''[http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8990984610 자존감]'''
  • ACM_ICPC/2013년스터디 . . . . 13 matches
          * graph, dfs - [http://211.228.163.31/30stair/danji/danji.php?pname=danji 단지 번호 붙이기], [http://211.228.163.31/30stair/orders/orders.php?pname=orders orders], [http://211.228.163.31/30stair/bugslife/bugslife.php?pname=bugslife 짝 짓기], [http://211.228.163.31/30stair/sprime/sprime.php?pname=sprime 슈퍼 소수], [http://211.228.163.31/30stair/snail_trails/snail_trails.php?pname=snail_trails 달팽이]
          * Algospot배 알고리즘대회
          * Coder's High 2013 (Algospot 알고리즘대회) 풀기
          * [http://www.algospot.com/judge/problem/list/?tag=&source=Coder%27s+high+2013&author= 링크]
          * [http://www.algospot.com/judge/problem/read/FOURGODS 사신도]
          * [http://www.algospot.com/judge/problem/read/JUMP Jump]
          * [http://www.algospot.com/judge/problem/read/XHAENEUNG 째능교육]
          * [http://www.algospot.com/judge/problem/read/WEEKLYCALENDAR Weekly Calendar]
          * [http://www.algospot.com/judge/problem/read/SPACE 우주개발의 길은 멀고도 험하다]
          * [http://www.algospot.com/judge/problem/read/POLY 폴리오미노]
          * 제2회 대학생프로그래밍 대회 동아리 연합 [http://algospot.com/judge/problem/list/?source=제%202회%20전국%20대학생%20프로그래밍%20대회%20동아리%20연합%20대회 링크]
  • IndexedTree/권영기 . . . . 13 matches
         int find(node *current, int sp, int ep, int st, int ed)
          if(sp == st && ep == ed)return current->item;
          return find(current->left, sp, ep, st, (st+ed)/2);
          else if(sp > (st+ed)/2){
          return find(current->right, sp, ep, (st+ed)/2 + 1, ed);
          else if(sp <= (st + ed)/2 && ed > (st+ed)/2){
          return find(current->left, sp, (st+ed)/2, st, (st+ed)/2) + find(current->right, (st+ed)/2 + 1, ep, (st+ed)/2 + 1, ed);
         int read_BinaryIndexedTree(int *tree, int sp, int ep){
          temp = sp-1;
         using namespace std;
          int read(int sp, int ep);
         int IndexedTree::read(int sp, int ep)
          temp = sp-1;
  • MedusaCppStudy . . . . 13 matches
         using namespace std;
         - choose {sprite, tea, tejava} - 음료수 선택하다.
         sprite: 400
         >> choose sprite
         come out sprite!
         >> choose sprite
         come out sprite! rest amount: 2
         >> choose sprite
         come out sprite! rest amount: 1
         >> choose sprite
         come out sprite! rest amount: 0
         >> choose sprite
         run out of sprite!
  • 데블스캠프2013/셋째날/머신러닝 . . . . 13 matches
         namespace ZPDC2013HELL
          temp1 = line.Split(sep);
          temp1 = line.Split(sep);
          temp1 = line.Split(sep);
          firstDataList = [int(i) for i in firstData.split(',')];
          secondDataList = [int(i) for i in secondData.split(',')];
         using namespace std;
         std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) {
         std::vector<std::string> split(const std::string &s, char delim) {
          split(s, delim, elems);
          vector<string> firstDataList = split(firstData, ',');
          vector<string> secondDataList = split(secondData, ',');
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 빵페이지/도형그리기 . . . . 13 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
          sprintf(format,"%%%ds %%%ds %%%ds %%%ds\n",num,num,num,num);
         using namespace std;
         using namespace std;
         const char space = ' ';
         int space_ptr1 = 10;
         int space_ptr2 = 17;
          buffer[space_ptr1--] = buffer[space_ptr2++] = space;
  • 토비의스프링3/오브젝트와의존관계 . . . . 13 matches
         package springbook.user.domain;
         package springbook.user.dao;
         import springbook.user.domain.User;
          Connection c = DriverManager.getConnection("jdbc:mysql://localhost/springbook", "spring", "book");
          Connection c = DriverManager.getConnection("jdbc:mysql://localhost/springbook", "spring", "book");
          Connection c = DriverManager.getConnection("jdbc:mysql://localhost/springbook", "spring", "book");
          * 개방 폐쇄 원칙(OCP) [http://cache.springnote.com/pages/2914580 객체지향 설계원칙(SOLID)]
          <bean id="myConnectionMaker" class="springbook.user.dao.DConnectionMaker" />
          <bean id="userDao" class="springbook.dao.UserDao">
         ApplicationContext context = new GenericXmlApplicationContext("springbook/user/dao/daoContext.xml")
  • ExploringWorld . . . . 12 matches
         (V) [[HTML(<font color=red><B>)]]미션 1 : Java-Servlet, jsp, php 로 Hello World 찍어오자! [[HTML(</B></font>)]]
         (V) [[HTML(<font color=red><B>)]]미션 2 : (1) JDBC를 이용하여 Hello World를 넣고 빼기 (2) JSP, Servlet 비교설명 [[HTML(</B></font>)]]
         || [[ISBN(8980544928,K,noimg)]] JSP 관련 책 Web Development With Java Server Pages - 2판 ||
         이번 시간에 JSP를 조금 가지고 놀수 있겠구나 --NeoCoin
         [http://zeropage.org/jsp/board/thin/rss.jsp 자유 게시판 RSS]
         [http://zeropage.org/jsp/board/thin/rss.jsp?table=multimedia 감상 게시판 RSS]
         [http://zeropage.org/jsp/board/thin/rss.jsp?table=T1002455826251 공지 게시판 RSS]
         [http://zeropage.org/jsp/board/thin/rss.jsp?table=qna 질답 게시판 RSS]
         [http://zeropage.org/jsp/board/thin/rss.jsp?table=ob1 OB 게시판 RSS]
         root = /jsp/board/thin/?table=
  • MoreEffectiveC++/Appendix . . . . 12 matches
         For a more general reference on the language, the standard library, and how to apply it, there is no better place to look than the book by the man responsible for C++ in the first place: ¤ MEC++ Rec Reading, P10
         Stroustrup has been intimately involved in the language's design, implementation, application, and standardization since its inception, and he probably knows more about it than anybody else does. His descriptions of language features make for dense reading, but that's primarily because they contain so much information. The chapters on the standard C++ library provide a good introduction to this crucial aspect of modern C++. ¤ MEC++ Rec Reading, P12
          * '''''Effective C++''''', Second Edition: 50 Specific Ways to Improve Your Programs and Designs, Scott Meyers, Addison-Wesley, 1998, ISBN 0-201-92488-9. ¤ MEC++ Rec Reading, P14
         Murray's book is especially strong on the fundamentals of template design, a topic to which he devotes two chapters. He also includes a chapter on the important topic of migrating from C development to C++ development. Much of my discussion on reference counting (see Item 29) is based on the ideas in C++ Strategies and Tactics.
         Each chapter in this book starts with some C++ software that has been published as an example of how to do something correctly. Cargill then proceeds to dissect — nay, vivisect — each program, identifying likely trouble spots, poor design choices, brittle implementation decisions, and things that are just plain wrong. He then iteratively rewrites each example to eliminate the weaknesses, and by the time he's done, he's produced code that is more robust, more maintainable, more efficient, and more portable, and it still fulfills the original problem specification. Anybody programming in C++ would do well to heed the lessons of this book, but it is especially important for those involved in code inspections. ¤ MEC++ Rec Reading, P21
         Carroll and Ellis discuss many practical aspects of library design and implementation that are simply ignored by everybody else. Good libraries are small, fast, extensible, easily upgraded, graceful during template instantiation, powerful, and robust. It is not possible to optimize for each of these attributes, so one must make trade-offs that improve some aspects of a library at the expense of others. Designing and Coding Reusable C++ examines these trade-offs and offers down-to-earth advice on how to go about making them. ¤ MEC++ Rec Reading, P30
         The first part of the book explains C++ for FORTRAN programmers (now there's an unenviable task), but the latter parts cover techniques that are relevant in virtually any domain. The extensive material on templates is close to revolutionary; it's probably the most advanced that's currently available, and I suspect that when you've seen the miracles these authors perform with templates, you'll never again think of them as little more than souped-up macros. ¤ MEC++ Rec Reading, P33
         The magazine has made a conscious decision to move away from its "C++ only" roots, but the increased coverage of domain- and system-specific programming issues is worthwhile in its own right, and the material on C++, if occasionally a bit off the deep end, continues to be the best available. ¤ MEC++ Rec Reading, P42
         In November 1995, a moderated version of comp.lang.c++ was created. Named °comp.lang.c++.moderated, this newsgroup is also designed for general discussion of C++ and related issues, but the moderators aim to weed out implementation-specific questions and comments, questions covered in the extensive °on-line FAQ ("Frequently Asked Questions" list), flame wars, and other matters of little interest to most C++ practitioners. ¤ MEC++ Rec Reading, P48
  • RandomWalk2/재동 . . . . 12 matches
          rowLength = int(self.data[0].split()[0])
          colLength = int(self.data[0].split()[1])
          row = int(self.data[1].split()[0])
          col = int(self.data[1].split()[1])
          rowLength = int(self.data[0].split()[0])
          colLength = int(self.data[0].split()[1])
          row[who] = int(self.data[who*2+1].split()[0])
          col[who] = int(self.data[who*2+1].split()[1])
          rowLength = int(self.data[0].split()[0])
          colLength = int(self.data[0].split()[1])
          row[who] = int(self.data[who*2+1].split()[0])
          col[who] = int(self.data[who*2+1].split()[1])
  • SeminarHowToProgramIt/Pipe/vendingmachine.py . . . . 12 matches
          self.dispenser='empty'
          self.dispenser=aButton
          def getCurrentDispenser(self):
          return self.dispenser
          def verifyDispenser(self, aKind):
          return self.dispenser == aKind
          self.assertEquals(expected, vm.getCurrentDispenser())
          self.assertEquals(expected, vm.getCurrentDispenser())
          def testVerifyDispenserTrue(self):
          self.assertEquals(expected, vm.verifyDispenser('white'))
          def testVerifyDispenserFalse(self):
          self.assertEquals(expected, vm.verifyDispenser('black'))
  • StandardWidgetToolkit . . . . 12 matches
          * swt.jar 를 classpath 에 잡고 다음 소스를 컴파일 한다.
         import org.eclipse.swt.widgets.Display;
          Display display = new Display();
          Shell shell = new Shell(display);
          while (!shell.isDisposed()) {
          if (!display.readAndDispatch())
          display.sleep();
          display.dispose();
  • 새싹교실/2012/AClass/5회차 . . . . 12 matches
         int sp=0;
         if(sp<MaxSize)
         stack[sp]=n;
         sp++;
         if(sp>0) //값튕�이I 있O을≫ 때納�
         sp--;
         *n=stack[sp];
         int sp=0;
         if(sp==7)
         scanf("%d",&arr[sp++]);
         if(sp==0)
         printf("%d ",arr[--sp]);
  • 영호의바이러스공부페이지 . . . . 12 matches
         001...........................Virus Spotlight, The Tiny virus
          - VIRUS SPOTLIGHT -
          The first virus I would like to spotlight is the Tiny virus, lets see
         there, and I wouldn't doubt if he weren't resposible for writing at least
         In every file you specify. So what we are doing is narrowing down where that
         ; In any case, the author assumes no responsibility for any damage
         ; this program should not be turned over to irresponsible hands...
         code_start equ 100h ; Address right after PSP in memory
          org code_start ; Start code image after PSP
         exe_filespec db "*.EXE",0
         com_filespec db "*.COM",0
          mov dx,offset exe_filespec ; Check for .EXE extension first
          mov dx,offset com_filespec ; Check for .COM extension now
         While the virus is no groundbreaker - the graphic display that is given by
         On the last Friday of the month the virus will display a full color, full
          Spotlight on Vienna
          Editoral on virus speed
  • 영호의해킹공부페이지 . . . . 12 matches
         many are, a root shell will be spawned, giving full remote access.
         The stack pointer (SP) always points to the top of the stack, the bottom of it
         stack by giving their offsets from SP, but as POP's and PUSH's occur these
         hopefully by executing code of our choice, normally just to spawn a shell.
         with shellcode, designed to spawn a shell on the remote machine, and
         EBX=00530000 SS=0167 ESP=0063fe0c EBP=00630031
         EBX=00530000 SS=0167 ESP=0063fe00 EBP=61616161
         strcat(), sprintf(), vsprintf(), gets() and loops using getc(), fgetc() and
         the one specified in the zine. :) Right, just a small update, but a necessary
         (Amount of times the string will be displayed)
         (Displays string) [int 21h is the MS-DOS function call interrupt - Ed]
          szRSP db "RegisterServiceProcess",0
          push offset szRSP
         The code is a combination of the SP code (5 digit) and phone IMEI (15 digit)
         display) using PCLocals:
         Choose menu 6 (Field Test Display Settings).
         npt53 - | npt53-01.nt.saix.net | Nelspruit dial up
         npt25 - | npt25-01.saix.net | Nelspruit dial up
  • 큰수찾아저장하기/김영록 . . . . 12 matches
         static int space[4][4];
          scanf("%d",&space[i][j]);
         space[i][3] = width_sort(i);
         space[3][i] = height_sort(i);
         space[3][3] = all_sort();
          if (max < space[a][i]){
          max = space[a][i];
          if (max < space[a][i]){
          max = space[a][i];
          if (max < space[i][j]){
          max = space[i][j];
          printf("%d ",space[i][j]);
  • ParametricPolymorphism . . . . 11 matches
         그중 차들을 추상화하여 표현한 명사 Car, 그것의 하위의 것들은 sportCar, luxuryCar 이렇게 3개의 객체를 생각해보자.
         당연히 Car 와 sportCar, luxuryCar 는 서로 동일한 원리로 움직이겠지만 동일하지는 않다.
          return new SportCar();
         Car sportCar = getCar("young man");
         SportCar, LuxuryCar는 Car를 상속받는 클래스 이므로 IS-A의 관계라고 할 수 있다.
         따라서 SportCar, LuxuryCar의 인스턴스(instance)가 Car객체 변수인 sportCar, luxuryCar에 대입이 가능하다.
         Car sportCar = getCar("young man");
         sportCar.startTurboEngine();
         SportCar sportCar = getCar("young man");
         sportCar.startTurboEngine();
         역시 에러가 난다. SportCar에 대입되는 getCar():Car는 SportCar보다 상위의 개념은 Car이기 때문이다.
         SportCar sportCar = (SportCar) getCar("young man");
         sportCar.startTurboEngine();
         [AcceleratedC++/Chapter13], [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200505230005 임백준의 소프트웨어 산책/임배준 지음], WikiPedia:Christopher_Strachey
  • Spring/탐험스터디/wiki만들기 . . . . 11 matches
         === Spring Framework ===
         === Spring Security ===
          1. Spring dependency injection을 이용하는 법
          * spring security tab library
          * spring security에 관련된 기능들을 html/js에서 쓸 수 있다.
         <%@ taglib uri="http://www.springframework.org/security/tags" prefix="sec" %>
          * Spring Security의 Role Voter는 "ROLE_" 접두어를 사용한 접근 속성만 처리한다. 단 접두어는 커스터마이징이 가능하다.
         === JSP ===
          * 좀 오래한 Spring, Hibernate도 어려움. CGLib, Spring Security, JSP, Session 찾아봐야겠다.
          * 이전 (리비전 9)에서는 jsp 에서 pageContext.getAttribute("page")로 Response의 page를 불러올 수 있었는데 리비전 10부터 pageContext.getRequst().getAttribute()(또는 request.getAttribute)를 해야 page를 불러올 수 있다. 왜지? 모르겠음. 한참헤멤
          * Jasper는 JSP를 java로 변환해 실행시키는 엔진인 것 같다.
          * home.jsp는 home_jsp.java로 변환되는 식
          * login.jsp 를 만들어서 커스터마이징 한 로그인 페이지를 사용할 수 있게 수정했다.
          * spring security의 tag library의 ifAllGranted, ifNotGranted등을 사용할 수 있다.
          * 컨트롤러 함수에 인자를 다르게 해서 OverLoading하려 했으나 ResuestMapping이 같아서 Spring이 Ambiguous Mapping Exception을 발생시켰다.
          * spring security에서 "/create" url에 authentication을 설정
          * 이제 로그인되지 않은 사용자가 페이지 생성을 요청하면 Spring Security에 의해 Signup 페이지로 이동된다. 끗
         [[Spring/탐험스터디]]
  • UML . . . . 11 matches
         In software engineering, Unified Modeling Language (UML) is a non-proprietary, third generation modeling and specification language. However, the use of UML is not restricted to model software. It can be used for modeling hardware (engineering systems) and is commonly used for business process modeling, organizational structure, and systems engineering modeling. The UML is an open method used to specify, visualize, construct, and document the artifacts of an object-oriented software-intensive system under development. The UML represents a compilation of best engineering practices which have proven to be successful in modeling large, complex systems, especially at the architectural level.
         This diagram describes the structure of a simple Restaurant System. UML shows [[Inheritance_(computer_science)|Inheritance]] relationships with a [[triangle]]; and containers with [[rhombus|diamond shape]]. Additionally, the role of the relationship may be specified as well as the cardinality. The Restaurant System has any number of Food dishes(*), with one Kitchen(1), a Dining Area(contains), and any number of staff(*). All of these objects are associated to one Restaurant.
         Another problem is that UML doesn't apply well to distributed systems. In such systems, factors such as serialization, message passing and persistence are of great importance. UML lacks the ability to specify such things. For example, it is not possible to specify using UML that an object "lives" in a [[server]] process and that it is shared among various instances of a running [[process]].
         At the same time, UML is often considered to have become too bloated, and fine-grained in many aspects. Details which are best captured in source code are attempted to be captured using UML notation. The [[80-20 rule]] can be safely applied to UML: a small part of UML is adequate for most of the modeling needs, while many aspects of UML cater to some specialized or esoteric usages.
         [http://www.codeproject.com/cpp/oopuml.asp] - UML 강좌
         [http://www.sparxsystems.com.au/resources/uml2_tutorial/] - 좋은 UML 튜토리얼
  • 안윤호의IT인물열전 . . . . 11 matches
         [http://www.zdnet.co.kr/programming/technews/article.jsp?id=63523&forum=1 오타쿠와 프로그래머는 닮은꼴?]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=62800 상상력 증폭기와 앨런 케이]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=62078 메멕스와 엥겔바트]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=61245 튜링과 에니그마를 아십니까?]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=60258 30년전 컴퓨터 혁명기 PARC를 기억하나요?]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=59100 혼돈을 퍼뜨리는 미디어 바이러스]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=56863 우연이 창조한 킬러 애플리케이션]
         [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=53566 백업이 없어 더 진지한 벼룩의 삶]
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=52632 '스톨만의 이의있습니다']
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=51851 피터드러커가 말하는 '지식사회']
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=51170 데이터스모그와 오버클러킹]
  • Kongulo . . . . 10 matches
         # this software without specific prior written permission.
         # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
          for item in options.pw.split(','):
          (uid, substring) = item.split('@')
          '''Adds ability to parse robot files where same user agent is specified
          '''An object that handles checking if we should fetch and crawl a specific
          # specifically the 'If-Modified-Since' header, to prevent us from fetching
          'keep fetching the specified page and pages it points to. '
          '60). Only valid if -l is also specified.')
         # obj = win32com.client.Dispatch('GoogleDesktopSearch.Register')
          # ['Title', 'Kongulo', 'Description', 'A simple web spider that '
  • OurMajorLangIsCAndCPlusPlus/setjmp.c . . . . 10 matches
         // without specific prior written permission.
         // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
         #define OFS_ESP 16
         __declspec(naked) int setjmp(jmp_buf env)
          mov edx, 4[esp] // Get jmp_buf pointer
          mov eax, [esp] // Save EIP
          mov OFS_EBP[edx], ebp // Save EBP, EBX, EDI, ESI, and ESP
          mov OFS_ESP[edx], esp
         __declspec(naked) void longjmp(jmp_buf env, int value)
          mov edx, 4[esp] // Get jmp_buf pointer
          mov eax, 8[esp] // Get return value (eax)
          mov esp, OFS_ESP[edx] // Switch to new stack position
          mov [esp], ebx
         [OurMajorLangIsCAndCPlusPlus]
  • TkinterProgramming/Calculator2 . . . . 10 matches
          self.myNameSpace = {}
          return repr(eval(code, self.myNameSpace, self.myNameSpace))
          exec code in self.myNameSpace, self.myNamespace
          self.display.component('text').delete(1.0, END)
          self.display.insert(END, '\n')
          self.display.insert(END, '%s\n' % result, 'ans')
          self.display.insert(END, key)
          self.display = Pmw.ScrolledText(self, hscrollmode = 'dynamic',
          self.display.pack(side=TOP, expand = YES, fill=BOTH)
          self.display.tag_config('ans', foreground='white')
          self.display.component('text').bind('<Key>', self.doKeypress)
          self.display.component('text').bind('<Return>', self.doEnter)
  • TkinterProgramming/SimpleCalculator . . . . 10 matches
          display = StringVar()
          textvariable=display).pack(side=TOP, expand=YES, fill=BOTH)
          button(keyF, LEFT, char, lambda w=display, s='%s' % char: w.set(w.get() + s))
          btn.bind('<ButtonRelease-1>', lambda e, s = self, w = display: s.calc(w), '+')
          btn = button(opsF, LEFT, char, lambda w = display, c = char : w.set(w.get() + ' ' + c + ' '))
          button(clearF, LEFT, 'Clr', lambda w=display: w.set(''))
          def calc(self, display):
          display.set(repr(eval(display.get())))
          display.set("Error")
  • 고한종/십자가돌리기 . . . . 10 matches
          int spin =0;
          spin++;
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
          printf("회전수 : %d\n",spin);
  • 작은자바이야기 . . . . 10 matches
          * SpringSource Tool Suite(Eclipse IDE)의 기본 설정과 프로젝트 설정에 필요한 기본적인 정보를 설명했습니다.
          * http://springsource.org/
          * http://springsource.com/
          * http://neopythonic.blogspot.com/2008/10/why-explicit-self-has-to-stay.html
          * '''S'''RP (Single responsibility principle)
          * '''L'''SP (Liskov substitution principle)
          * '''I'''SP (Interface segregation principle)
          * Introspector : 클래스를 BeanInfo로 만들 수 있음.
          * resolve dependencies from workspace projects
          * javaSE : JLS(java language specification) + java api를 가리킴. 자바의 실제 문법과 언어에 필요한 기본적인 기능들. 참조 구현체로는 hotspot JVM이 있다.
          * response <- Servlet Container <- Filter <- Servlet
          * invokespecial - vtable lookup을 하지 않고 메소드를 호출하는 경우. 어떤 메소드를 호출해야 하는지 정해져 있는 경우에 사용된다. new, private method, super 등.
  • 02_C++세미나 . . . . 9 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • AcceleratedC++/Chapter6 . . . . 9 matches
          === 6.1.1 Another way to split ===
          * 5장에서 공부한 것 중에 주어진 string을 공백을 기준으로 잘라서, vector에다 넣은 다음 리턴해주는 함수가 있었다.(split) 이것을 좀 더 간단히 만들어보자. 앞의 것은 굉장히 알아보기 힘들게 되어있다.
         vector<string> split(const string& str)
          i = find_if(i, str.end(), not_space); // 공백이 아닌 부분을 찾고
          iter j = find_if(i, str.end(), space); // 공백인 부분을 찾아서
          * 훨씬 알아보기 쉬워졌다. 5장의 split은 find_if마다 열심히 루프를 돌렸었다. 이제 차근차근 살펴보자.
          * isspace는 표준 라이브러리에서 지원하는 함수임에다 불구하고, 왜 따로 만들었을까? 바로 isspace는 여러 언어 버젼으로 오버로딩 되어 있기 때문이다. 템플릿 함수의 인자로 오버로딩된 함수를 넘겨주는 것은 쉽지 않다. 어떤 버젼인지 알수가 없기 때문이다. 이것이 우리가 isspace역할을 하는 함수를 새로 만든 이유다.
         bool isPalindrome(const string& s)
  • BlueZ . . . . 9 matches
         The overall goal of this project is to make an implementation of the Bluetooth™ wireless standards specifications for Linux. The code is licensed under the GNU General Public License (GPL) and is now included in the Linux 2.4 and Linux 2.6 kernel series.
          int max_rsp, num_rsp;
          max_rsp = 255;
          ii = (inquiry_info*)malloc(max_rsp * sizeof(inquiry_info));
          num_rsp = hci_inquiry(dev_id, len, max_rsp, NULL, &ii, flags);
          if( num_rsp < 0 ) perror("hci_inquiry");
          for (i = 0; i < num_rsp; i++) {
  • Chapter I - Sample Code . . . . 9 matches
         RenameThisPage : 페이지 이름 수정 필요. 궁리중 --["1002"]
          ==== Character-Based Display ====
         PC_DispClrScr() // Clear the screen
         PC_DispClrLine() // Clear a single row (or line)
         PC_DispChar() // Display a single ASCII chracter anywhere on the screen
         PC_DispStr() // Display and ASCII strin anywhere on the screen
          수행시간 측정은 한 task 의 수행시간을 측정하기 위해서 한다. (당연한거 아냐?). 이 측정은 PC의 82C52 타이머 2번을 통해 수행된다. 수행시간 측정을 위한 함수로는 PC_ElapsedStart()와 PC_ElapsedStop()이 있다. 하지만 이 두 함수를 사용하기 전에 PC_ElapsedInit()를 호출해야한다. 이 함수는 두 함수와 관련된 오버헤드를 측정하는데 사용된다. 이렇게 하면 PC_ElapsedStop 함수에 의해 수행시간이 리턴된다(마이크로세컨드). 이 두 함수는 모두 리엔터런트(주 : 몇 개의 프로그램이 동시에 하나의 task나 subroutine을 공유하여 쓰는 것에 대해 말함, from 한컴사전) 하지 않아야한다. 다음은 PC_DispChar()함수의 측정시간을 구하는 예이다.
         PC_DispChar(40, 24, 'A', DISP_FGND_WHITE);
  • Java2MicroEdition/MidpHttpConnectionExample . . . . 9 matches
         === Spike2.java ===
         package com.minnysunny.mobilerssreader.spike;
         public class Spike2 extends MIDlet implements CommandListener {
          private Display display;
          public Spike2() {
          SpikeGetHtml sgh = new SpikeGetHtml("http://dduk.idaizy.com/j2me/test.txt");
          display = Display.getDisplay(this);
          display.setCurrent(tb);
          public void commandAction(Command c, Displayable d) {
         === SpikeGetHtml.java ===
         package com.minnysunny.mobilerssreader.spike;
         public class SpikeGetHtml {
          public SpikeGetHtml(String url) {
  • SmallTalk/강좌FromHitel/강의4 . . . . 9 matches
         있고, 나머지 하나는 "untitled - workspace"라는 제목이 붙여진 "일터"가
         이 창은 뒤에서 설명할 '일터'(workspace)와 비슷한 기능을 합니다. 그러나
         일터(workspace)란 Smalltalk 환경에서 알림판 다음으로 중요한 창입니다.
         객체 탐색기(object inspector)는 명령을 실행할 떄 나 글
         위의 명령을 글쇠로 실행해 보면 "Inspecting a SortedCollection"
         개의 창은 각각 현재 창의 뼈대, 현재 선택된 객체가 가지는 꼴(aspect), 그
          SmalltalkWorkspace>>evaluateRange:ifFail:
          SmalltalkWorkspace>>evaluateItIfFail:
          SmalltalkWorkspace>>evaluateIt
  • WinampPlugin을이용한프로그래밍 . . . . 9 matches
         input plugin은 해당 화일을 읽어드리고 output plugin 으로의 출력을 소스를 제공한다. output plugin 은 출력 소스를 사운드카드나 하드 디스크로의 출력을 관장한다. 이 중간에 DSP 와 Visual plugin 이 callback 으로 결과물을 받은뒤 변수들을 이용한다.
         // dsp-functions
         int dsp_donothing(short int *, int cnt, int, int, int) {
         int dsp_isactive() {
         int VSAGetMode(int *specNch, int *waveNch) {
          *specNch = *waveNch = 0;
          // DSP Plugin 부분. 역시 위와 비슷한 맥락일듯.
          in->dsp_dosamples = dsp_donothing;
          in->dsp_isactive = dsp_isactive;
  • XMLStudy_2002/Start . . . . 9 matches
          *Kawa4.0에서는 Project나 Workspace에 대한 정보 및 기타 몇 가지 프로그램에 대한 정보를 XML문서 형태로 유지
         <!ENTITY nbsp " ">
         <title> < 각&nbsp; &nbsp; &nbsp;국의&nbsp; &nbsp; &nbsp;통화(영국 & 일본) > </title>
         이경우에는 desc라는 어트르뷰트를 사용하지 않아도 되고,만약 사용하는 경우에 이 어트리뷰트의 값에는 White space 처리를 하지 않겠다는 예이다.
  • [Lovely]boy^_^/EnglishGrammer/ReportedSpeech . . . . 9 matches
         = Reported Speech =
         == Unit44. Reported speech(1) (He said that...) ==
          1. You can repeat Tom's words (direct speech)
          2. Or you can use reported speech
          B. When we use reported speech, the main verb of the sentence is usually past. The rest of the sentence is usually past, too :
          C. The simple past can usually stay the same in reported speech, or you can change it to the past perfect.
         == Unit45. Reported speech(2) ==
          A. It is not always necessary yo change the verb when you use reported speech. If you report something and it is still true, you do not need to change the verb.
          We also use the infinitive(to do/ to stay, etc...) in reported speech, especially with tell and ask(for orders and requests)
  • 임시 . . . . 9 matches
         Religion & Spirituality: 22
         Sports: 26
         In the first stage, you will write a multi-threaded server that simply displays the contents of the HTTP request message that it receives. After this program is running properly, you will add the code required to generate an appropriate response.
         [http://developer.amazonwebservices.com/connect/entry.jspa?externalID=101&categoryID=19 Amazon E-Commerce Service API]
         &Operation=ItemSearch &SearchIndex=SportingGoods
         API Reference - Response Groups - Request, Small, Medium, Large, Image, ...
         REST allows you to make calls to ECS by passing parameter keys and values in a URL (Uniform Resource Locator). ECS returns its response in XML (Extensible Markup Language) format. You can experiment with ECS requests and responses using nothing more than a Web browser that is capable of displaying XML documents. Simply enter the REST URL into the browser's address bar, and the browser displays the raw XML response.
  • 2010php/방명록만들기 . . . . 8 matches
         이름&nbsp;&nbsp;<input type='text' name='input_name' maxlength='10' size='10'>&nbsp;&nbsp;&nbsp;&nbsp;
         비밀번호&nbsp;&nbsp;<input type="password" name='input_pw'size='4' maxlength='4'>
  • 2학기파이선스터디/if문, for문, while문, 수치형 . . . . 8 matches
         >>> order = 'spagetti'
         >>> if order == 'spam':
         elif order == 'spagetti':
         >>> order = 'spagetti'
         >>> menu = { 'spam':500, 'ham':700, 'egg':300, 'spagetti':900}
         >>> L = [ 'cat', 'dog', 'bird', 'pig', 'spam']
         4 spam
  • 2학기파이선스터디/문자열 . . . . 8 matches
         >>> u = ' spam and ham '
         >>> u .'''split'''() # 공백을 기준으로 분리
         ['spam','and','ham'] <--- 단어의 리스트가 얻어짐.
         >>> u.'''split'''('and') # 'and' 를 기준으로 분리. 'and'는 리스트에 없음.
         ['spam', 'ham']
         >>> t = u.'''split'''()
         'spam:and:ham'
         spam
  • AcceleratedC++/Chapter8 . . . . 8 matches
         using std::isspace;
         inline bool space(char c)
          return isspace(c);
         inline bool not_space(char c)
          return !isspace(c);
         void split(const string& str, Out os) { // changed
          i = find_if(i, str.end(), not_space);
          iter j = find_if(i, str.end(), space);
  • BusSimulation/태훈zyint . . . . 8 matches
         using namespace std;
          gotoxy(bus[i].getBusPos()+1,1);
          gotoxy(bus[i].getBusPos()+1,i+3);
          gotoxy(bus[i].getBusPos()+1,BusNo+4);
          cout << i << ":" << bus[i].getBusPos() << "," << bus[i].isstation() << ", 승객수:" << bus[i].getPassengers() <<endl;
          int getBusPos() { return buspos; } // 버스의 현재 위치
          buspos += (sec/3600.0)*KilloPerHour_Bus; //위치를 이동시키고
          while(buspos > BusLanelength() + BusStationNo+1) buspos -= BusLanelength() + BusStationNo +1;
          return buspos;
          while(getBusPos() != busStation[i]+i+1 && i<= BusStationNo-1){
          buspos = 0;
          double buspos; // 버스의 현재 위치
  • CPP_Study_2005_1/Basic Bus Simulation/김태훈 . . . . 8 matches
         using namespace std;
          void change_speed(const int n) { speed=n; }
          float buspos(const int min,const int lanelen) {
          pos = hour * speed;
          int speed;
          tmpclass.change_speed(tmpint);
          cout << j->buspos(min+hour*60,lanelen) << " km" << endl;
  • CleanCode . . . . 8 matches
          * [http://www.filewiki.net/xe/index.php?&vid=blog&mid=textyle&act=dispTextyle&search_target=title_content&search_keyword=gerrit&x=-1169&y=-20&document_srl=10376 gerrit install guide]
          * [http://u1aryz.blogspot.kr/2011/12/gerrit-error-gerritsite-not-set.html Gerrit기동시에「** ERROR: GERRIT_SITE not set」]
          * spec에 지정되어 있지 않은 경우에 테스트 코드를 작성해야 하는가?
          * spec에 지정되어 있지 않다는건 무슨 의미지?? - [서지혜]
          * 예를들면 입력이 들어왔을 때 A라는 출력이 나와야 한다고만 spec에 정의돼있으면 입력이 없을 때에 대한 테스트 코드는 무슨 기준으로 작성하느냐 또는 에러처리를 해야 하는가에 대한 기준을 말하는것 같습니다. - [서영주]
          * [http://docs.oracle.com/javase/specs/jls/se7/jls7.pdf java se7 spec]
          * EJB, Spring ... : 해당 framework에서 제공하는 다양한 방법들을 통해 xml, annotation 등의 간단한 설정으로 횡단 관심사에 관한 코드를 작성하지 않고도 해당 기능들을 자신의 프로그램에 넣을 수 있다.
          * 인터페이스 분리 원칙 (ISP)
          * 아름다운 걸로 하자면 unit sphere 같은 게 아름다울 것 같긴 한데... 그건 좀 아닌 것 같죠 -_-;; - [서민관]
  • Data전송 . . . . 8 matches
         JSP (Request, Response)
         // form method="get" or "post" 넣어주면 된다. action="receive.jsp" //
         <form name="sub" method="post" action="receive.jsp">
         <input type="checkbox" name="hobby" value="sport">sport
         <input type="radio" name="season" value="spring" checked>spring<br>
         === receive.jsp File ===
         [JSP]
  • DesignPatternsAsAPathToConceptualIntegrity . . . . 8 matches
         One approach would be to identify and elevate a single overriding quality (such as adaptability or isolation of change) and use that quality as a foundation for the design process. If this overriding quality were one of the goals or even a specific design criteria of the process then perhaps the “many” could produce a timely product with the same conceptual integrity as “a few good minds.” How can this be accomplished and the and at least parts of the “cruel dilemma” resolved?
         1. Some O-O design methodologies provide a systematic process in the form of axiomatic steps for developing architectures or micro-architectures that are optimality partitioned (modularized) according to a specific design criteria.
         c. Wirfs-Brock with Responsibility Driven Design (RDD) raises contract minimization as the system modularization principle.
         ResponsibilityDrivenDesign 의 Wirfs-Brock는 system modularization 에 대해 계약 최소화를 들었다.
         5. EDD and RDD will generate different design patterns that meet the primary modularization principle “encapsulate the part that changes.” in different ways when applied according to their axiomatic rules. For example RDD generates Mediator, Command, Template Method and Chain of responsibility (mostly behavior) where as EDD generates Observer, Composite, and Chain of responsibility (mostly structure).
         EDO 와 RDD 는 이 1차 원리인 "변화하는 부분에 대해 캡슐화하라"와 그들의 명확한 룰들에 따라 적용될때 다른 방법들로 만나서, 다른 디자인 패턴들을 생성해 낼 것이다. 예를 들면, RDD는 Mediator, Command, TemplateMethod, ChainOfResponsibility (주로 behavior), EDD 는 Observer, Composite, ChainOfResposibility(주로 structure) 를 생성해낼것이다.
  • DispatchedInterpretation . . . . 8 matches
         == Dispatched Interpretation ==
          void display(Shape& aShape)
          space();
          space();
          space();
          space();
         void PostScriptShapePrinter::display(Shape& aShape)
         void PostScriptShapePrinter::display(Shape& aShape)
  • Linux/필수명령어/용법 . . . . 8 matches
         - more [ -ncdflspu ][ 줄번호 ][ 파일이름(들) ]
         - speaker
         - speaker
         split
         - split -행 수 파일명 [ 태그명 ]
         - $ split -400 project.a pro
         - -c 파일명 : 파일이 문자 전용 파일(character special file)이면 참
         wc라는 이름은 word counter를 의미하는 것이 아닌가 생각한다. 아무런 옵션을 주지 않고서 사용하면 행수, 단어수, 문자수를 모두 검사해서 보고한다. 텍스트 문서 속에서 단어란 공백(space)문자, 탭(tab)문자 그리고 개행(newline)문자에 의해 구분되는 문자들의 집합을 의미한다.
  • MoniWikiPo . . . . 8 matches
         msgid "Use more specific text"
         #: ../plugin/rcspurge.php:24
         msgid "Invalid rcspurge range"
         #: ../plugin/rcspurge.php:29
         "<b>Lists:</b> space and one of * bullets; 1., a., A., i., I. numbered "
         "1.#n start numbering at n; space alone indents.<br />\n"
         "<b>Tables</b>: || cell text |||| cell text spanning two columns ||;\n"
         "no trailing white space allowed after tables or titles.<br />\n"
  • PatternOrientedSoftwareArchitecture . . . . 8 matches
          * 이해하기 쉽고 유지보수도 하기 쉽게 하기 위해서 유사한 필요한 기능(responsibilities)을 그룹화 한다.
          * 해야할 기능(responsibility)
          * 구조 : 자신의 시스템을 blackboard(knowledge source들의 집합, control components)라고 불리우는 component로 나누어라. blackboard는 중앙 데이터 저장소이다. solution space와 control data들의 요소들이 여기에 저장된다. 하나의 hypothesis는 보통 여러가지 성질이 있다. 그 성질로는 추상 레벨과 추측되는 가설의 사실 정도 또는 그 가설의 시간 간격(걸리는 시간을 말하는거 같다.)이다. 'part-of'또는'in-support of'와 같이 가설들 사이의 관계를 명확이 하는 것은 보통 유용하다. blackboard 는 3차원 문제 공간으로 볼 수도 있다. X축 - time, Y축 - abstraction, Z축 - alternative solution. knowledge source들은 직접적으로 소통을 하지 않는다. 그들은 단지 blackboard에서 읽고 쓸뿐이다. 그러므로 knowledge source 들은 blackboard 의 vocabulary들을 이해해야 한다. 각 knowledge source들은 condition부분과 action부분으로 나눌 수 있다. condition 부분은 knowledge source가 기여를 할수 있는지 결정하기 위해서 blackboard에 적으면서 현재 solution process 의 상태를 계산한다. action 부분은 blackboard의 내용을 바꿀 수 있는 변화를 일으킨다. control component 는 루프를 돌면서 blackboard에 나타나는 변화를 관찰하고 다음에 어떤 action을 취할지 결정한다. blackboard component는 inspect와 update의 두가지 procedure를 가지고 있다.
          Responsibility : Manages central data
          Responsibility : Evaluates its own applicability, Computes a result, Updates Black board
          Responsibility : Monitors Blackboard, Schedules Knowledge Source activations
          * 2.그 문제에 대한 solution space(해결 공간)을 정의하여라.
  • ProjectPrometheus/CookBook . . . . 8 matches
          protected void doGet(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException {
          httpServletResponse.setContentType("text/html; charset=euc-kr");
          PrintWriter out = httpServletResponse.getWriter();
         Wiki:SandglassProgramming
          HttpServletResponse response)
          //super.service(request, response);
          response.setContentType("text/html; charset=euc-kr");
         getParameter 가 호출되기 전에 request의 인코딩이 세팅되어야 한다. 현재 Prometheus의 Controller의 경우 service 의 명을 보고 각각의 서비스에게 실행 권한을 넘기는데, 가장 처음에 request의 characterEncoding 을 세팅해야 한다. 차후 JSP/Servlet 컨테이너들의 업그레이드 되어야 할 내용으로 생각됨 자세한 내용은 http://javaservice.net/~java/bbs/read.cgi?m=appserver&b=engine&c=r_p&n=957572615 참고
         .../Prometheus$ java -cp "$CLASSPATH:./bin" junit.textui.TestRunner org.zeropage.prometheus.test.AllAllTests
  • ViImproved/설명서 . . . . 8 matches
          예 제 set wm=3 set sm ## 축약어 사용. 입력시 bbm을 bbmaster@flower.chungnam.ac.kr로 바뀐다 ab bbm bbmaster@flower.chungnam.ac.kr ## 스펠링 체크 매크로 map V :w^M:!spell -x %^M:e!^M^M
          space →(스페이스 바)와 같음
          예 제 :map V :w^M:!ispell -x $^M:e!^M^M (영문철자 검사)
         ]] 다음 section ^h 삽입모드에서 backspace :x 쓰고 나가기
         spacebar 다음문자 L 화면의 마지막 줄로 이동 :e <file> vi를 나가지 않고<file>편집
         lisp nolisp indentation을 lisp형식으로 삽입
  • WinampPluginProgramming/DSP . . . . 8 matches
         winamp SDK 를 받으면 sample 로 있는 dspecho 에 대한 분석.
         // Winamp test dsp library 0.9 for Winamp 2
         #include "dsp.h"
         winampDSPModule *getModule(int which);
         void config(struct winampDSPModule *this_mod);
         int init(struct winampDSPModule *this_mod);
         void quit(struct winampDSPModule *this_mod);
         void initpitch(struct winampDSPModule *this_mod);
         void quitpitch(struct winampDSPModule *this_mod);
         // 실제로 DSP 관련 처리시 호출되는 함수들.
         int modify_samples1(struct winampDSPModule *this_mod, short int *samples, int numsamples, int bps, int nch, int srate);
         int modify_samples2(struct winampDSPModule *this_mod, short int *samples, int numsamples, int bps, int nch, int srate);
         int modify_samples3(struct winampDSPModule *this_mod, short int *samples, int numsamples, int bps, int nch, int srate);
         int modify_samples4(struct winampDSPModule *this_mod, short int *samples, int numsamples, int bps, int nch, int srate);
         int modify_samples5(struct winampDSPModule *this_mod, short int *samples, int numsamples, int bps, int nch, int srate);
         // DSP 처리만을 위해서라면 별 필요 없다.
         winampDSPHeader hdr = { DSP_HDRVER, "Nullsoft DSP demo v0.3 for Winamp 2", getModule };
         winampDSPModule mod =
          modify_samples1, // DSP 처리시 호출 함수
         winampDSPModule mod2 =
  • [Lovely]boy^_^/EnglishGrammer/PresentAndPast . . . . 8 matches
          This means) She is driving now, at the time of speaking. The action is not finished.
          Often the action is happening at the time of speaking.
          But the action is not necessarily happening at the time of speaking.
          This means) Tom is not reading the book at the time of speaking.
          or repeateldy or that something is true in general. It is not important whether the action is happening at the time of speaking
          We use the present continuous for something that is happening at or around the time of speaking.
          like love hate want need prefer know realize sppose mean
          You can say I'm seeing when the meaning is "having a meeting with" (Especially in the future)
  • 몸짱프로젝트/CrossReference . . . . 8 matches
          wordList = sentence.split(' ')
         using namespace std;
          char split[] = " ,.;-";
          p = strtok(word, split);
          p = strtok(NULL, split);
         using namespace std;
         else if ( isspace(ch) || ispunct(ch) == 16) // 공백이거나
  • 서지혜/단어장 . . . . 8 matches
          당황하게 하다 : The thing that baffles me is that the conversations do not center around the adults but almost exclusively about their respective kids
          Density is physical intrinsic property of any physical object, whereas weight is an extrinsic property that varies depending on the strength of the gravitational field in which the respective object is placed.
          The traditional definition of race and ethnicity is related to biological and sociological factors respectively.
         '''spontaneously'''
          자발적으로 : Successful people spontaneously do things differently from those individuals who stagnate.
          방대한 : He spends a lot of his own time checking up on his patients, taking extensive notes on what he's thinking at the time of diagnosis, and checking back to see how accurate he is.
          What gives the book its integrity are the simplicity and veracity of there recipes and small touches - bits of history, discovery and personal reflection. - Harvey Steiman, Wine Spectator
          남에게 ~하지 못하게 하다 : With the exception of some sports, no characteristic of brain or body constrains an individual from reaching an expert level.
          to finish something, especially something that requires a conclusion
  • 이연주/공부방 . . . . 8 matches
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=black><b>)]]
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=blue><b>)]]헉; 뭔가 바껴서 된다;; 헉; [JuNe]님 감사합니다.^^~[[HTML(</b></font></span>)]]
          [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=ff4500><b>)]](손도 못대겠슈=,.=;)[[HTML(</b></font></span>)]]
  • 자바와자료구조2006 . . . . 8 matches
         [http://buyadipexonline.blogspirit.com/ buy adipex]
         [http://buyambienonline.blogspirit.com/ buy ambien]
         [http://eteamz.active.com/sumkin/files/buspar.html buspar]
         [http://www.gayhomes.net/billnew/buspar.html buspar]
         [http://h1.ripway.com/preved/buspar.html buspar]
  • 정모/2011.3.21 . . . . 8 matches
          * [Spring/탐험스터디]
          * SpringFramework를 공부하며 설계 원칙들도 함께 배움.
         == Emacs & Elisp ==
          * [이승한] 선배님의 Emacs & Elisp 세미나
          * Emacs & Elisp 후기 :의 소개를 보면서 다양한걸 사용하는 승한형에게 잘맞는 프로그램이라 생각됬다. 그 프로그램을 사용하기에 다양한걸 좋아하기도 하고 내가 가장많이쓰는건 Eclipse와 그걸 지원하는 플러그인이지만 여러가지를 개발하는 개발자에게 저것은 좋은프로그램이라 생각된다. 하지만 나에게는 아직도 Eclipse를 다루는것조차 아직은 버겁기에 우선 Eclipse를 하자는생각이 들었다.
          * 이번에 승한이 형의 Emacs. Elisp 세미나를 들었다. 세미나를 들어보니 Emacs는 매우 자신에 맞게 전환 할 수 있는 도구 인 것 같다. 와우 에드온 같이 자기에게 딱 맞게 설정하는 재미가 있을꺼 같다. 기회가 되면 한번 다뤄봐야겠다. 그리고 다음 OMS로 주제를 키넥트에 관해서 하고싶은데 아직 사지도 않아서!!! 뭘해야될지 고민이다... 그냥 요즘 새로나온 게임 인터페이스들에 대해 통짜로 해버릴까...고민중임 - [임상현]
          * Ice braking은 많이 민망합니다. 제가 제 실력을 압니다 ㅠㅠ 순발력+작문 실력이 요구되는데, 제가 생각한 것이 지혜 선배님과 지원 선배님의 입에서 가볍게 지나가듯이 나왔을 때 좌절했습니다ㅋㅋ 참 뻔한 생각을 개연성 있게 지었다고 좋아하다니 ㅠㅠ 그냥 얼버무리고 넘어갔는데, 좋은 취지이고 다들 읽는데도 혼자만 피하려한게 한심하기도 했습니다. 그럼에도, 이상하게 다음주에 늦게 오고 싶은 마음이 들기도...아...;ㅁ; 승한 선배님의 Emacs & Elisp 세미나는 Eclipse와 Visual Studio가 없으면 뭐 하나 건들지도 못하는 저한테 색다른 도구로 다가왔습니다. 졸업 전에 다양한 경험을 해보라는 말이 특히 와닿았습니다. 준석 선배님의 OMS는 간단한 와우 소개와 동영상으로 이루어져 있었는데, 두번째 동영상에서 공대장이 '바닥'이라 말하는 등 지시를 내리는게 충격이 컸습니다. 게임은 그냥 텍스트로 이루어진 대화만 나누는 줄 알았는데, 마이크도 사용하나봐요.. 그리고 용개가 등장한 게임이 와우였단 것도 새삼 알게 되었고, 마지막 동영상은 정말 노가다의 산물이겠구나하고 감탄했습니다. - [강소현]
          1. 승한오빠 특별 세미나(emacs & elisp) : 교육기간이니 '''칼퇴할때 세미나 한번 해주세요!!''' 라고 요청드렸는데 선배님 펌프질에 보람을 느꼈던 순간이었습니다. 칼보단 감자깎기가 흙당근이나 감자를 깎을때 진리이듯이 좋은 프로그램과 좋은 툴을 적절히 사용하는게 얼마나 중요한지를 다시 생각해볼 수 있었습니다. 이 세미나 이후 아직도 textPad 강제로(?) 사용하고 있는 2학년 학우들이 불쌍해졌습니다......
          * 키워드 전기수 재밌었습니다. 괜히 저는 혼자 말도 안돼는 드립치다가 웃음보 터져가지고 민망하게 진행도 못하긴 했었지만요 ㅋㅋㅋ elisp과 emacs 세미나는 파스텔톤 분위기에 취해서 흥미롭게 들었습니다. emacs는 '''단축키가 리눅스랑 같다'''는 이야기때문에 끌렸습니다... ㅋㅋ 그래서 설치하고 튜토리얼도 따라해봤습니다. 재밌더군요 {OK} OMS는 들으면서 놀랐습니다. 실제 마케팅부서에서 마케팅 나온 듯한 인상을 받았습니다. OMS를 보고 와우 스토리에 흥미도 생겼구요. 속으로 이런 생각도 했습니다. '와우는 무저갱이니까 와우 소설이나 읽어서 대리 만족이나 하자.' ㅋㅋㅋ 근데 소설 읽으면 결국 하게 될거 같아서 Stop Thinking! 결국 결론은 '''와우에는 접근도 하지 말자.''' 피자도 맛있게 '냠냠 쩝쩝 우물우물 쓰읍쓰읍 꿀꺽 쯥'하면서 잘 먹었습니다. 아쉬운 점이 있다면, 새싹 교실 트레이드를 못한 것 입니다. 제 반에 같이 햇빛을 못 쬐는 새싹이 있는데 결국 다른 새싹으로 바꾸지 못해서 제 새싹이 양분을 먹지 못했습니다...담번에는 꼭 흙 째로 옮겨주고 싶네요. - [박성현]
          * 키워드 전기수.. 키워드 던질때는 신났었는데 전기수를 하려니 음ㅋㅋ 어디서부터 문제였는지 모르겠네요ㅋㅋ emacs&elisp세미나는 조금 어려운감이 없지않아 있었지만 그래서 놓치지 않으려고 더 집중해 들었습니다. 무엇보다 졸업하신 선배님이 정모에 나오셨다는게 좋았어요!! 이렇게 선후배간의 링크가 계속 이어졌으면 좋겠습니다. 피자도 먹고 좋았어요. 와우세미나도 저는 와우를 그닥 좋아하지는 않지만 다들 무척 좋아하더군요ㅋㅋ OMS의 퀄리티가 갑자기 확 높아져서 부담스럽네요ㅜ
  • 02_Python . . . . 7 matches
         문자열 'spam', "guido's"
         사전 {'food':'spam','taste':'yum'}
         튜플 (1,'spam',4,'U')
         s2 = "spams" 이중 인용부호
         d2 = { 'spam':2, 'eggs':3 } 2개의 값을 가지는 사전
         호출 함수 실행 stdout.write("spam, ham.toast\n")
         호출 myfunc("spam, ham, toast\n")
  • ACM_ICPC/PrepareAsiaRegionalContest . . . . 7 matches
         using namespace std;
          static int workspace[MAX][MAX];
          workspace[i][j] = 0;
          workspace[x][y] = 1;
          if ( workspace[x+sx][y+sy] == 1 )
         using namespace std;
         using namespace std;
  • Classes . . . . 7 matches
         [http://www.yes24.com/Goods/FTGoodsView.aspx?goodsNo=1949638&CategoryNumber=002001026004 Advanced Engineering Mathematics 9/E]
         [http://www.aladdin.co.kr/shop/wproduct.aspx?ISBN=8971291346 최신 공업수학]
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200012050016 Compilers]
         [http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-045JSpring-2005/CourseHome/index.htm MIT open course ware] [[ISBN(0534950973)]]
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200309190006 Database Design Concept]
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200401090003 Computer Graphics with Open GL 3rd Ed]
         [http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/CourseHome/index.htm Linear Algebra]
          * Intersection - adaptive depth control, bounding volumes, first-hit Speedup
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200302180005 Understanding the Linux Kernel (2nd Edition)]
         [http://cslab.cse.cau.ac.kr/lecture_view.asp?num=1 Home]
  • DebuggingSeminar_2005 . . . . 7 matches
          || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tools/tools/rebase.asp ReBase MSDN] || Rebase is a command-line tool that you can use to specify the base addresses for the DLLs that your application uses ||
          || [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 분석툴 ||
          || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/_core_c_run2dtime_library_debugging_support.asp Debug CRT] || VC++4 에서 지원하기 시작한 C런타임 라이브러리 ||
  • FromCopyAndPasteToDotNET . . . . 7 matches
          * [http://msdn.microsoft.com/library/en-us/dnolegen/html/msdn_aboutole.asp What OLE Is Really About]
          * [http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/dataexchange/dynamicdataexchange/aboutdynamicdataexchange.asp About Dynamic Data Exchange]
          * [http://msdn.microsoft.com/library/en-us/dnautoma/html/msdn_ole2auto.asp Automation for OLE 2.0]
          * [http://msdn.microsoft.com/workshop/components/activex/intro.asp Introduction to ActiveX Controls]
          * [http://msdn.microsoft.com/library/en-us/cossdk/htm/betaintr_6d5r.asp Introducing COM+]
          * [http://msdn.microsoft.com/library/en-us/dndcom/html/msdn_dcomarch.asp DCOM Architecture]
          * [http://msdn.microsoft.com/library/en-us/cpguide/html/cpovrintroductiontonetframeworksdk.asp Overview of the .NET Framework]
  • Gof/Facade . . . . 7 matches
         서브시스템 클래스를 private 로 만드는 것은 유용하지만, 일부의 OOP Language가 지원한다. C++과 Smalltalk 는 전통적으로 class에 대한 namespace를 global하게 가진다. 하지만 최근에 C++ 표준회의에서 namespace가 추가됨으로서 [Str94], public 서브시스템 클래스를 노출시킬 수 있게 되었다.[Str94] (충돌의 여지를 줄였다는 편이 맞을듯..)
         ET++ application framework [WGM88] 에서, application은 run-time 상에서 application의 객체들을 살필 수 수 있는 built-in browsing tools를 가지고 있다.이러한 browsing tools는 "ProgrammingEnvironment'라 불리는 facade class를 가진 구분된 서브시스템에 구현되어있다. 이 facade는 browser에 접근 하기 위한 InspectObject나 InspectClass같은 operation을 정의한다.
         Choices operating system [CIRM93] 은 많은 framework를 하나로 합치기 위해 facade를 사용한다. Choices에서의 key가 되는 추상객체들은 process와 storge, 그리고 adress spaces 이다. 이러한 각 추상객체들에는 각각에 대응되는 서브시스템이 있으며, framework로서 구현된다. 이 framework는 다양한 하드웨어 플랫폼에 대해 Choices에 대한 porting을 지원한다. 이 두 서브시스템은 '대표자'를 가진다. (즉, facade) 이 대표자들은 FileSystemInterface (storage) 와 Domain (address spaces)이다.
         예를 들어, 가상 메모리 framework는 Domain을 facade로서 가진다. Domain은 address space를 나타낸다. Domain은 virtual addresses 와 메모리 객체, 화일, 저장소의 offset에 매핑하는 기능을 제공한다. Domain의 main operation은 특정 주소에 대해 메모리 객체를 추가하거나, 삭제하너가 page fault를 다루는 기능을 제공한다.
  • Gof/Singleton . . . . 7 matches
          2. namespace를 줄인다. SingletonPattern은 global variable을 줄임으로서 global variable로 인한 namespace의 낭비를 줄인다.
         InterViews user interface toolkit[LCI+92]는 toolkit의 Session과 WidgetKit 클래스의 unique instance에 접근하지 위해 SingletonPattern을 이용한다. Session은 application의 메인 이벤트를 dispatch하는 루프를 정의하고 사용자 스타일관련 데이터베이스를 저장하고, 하나나 그 이상의 물리적 display 에 대한 연결들(connections)을 관리한다. WidgetKit은 user interface widgets의 look and feel을 정의한다. WidgetKit::instance () operation은 Session 에서 정의된 환경변수에 기반하여 특정 WidgetKit 의 subclass를 결정한다. Session의 비슷한 operation은 지원하는 display가 monochrome display인지 color display인지 결정하고 이에 따라서 singleton 인 Session instance를 설정한다.
  • JSP . . . . 7 matches
         == JSP Programming ==
         1. hello. jsp 로 저장
         4. C:\Program Files\Apache Group\Tomcat 4.1\webapps\ROOT 에 hello.jsp 파일 옮긴후
         5. htp://localhost:7070/hello.jsp 후 refresh
         [Simple_Jsp_Ex]
         == JSP 동작 원리 ==
         웹 브라우저 -> jsp 요청 -> (웹서버) -> jsp 파일이면 jsp 엔진 처리해라! -> (엔진)
         [Eclipse와 JSP]
  • MoreEffectiveC++/Exception . . . . 7 matches
          void displayIntoInfo(const Information& info)
          display info in window corresponding to w;
          void displayIntoInfo(const Information& info)
          display info in window corresponding to w;
         class SpecialWidget: public Widget { ... };
          SpecialWidget localSpecialWidget;
          Widget& rw = localSpecialWidget;
         다음의 경우 passAndThrowWidget 이 던지는건 Widget 이다. 위에서 언급했듯이 static type으로 예외는 전달된다. 컴파일러는 rw가 SpecialWidget으로의 동작을 전혀 생각하지 않는다.
         == Item 14: Use exception specifications judiciously. ==
  • OurMajorLangIsCAndCPlusPlus/print/이도현 . . . . 7 matches
         using namespace std;
          int space = align - strlen(print_string);
          for(int i = 0 ; i < space ; i++)
          int space = align - strlen(print_string);
          for(int i = 0 ; i < space ; i++)
          int space = align - zero_position - 2;
          for(int i = 0 ; i < space ; i++)
         [OurMajorLangIsCAndCPlusPlus/print]
  • ProjectPrometheus/LibraryCgiAnalysis . . . . 7 matches
          * Servlet-Engine: Tomcat Web Server/3.2.1 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Windows 2000 5.0 x86; java.vendor=Sun Microsystems Inc.)
          #'maxdisp': '10',
          response = conn.getresponse()
          print response.status, response.reason
          data = response.read()
         http://165.194.100.2/cgi-bin/mcu201?LIBRCODE=ATSL&USERID=abracadabra&SYSDB=R&HISNO=0010&SEQNO=21&MAXDISP=10
         검색 부분 : http://www.lib.cau.ac.kr/search/search_200.jsp?
  • RSS . . . . 7 matches
         The technology behind RSS allows you to subscribe to websites that have provided RSS feeds, these are typically sites that change or add content regularly. To use this technology you need to set up some type of aggregation service. Think of this aggregation service as your personal mailbox. You then have to subscribe to the sites that you want to get updates on. Unlike typical subscriptions to pulp-based newspapers and magazines, your RSS subscriptions are free, but they typically only give you a line or two of each article or post along with a link to the full article or post.
         Before RSS, several similar formats already existed for syndication, but none achieved widespread popularity or are still in common use today, and most were envisioned to work only with a single service. For example, in 1997 Microsoft created Channel Definition Format for the Active Channel feature of Internet Explorer 4.0. Another was created by Dave Winer of UserLand Software. He had designed his own XML syndication format for use on his Scripting News weblog, which was also introduced in 1997 [1].
         RDF Site Summary, the first version of RSS, was created by Dan Libby of Netscape in March 1999 for use on the My Netscape portal. This version became known as RSS 0.9. In July 1999 Netscape produced a prototype, tentatively named RSS 0.91, RSS standing for Rich Site Summary, this was a compromise with their customers who argued the complexity introduced (as XML namespaces) was unnecessary. This they considered a interim measure, with Libby suggesting an RSS 1.0-like format through the so-called Futures Document [2].
         Soon afterwards, Netscape lost interest in RSS, leaving the format without an owner, just as it was becoming widely used. A working group and mailing list, RSS-DEV, was set up by various users to continue its development. At the same time, Winer posted a modified version of the RSS 0.91 specification - it was already in use in their products. Since neither side had any official claim on the name or the format, arguments raged whenever either side claimed RSS as its own, creating what became known as the RSS fork. [3]
         The RSS-DEV group went on to produce RSS 1.0 in December 2000. Like RSS 0.9 (but not 0.91) this was based on the RDF specifications, but was more modular, with many of the terms coming from standard metadata vocabularies such as Dublin Core. Nineteen days later, Winer released RSS 0.92, a minor and (mostly) compatible revision of RSS 0.91. The next two years saw various minor revisions of the Userland branch of RSS, and its adoption by major media organizations, including The New York Times.
         Winer published RSS 2.0 in 2002, emphasizing "Really Simple Syndication" as the meaning of the three-letter abbreviation. RSS 2.0 remained largely compatible with RSS 0.92, and added the ability to add extension elements in their own namespaces. In 2003, Winer and Userland Software assigned ownership of the RSS 2.0 specification to his then workplace, Harvard's Berkman Center for the Internet & Society.
         [http://blogs.law.harvard.edu/tech/rss RSS 2.0 Spec]
         [http://web.resource.org/rss/1.0/ RSS 1,0 Spec]
  • STL/vector/CookBook . . . . 7 matches
         using namespace std;
          * 몇 번 써본결과 vector를 가장 자주 쓰게 된다. vector만 배워 놓으면 list나 deque같은것은 똑같이 쓸수 있다. vector를 쓰기 위한 vector 헤더를 포함시켜줘야한다. STL을 쓸라면 #include <iostream.h> 이렇게 쓰면 귀찮다. 나중에 std::cout, std:vector 이런 삽질을 해줘야 한다. 이렇게 하기 싫으면 걍 쓰던대로 using namespace std 이거 써주자.
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • Slurpys/신재동 . . . . 7 matches
          if(len(string.split('C')) == 1):
          slump = string.split('H')[1]
          elif(len(string.split('C')) >= 2):
          slimp = string.split('C')[0]
          for i in range(len(string.split('C')) - 1):
          slump = string.split('C')[len(string.split('C')) - 1]
  • SmallTalk/강좌FromHitel/강의2 . . . . 7 matches
          시다. 그러면 "Transcript"와 "Workspace"라는 제목을 가진 두 개의 창이 뜰
          Workspace'라는 이름을 가진 창입니다. 이 창에는 아마 "Welcome to Dolphin
          여러분이 보고 있는 Workspace를 "일터"라고 부릅니다. 여기는 여러분이
          Space>글쇠를 이용하여 덩이를 지우게 되면, 덩이가 씌워진 명령의 실행 결
          Class allClasses asSortedCollection. ☞ "Inspector 창 열림"
          어떻습니까? "Inspecting a SortedCollection"이라는 제목의 창이 화면에 나
          타났습니다. 지금 나타난 창을 "객체 탐색기"(object inspector), 혹은 간단
          히 "탐색기"(inspector)라고 부릅니다.
  • UML/CaseTool . . . . 7 matches
         == Aspects of Functionality ==
         The UML diagram notation evolved from elderly, previously competing notations. UML diagrams as a means to draw diagrams of - mostly - [[Object-oriented programming|object oriented]] software is less debated among software developers. If developers draw diagrams of object oriented software, there is widespread consensus ''to use the UML notation'' for that task. On the other hand, it is debated, whether those diagrams are needed at all, on what stage(s) of the software development process they should be used and whether and how (if at all) they should be kept up-to date, facing continuously evolving program code.
         There is some debate among software developers about how useful code generation as such is. It certainly depends on the specific problem domain and how far code generation should be applied. There are well known areas where code generation is an established practice, not limited to the field of UML. On the other hand, the idea of completely leaving the "code level" and start "programming" on the UML diagram level is quite debated among developers, and at least, not in such widespread use compared to other [[software development]] tools like [[compiler]]s or [[Configuration management|software configuration management systems]]. An often cited criticism is that the UML diagrams just lack the detail which is needed to contain the same information as is covered with the program source. There are developers that even state that "the Code ''is'' the design" (articles [http://www.developerdotstar.com/mag/articles/reeves_design_main.html] by Jack W. Reeves [http://www.bleading-edge.com/]).
         ''Reverse engineering'' in this context means, that the UML tool reads program source code as input and ''derives'' model data and corresponding graphical UML diagrams from it (as opposed to the somewhat broader meaning described in the article "[[Reverse engineering]]").
         There are UML tools that use the attribute ''round trip'' (sometimes also denoted as ''round trip engineering'') to connote their ability to keep the ''source code'', the ''model data'' and the corresponding ''UML diagrams'' ''in sync''.
         This means that the user should be able to change either the ''model data'' (together with the corresponding diagrams) or the ''program source code'' and then the UML tool updates the other part automatically.
  • WikiSlide . . . . 7 matches
         "`Check spelling`" examines the text for unknown words.
         To add special formatting to text, just enclose it within markup. There are special notations which are automatically recognized as internal or external links or as embedded pictures.
         ||<rowbgcolor="#FFFFE8"> '''Input''' || '''Display''' ||
         Headlines are placed on a line of their own and surrounded by one to five equal signs denoting the level of the headline. The headline is in between the equal signs, separated by a space. Example: [[BR]] `== Second Level ==`
         Display:
          * `SpellCheck`: Call check spelling for the current page (HelpOnSpellCheck)
  • ZIM/EssentialUseCase . . . . 7 matches
          || Actor Action || System Response ||
          || Actor Action || System Response ||
          || Actor Action || System Response ||
          || Actor Action || System Response ||
          || Actor Action || System Response ||
          || Actor Action || System Response ||
         화일 전송시의 System Response는 클라이언트프로그램의 입장에서 써야 하나요? -- 석천
  • i++VS++i . . . . 7 matches
          mov eax, DWORD PTR _i$[esp+12] ; 변수 i 인 _i$[esp+12] 를 eax 로 옮기고
          mov eax, DWORD PTR _i$[esp+12] ; 차이 없음
          mov eax, DWORD PTR _i$[esp+12]
          mov DWORD PTR _i$[esp+20], eax
          mov eax, DWORD PTR _i$[esp+12]
          mov DWORD PTR _i$[esp+20], eax
  • 골콘다 . . . . 7 matches
          * http://www.pressian.com/section/section_article.asp?article_num=30020712101537&s_menu=경제
          * http://www.pressian.com/section/section_article.asp?article_num=30020708191625&s_menu=경제
          * http://www.pressian.com/section/section_article.asp?article_num=30020708114245&s_menu=경제
          * http://www.pressian.com/section/section_article.asp?article_num=30020628153802&s_menu=경제
          * http://www.pressian.com/section/section_article.asp?article_num=30020627120439&s_menu=경제
          * http://www.pressian.com/section/menu/search_thema.asp?article_num=20
          * http://www.pressian.com/section/section_article.asp?article_num=30020617162652&s_menu=경제
  • 새싹교실/2012/AClass/3회차 . . . . 7 matches
         int sp=0;
         if(sp<MaxSize)
         stack[sp]=n;
         sp++;
         if(sp>0) //값이 있을 때
         sp--;
         *n=stack[sp];
  • 3DGraphicsFoundation/INSU/SolarSystem . . . . 6 matches
          // Calculate aspect ratio of the window
          GLfloat fAspect = (GLfloat)w/(GLfloat)h;
          // Set the perspective coordinate system
          gluPerspective(45.0f, fAspect, 1.0, 425.0);
          glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
          auxSolidSphere(30.0f);
          auxSolidSphere(2.0f);
          auxSolidSphere(5.0f);
          auxSolidSphere(6.0f);
          auxSolidSphere(1.0f);
          auxSolidSphere(4.0f);
          auxSolidSphere(10.0f);
          auxSolidSphere(9.0f);
          auxSolidSphere(8.0f);
          auxSolidSphere(7.0f);
          auxSolidSphere(5.0f);
          DispatchMessage(&msg);
  • Android/WallpaperChanger . . . . 6 matches
         import android.view.Display;
          final Display d = ((WindowManager)getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
         import android.view.Display;
         || 4/30 || UI개설 및 Splash Activity 작성. Loading 까지 기다리는 기능은 없음. 개선사항 : Image Crop을 지원해야함. ||
          * DB Repository 데이터를 왔다갔다 intent사이를 넘겨주려면 parcel해야함 : http://arsviator.blogspot.com/2010/10/parcelable%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%9C-%EC%98%A4%EB%B8%8C%EC%A0%9D%ED%8A%B8-%EC%A0%84%EB%8B%AC-object.html
          * Thumnail제작을 위한 Multi-Thread방식 Image Loading : http://lifesay.springnote.com/pages/6615799
          int mSplat;
          sum += mArray[i].mSplat;
          sum += localArray[i].mSplat;
          sum += a.mSplat;
  • ClassifyByAnagram/재동 . . . . 6 matches
          def testSplitWord(self):
          self.anagram.splitWord()
          self.assertEquals(expect, self.anagram.getSplitWordList())
          self.anagram.splitWord()
          self.anagram.splitWord()
          self.anagram.splitWord()
          def splitWord(self):
          self.splitWord()
          def getSplitWordList(self):
  • CodeConvention . . . . 6 matches
          * [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvsgen/html/hunganotat.asp Hungarian Notation] : MFC, VisualBasic
          * [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconnetframeworkdesignguidelines.asp?frame=true .Net Frameworks Design Guidelines] : C#, VisualBasic.Net
          * [http://network.hanbitbook.co.kr/view_news.htm?serial=161 CTS(Common Type System)와 CLS(Common Language Specification)]
          * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvsgen/html/hunganotat.asp
  • CppStudy_2002_1/과제1/상협 . . . . 6 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • DPSCChapter2 . . . . 6 matches
         Before launching into our descriptions of specific design patterns, we present a case study of sorts, involving multiple patterns. In the Design Pattern preface, the Gang of Four speak about moving from a "Huh?" to an "Aha!" experience with regard to understanding design patterns. We present here a little drama portraying such a transition. It consists of three vignettes: three days in the life of two Smalltalk programmers who work for MegaCorp Insurance Company. We are listening in on conversations between Don (an object newbie, but an experienced business analyst) and Jane (an object and pattern expert). Don comes to Jane with his design problems, and they solve them together. Although the characters are fictitious, the designs are real and have all been part of actual systems written in Smalltalk. Our goal is to demonstrate how, by careful analysis, design patterns can help derive solutions to real-world problems.
          3. Provider/Plan Match. An automated process attempts to mach the plan (the contract unser which the claim is being paid) and the health care provider (e.g., the doctor) identified on the claim with the providers with which the overall claim processing organization has a contract. If there is no exact match, the program identifies the most likely matches based on soundex technology (an algorithm for finding similar-sounding words). The system displays prospective matches to knowledge workers in order of the likeinhood of the match, who then identify the correct provider.
          5. Adjudication of Pended Claims. The adjudicator can access the system for a claim history or a representation of the original claim. The adjudicator either approves the claim for payment, specifying the proper amount to pay, or generates correspondence denying the claim.
  • DebuggingApplication . . . . 6 matches
         [http://msdn.microsoft.com/library/FRE/vsdebug/html/_core_the_trace_macro.asp?frame=true]
         [http://www.cplusplus.com/doc/tutorial/tut5-3.html]
         [http://www.microsoft.com/msj/0197/exception/exception.aspx]
         [http://support.microsoft.com/default.aspx?scid=kb;en-us;105675]
         [http://msdn.microsoft.com/library/en-us/vsdebug/html/_core_using_c_run2dtime_library_debugging_support.asp?frame=true]
         [http://www.codeproject.com/debug/mapfile.asp]
  • EffectiveC++ . . . . 6 matches
          #define ASPECT_RATIO 1.653
         ASPECT_RATIO는 소스코드가 컴파일로 들어가기 전에 전처리기에 의해 제거된다.[[BR]]
         define 된 ASPECT_RATIO 란 상수는 1.653으로 변경되기때문에 컴파일러는 ASPECT_RATIO 란것이 있다는 것을 모르고 symbol table 에?들어가지 않는다. 이는 debugging을 할때 문제가 발생할 수 있다. -인택
          const double ASPECT_RATIO = 1.653
         === Item 5: Use the same form in corresponding uses of new and delete ===
         X::set_new_handler(0); // set the X-specific
         void specialErrorHandler(); // definition is elsewhere
         X *px1 = new (specialErrorHandler) X; // calls X::operator new
          new (specialErrorHandler) X; // calls X::operator
         X *px1 = new (specialErrorHandler) X; // ok
  • Emacs . . . . 6 matches
          * Emacs의 확장 기능은 .el(Emacs Lisp 확장자) 파일을 읽어오는 방법으로 이루어진다. 따라서 .el 파일만 있으면 확장 기능을 사용할 수 있는데, ELPA 이전까지는 통일된 .el 파일의 배포 방법이 없었기 때문에 기능을 추가하려면 직접 파일을 (EmacsWiki나 github이나 다양한 방식으로) 다운받아야 하는 불편함을 감수해야 했다. ELPA는 이러한 흩어진 파일(= 확장 기능)들을 통합해서 받을 수 있는 기능을 제공하고 있다.
          4. emacs 설정 파일인 .emacs 혹은 init.el 파일에 설치한 cedet을 로드하기위한 elisp코드를 다음과 같이 써준다.
         참고#1. lisp코드에서 ;;는 주석이다.
         참고#2. lisp코드중에서 load file 하는 부분을 나같은 경우는(load-file "~/.emacs.d/cedet/common/cedet.el")과 같이 적었다. 경로의 ~/는 나는 윈도우에서 cygwin을 통해서 emacs를 쓰고 있어서 환경변수 HOME의 경로를 저렇게 표현할 수 있다.
         참고#3. lisp 코드의 (setq byte-compile-warning nil)은 이 코드 바로 위의 주석에 해당하는 오류가 발생하여서 해결책으로 작성한 코드이다. 혹시 이 코드로 인해 다른 오류가 발생하거나 한다면, 이를 지우거나 구글링을 통해 다른 방법을 찿길 바란다.ㅠㅜ
          4. emacs 설정파일인 .emacs 혹은 init.el에 다음과같은 elisp 코드를 적는다.
  • EnglishSpeaking/2012년스터디 . . . . 6 matches
          * [https://trello.com/board/english-speaking-study/5076953bf302c8fb5a636efa Trello]
          * [http://www.youtube.com/watch?v=C3p_N9FPdy4 English Speaking Schools Are Evil]
          * [http://www.youtube.com/watch?v=xkGGTN8wh9I Speaking English- Feel Nervous & Shy?]
          * Free talking and retrospective.
          * Free talking and retrospective.
          * 2nd time of ESS! Our English speaking ability is not growing visibly but that's OK. It's just 2nd time. But we need to study everyday for expanding our vocabulary and increasing our ability rapidly. Thus I'll memorize vocabulary and study with basic English application(It's an android application. I get it for FREE! YAY!) I wish I can speak English more fluent in our 20th study. XD
          * Free talking and retrospective.
  • Fmt . . . . 6 matches
          1. A new line may be started anywhere there is a space in the input.
         it is not followed by a space or another line break. If a line
         break is eliminated, it is replaced by a space.
          1. A new line may be started anywhere there is a space in the input.
         provided it is not followed by a space or another line break. If a line
         break is eliminated, it is replaced by a space.
  • Garbage collector for C and C++ . . . . 6 matches
         # usually causing it to use less space in such situations.
         # properly remembered call stacks on Linux/X86 and Solaris/SPARC.
         # order by specifying a nonstandard finalization mark procedure (see
         # Not recommended unless you are implementing a language that specifies
         # -DFINALIZE_ON_DEMAND causes finalizers to be run only in response
         # code (especially KEEP_BACK_PTRS). Makes -DSHORT_DBG_HDRS possible.
         # on which we can quickly generate call stacks, currently Linux/(X86 & SPARC)
         # and Solaris/SPARC and platforms that provide execinfo.h.
         # causes the collector some system and pthread calls in a more transparent
  • Gof/FactoryMethod . . . . 6 matches
         MyCreator::Create handles only YOURS, MINE, and THEIRS differently than the parent class. It isn't interested in other classes. Hence MyCreator extends the kinds of products created, and it defers responsibility for creating all but a few products to its parent.
          3. ''언어 규칙에서의 변수와 이슈''(''Language-specific variants and issues'') 다른 언어사에서는 좀더 다른 방식으로 다른 절차로 구현될 것이다.
          self subclassResponsibility
         Different games can subclass MazeGame to specialize parts of the maze. MazeGame subclasses can redefine some or all of the factory methods to specify variations in products. For example, a BombedMazeGame can redefine the Room and Wall products to return the bombed varieties:
          { return new EnchantedRoom(n, CastSpell()); }
          { return new DoorNeedingSpell(r1, r2); }
          Spell* CastSpell() const;
         Class View in the Smalltalk-80 Model/View/Controller framework has a method defaultController that creates a controller, and this might appear to be a factory method [Par90]. But subclasses of View specify the class of their default controller by defining defaultControllerClass, which returns the class from which defaultController creates instances. So defaultControllerClass is the real factory method, that is, the method that subclasses should override.
  • GuiTestingWithMfc . . . . 6 matches
          int nResponse = dlg.DoModal();
          if (nResponse == IDOK)
          else if (nResponse == IDCANCEL)
          int nResponse = dlg.DoModal();
          if (nResponse == IDOK)
          else if (nResponse == IDCANCEL)
  • HowManyFibs?/문보창 . . . . 6 matches
         using namespace std;
          int response;
          response = inA.isBigThan(pib[i]);
          if (response != BIG)
          response = inB.isBigThan(pib[i]);
          if (response == SMALL)
  • IntelliJ . . . . 6 matches
          * http://www.jguru.com/forums/home.jsp?topic=IntellijIDEA
         Refactoring 기능과 깔끔한 UI, Inspection 기능 등이 돋보인다. 2002년 Jolt Award 수상.
         http://www.intellij.net/eap - [IntelliJ] Early Access Program. Aurora project 가 진행중. JUnit Runner 추가.(이쁘다!) CVS 지원. AspectJ 지원. Swing GUI Designer 지원 (IntelliJ에서는 UI Form 기능). Plugin Manager 기능 추가.
         === Intelli J Idea 의 Inspection ===
         개인적으로 IntelliJ 는 정말 TestDrivenDevelopment 와 Simplicity 를 위한 에디터라고 생각하는데, 이유는 리팩토링 기능이나 화면상 UI (쓰이지 않는 필드 등에 대해선 회색으로 표시됨), 그리고 Inspection 기능때문이다.
         Inspection 을 이용하면, 현재 실제로 접근하지 않는 메소드들, private 으로 둘 수 있는 메소드들, static 으로 둘 수 있는 필드 등을 체크하고, 해당 메소드 등을 주석처리하거나 영구삭제, 또는 접근권한을 private 으로 변환하는 등 여러가지 대처를 할 수 있다.
         리팩토링시에 JSP 에서 사용된 클래스들도 같이 리팩토링해준다.
  • IsbnMap . . . . 6 matches
         WowBook http://www.wowbook.com/generic/book/info/book_detail.asp?isbn=ISBN$ISBN2 http://image.wowbook.com/book/large_image/$ISBN2.gif
         AladdinMusic http://www.aladdin.co.kr/music/catalog/music.asp?ISBN= http://www.aladdin.co.kr/CDCover/$ISBN2_1.jpg
         AladdinBook http://www.aladdin.co.kr/catalog/book.asp?ISBN= http://www.aladdin.co.kr/Cover/$ISBN2_1.gif
          http://www.aladdin.co.kr/music/catalog/music.asp?ISBN=9049741495
         AladdinBOOK http://www.aladdin.co.kr/shop/wproduct.aspx?ISBN= http://image.aladdin.co.kr/cover/cover/$ISBN2_1.gif
         AladdinBook http://www.aladdin.co.kr/shop/wproduct.aspx?ISBN= http://image.aladdin.co.kr/cover/cover/$ISBN2_1.jpg
  • LIB_2 . . . . 6 matches
          for ( int i = 0 ; i < suspend_tcb_ptr + 1; i++ ){
          pSuspend_heap[i]->delay--;
          if ( High_Task->priority < pSuspend_heap[i]->priority && pSuspend_heap[i]->delay < 0 ) {
          pSuspend_heap[i]->delay = 0;
          LIB_resume_task(pSuspend_heap[i]->priority);
          MOV S_OFF,SP
          MOV SP,S_OFF
          MOV S_OFF,SP
          MOV SP,S_OFF
  • MoinMoinBugs . . . . 6 matches
         === Tables broken by trailing spaces ===
         Tables don't work right if there are trailing spaces.
         ''Yes, by design, just like headings don't accept trailing spaces. In the case of headings, it is important because "= x =" is somewhat ambiguous. For tables, the restriction could be removed, though.''
          * InterWiki links should either display the destination Wiki name or generate the A tag with a TITLE attribute so that (at least in IE) the full destination is displayed by floating the cursor over the link. At the moment, it's too hard to figure out where the link goes. With that many InterWiki destinations recognised, we can't expect everyone to be able to recognise the URL.
          * Hmmm, that '''is''' so. :) Take a look at the message at the top of the diff page after clicking on "updated", it'll often show text like "spanning x versions". You need the current CVS version for that, though.
  • MoreEffectiveC++/Miscellany . . . . 6 matches
         당신의 코드를 변화가 필요할때, 그 효과를 지역화(지역화:localized) 시키도록 디자인 해라. 가능한한 캡슐화 하여라:구체적인 구현은 private 하라. 광범위하게 적용해야 할곳이 있다면 이름없는(unamed) namespace나, file-static객체 나 함수(Item 31참고)를 사용하라. 가상 기초 클래스가 주도하는 디자인은 피하라. 왜냐하면 그러한 클래스는 그들로 부터 유도된 모든 클래스가 초기화 해야만 한다. - 그들이 직접적으로 유도되지 않은 경우도(Item 4참고) if-than-else을 개단식으로 사용한 RTTI 기반의 디자인을 피하라.(Item 31참고) 항상 클래스의 계층은 변화한다. 각 코드들은 업데이트 되어야만 한다. 그리고 만약 하나를 읽어 버린다면, 당신의 컴파일러로 부터 아무런 warning를 받을수 없을 것이다.
         class SpecialWindow { // 이것은 Window로 부터 상속되기 원하는 클래스
         이런 문제를 해결하기 위하여, C++ 컴파일러에게 해당 함수에 name mangle을 수행하지 않도록 알려야 할 방법이 필요하다. C든, assempler, FORTRAN, Lisp, Forth나 니가 가진 무슨 언어간에, 다른 언어에서 작성되어진 name mangle 처리된 함수를 원할수 없다.(예, 이 언어들에 COBOL도 들어가겠지만 당신이 쓰는가?) 결곡, 만약 C함수인 drawLine을 호출하면 그것은 진짜로 drawLine을 호출하고, 당신의 오브젝트 코드역시 그 이름 그대로 변화없이 사용한다.
         extern "C"의 이러한 사용은 C++과 C를 사용해야만 하는 헤더파일의 유지보수를 간편하게 해준다. C++로 컴파일 할때는 extern "C"를 허용하고, C로 할 때는 허용하지 않고 컴파일 하면 된다. 이러한 preprocessor에 대한 심벌(symbol)은 __cplusplus 가 C++ 컴파일 타임에 정의되어 있는 것을 이용해서 다음과 같이 구성할수 있다.
         #ifdef __cplusplus
         #ifdef __cplusplus
          * '''새로운 개념의 추가''' : RTTI, namespace, bool, mutable과 explicit keyword, enum을 위한 오벌드(overload) 연산자 능력, 클래스 정의 내부에서 이용한 완전한 정적 클래스 멤버 초기화 증력
  • OurMajorLangIsCAndCPlusPlus/string.h . . . . 6 matches
         || void * memset(void * dest, int c, size_t count) || Sets buffers to a specified character. ||
         || int strcoll(const char * stirng1, const char * stirng2) || Compare strings using locale-specific information. ||
         || size_t strcspn(const char *string, const char *strCharSet) || Find a substring in a string. ||
         || size_t strspn(const char *string, const char *strCharSet) || Find the first substring. 포함개수?||
         || char * strpbrk(const char *string, const char *strCharSet) || Scan strings for characters in specified character sets. ||
         || size_t strxfrm (char *strDest, const char *strSource, size_t count) || Transform a string based on locale-specific information ||
  • ProjectPrometheus/Journey . . . . 6 matches
          * 근데, 해놓고 나서 커밋할 생각이.. 좀 안나긴 하다. 한편으로는 Test 들을 통과하니까 둘이 서로 정한 의도대로 한 것이니 상관없다는 생각. 하지만, 한편으로는 'Pair 로 한 것이 아닌데..' 하는 생각. 그냥 Spike 버전 정도로 생각해둘까나.
         이 부분도 일종의 Architecture 의 부분일것인데, 지금 작성한것이 웬지 화근이 된것 같다는. Architecture 부분에 대해서는 Spike Solution 을 해보던지, 아니면 TDD 를 한뒤, Data Persistence 부분에 대해서 내부적으로 Delegation 객체를 추출해 내고, 그녀석을 Mapper 로 빼내는 과정을 순차적으로 밟았어야 했는데 하는 생각이 든다.
         Spike Solution으로 만들어 두었던 것들이, 실제로 프로그래밍 소스로 전환되고 있는 과정 중이다. 이제 User내의 Spike Solution관련 코드들이 사라지면 Spike Solution의 Test들도 다 깨지면서 사라 질것이다. 내일이면 DB와의 연동이 마무리 되고, 웹에 인터페이스 노출이 이루어 질것 같다. 그렇게 되면 커다란 줄기는 완성되는 것이다. 역시나 감회가 새롭다. Acceptance Test에 관련한 코드들을 내가 너무 모르고 있다. 그쪽 코드를 보고 이해 해야 불안하고 들뜬 마음을 안정 시킬수 있을것 같다. 나는 즐거운거 맞는 걸까? 학교 더 일찍오면 확실히 즐거울꺼 같다. ;; --["상민"]
          * 도서관은 303건 초과 리스트를 한꺼번에 요청시에는 자체적으로 검색리스트 데이터를 보내지 않는다. 과거 cgi분석시 maxdisp 인자에 많이 넣을수 있다고 들었던 선입견이 결과 예측에 작용한것 같다. 초기에는 local 서버의 Java JDK쪽에서 자료를 받는 버퍼상의 한계 문제인줄 알았는데, 테스트 작성, Web에서 수작업 테스트 결과 알게 되었다. 관련 클래스 SearchListExtractorRemoteTest )
         Iteration 3 에서의 Login 을 위해 정말 오랜만에(!) Servlet 책과 JSP 책을 봤다. (빌리고서도 거의 1-2주간 안읽었다는. -_-;) 상민이가 옆에서 JSP 연습을 하는동안 나는 Servlet 연습을 했다. 후에 두개의 소스를 비교해보면서 공통점을 찾아내면서 스타일을 비교해 본 것이 재미있었다. (처음에 의도한건 아니지만;)
         ZeroPageServer 의 게시판 소스가 JSP 이고 JSP/Servlet runner 가 Resin 이여서 환경설정 부분을 구경할 수 있었다. 그래서 Resin - JDBC 셋팅 부분을 구경하고 손쉽게 할 수 있었다. ZeroPageServer 의 첫 삽을 떠준 선우형에게 감사드리며. 현재 쓰고 있는 글들이 몇달 또는 몇년 뒤 ZeroPagers 또는 익명의 사람들에게 도움이 되었으면 한다.
          * Iteration 2 에 대한 SpikeSolution 계속 진행
          * Iteration 2. Recommendation System 에 대한 SpikeSolution
         일단 알고리즘부분을 대강 생각한뒤 Python 으로 TDD 를 했다. ([http://zeropage.org/browsecvs/index.php?&dir=ProjectPrometheus%2FPythonProject%2F&file=RSSpike.py&rev=1.1&cvsrep=ZeroPage 소스]). CRC 세션을 먼저하여 시나리오를 시각화해두고 프로그래밍을 했었다면 좀 더 빨리 작성할 수 있지 않았을까 하는 생각을 해본다.
         알고리즘에 대한 SpikeSolution 에 대해서는, 일단 연습장에 명확하게 알고리즘을 세운뒤 프로그래밍에 들어가는 것이 좋겠다고 생각함. 그리고 알고리즘 디자인시에 Matrix 와 Graph 등의 모델을 그려서 생각해보는 것이 효율적이겠다는 생각이 들었다.
          * HTML 문서 가져오는 클래스 (Spider) 작성
         오늘 무엇을 할 것인가 하며 ["ProjectPrometheus/Iteration"] 를 보고선 HTML Parsing 을 진행하기로 했다. 그 전에 ["1002"] 는 '아, 작업하기 전에 Book Search 에 대한 전반적인 그림을 그려 놓는게 좋겠군. 그리고 난 뒤 HTML Parsing 부분에 대해 구현해야지' 라고 생각을 했다. 한편 ["neocoin"] 은 수요일때와 마찬가지로 'HTML Parsing 부분에 대해 일단은 SpikeSolution 으로 만든뒤 모듈화 시켜나가야지' 라는 생각을 했다. 프로그래밍 스타일이 다른 두 사람이 진행 방법에 대한 언급없이 진행을 하려고 했다. ["1002"] 는 '아 전체 그림' 하며 CRC 세션을 하려고 하는 중간. 한편 ["neocoin"] 은 같이 진행하고 있는 CRC 세션에 중간에 대해서 '지금 서로 무엇을 하고 있는거지?' 하며 혼란에 빠졌다. 똑같은 디자인 단계에 대해서 ["1002"] 는 전반적 Book Search 에 대해 생각을 하고 있었고, ["neocoin"] 은 모듈과 모듈간 연결고리에 대해 생각을 하였다.
          * CRC 세션을 하는 중간에 혼란에 빠졌다. ResponsibilityDrivenDesign 을 잘 알고 있었다고 생각했는데 이때 잘 되지 않았다.
         하지만, 실제로 Library 내부에서는 많은 일들이 작동한다. 즉, keyword 를 해당 HTTP에서 GET/POST 스타일로 바꿔줘야 하고 (일종의 Adapter), 이를 HttpSpider 에게 넘겨주고 그 결과를 파싱하여 객체로 만든 뒤 Client 에게 돌려줘야 한다.
         즉, RDD 를 위한 CRC 세션중 계속 그 클래스들의 추상화 정도를 놓고 서로 클래스들을 추출해내는데 어려움을 겪었다. ('용어는 어느정도 추상화를 시켜야 할 것인가?', '내부 구현 시스템이 가급적이면 드러나지 않는 것이 일반적으로 좋은 디자인이라고 하는것 같은데 막상 우리가 BottomUp 을 하여 뽑아낸 디자인엔 이미 이름이 'HttpSpider' 등 이고..' 등등)
          * 박성운씨라면 ["SeparationOfConcerns"] 를 늘 언급하시는 분이니; 디자인 정책과 구현부분에 대한 분리에 대해선 저번 저 논문이 언급되었을때 장점에 대해 설명을 들었으니까. 이는 ResponsibilityDrivenDesign 과 해당 모듈 이름을 지을때의 추상화 정도가 지켜줄 수 있을 것이란 막연한 생각중.
          * See Seminar:KissPrinciple
          ''see also Seminar:UsingIdle , Seminar:webspider.py ''
          1. MVC를 생각하면서, 이에 맞는 JSP(View), Servlet(Controller), Bean(Model)로서의 WebProgramming을 구상하였다.
          * ["1002"] 는 오늘 모임전 해당 프로그램이 Java Servlet & JSP 기반에서 돌아갈것이라 생각, Java Web Programming 에서의 MVC 패턴을 책들을 보면서 공부를 했다. 그래서 그런지, ["neocoin"] 과 전체 디자인 이야기를 할때 Java Web 에서의 MVC style 에 대해 먼저 언급하게 되었다. 그러면서 JSP Page - Servlet - Logic 객체들 로 나누고 Requirement 와 이전 수요일때 했었던 Iteration 등에서의 용어를 떠올리며 디자인을 생각하게 되었다.
  • PythonNetworkProgramming . . . . 6 matches
         class FileSendChannel(asyncore.dispatcher, Thread):
          asyncore.dispatcher.__init__(self, aConnection)
         class FileSendServer(asyncore.dispatcher):
          asyncore.dispatcher.__init__(self)
         class FileReceiveChannel(asyncore.dispatcher):
          asyncore.dispatcher.__init__(self)
  • RandomWalk/임민수 . . . . 6 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • SPICE . . . . 6 matches
         이경환 교수님이 아무래도 이쪽에 일을 담고 있으신지라 (뭐.. KSPICE 회장이시니 당근;) SE 수업때에 비교적 많이 강조하시는 부분이기도 함.
          * http://kspice.co.kr
          * [http://kspice.co.kr/main5/main5_6.html SPICE 심사 사례]
          * [http://kspice.co.kr/main3/pds/RUP15504final_1.pdf Assessing RUP against ISO15504-5]
          * [http://kspice.co.kr/main3/pds/SPICE_교육자료.zip SPICE교육자료] - 관련글은 [http://kspice.co.kr/main3/content.asp?tbname=t_down&menuname=게시판&gotopage=1&Fnum=21&Fref=21# SPICE 심사원 자격 교육자료]를 참조.
  • StringOfCPlusPlus/상협 . . . . 6 matches
          void delspace();//여백을 지워 줌
         using namespace std;
         void String::delspace()
         using namespace std;
          nam.delspace();//끝에것이 짤리는 문제
          Test.delspace();
  • VonNeumannAirport/남상협 . . . . 6 matches
          cityNum = int(Data.readline().split(" ")[0])
          trafficList.append(Data.readline().split(" "))
          while Data.readline().split(" ")[0] != '0':
          readLineOne = Data.readline().split(" ")
          readLineTwo = Data.readline().split(" ")
          cityNum = int(Data.readline().split(" ")[0])
  • ZeroPageServer/AboutCracking . . . . 6 matches
          * 2002-12-22 임구근(["구근"] 98) 자유게시판 Spam 메일 rely 보고.
          * 2002-12-17 [http://zeropage.org/jsp/board/thin/index.jsp?table=open&service=view&page=0&id=6631 권고메일]
          * 2003-02-08, 09 즈음에 squid 를 이용한 proxy 서비스를 제공했다는 것을 기억. spam 샘플 몇통중 해다 suqid 사용 계정 id가 있었다는 점 기억 -> squid 동작 이후 spam신고 접수 된 것으로 가정
          * 문제 : 서버를 가동하고 나서 얼마 후에 spam 메일이 지속적으로 발송된다.
          * 서버가 몇번 정전을 맞은 이후, squid 를 실질적으로 사용한 예는, 일요일 이다. spam이 뿌려진 정확한 날짜를 알면, 비교 할수 있지 않을까?
  • 검색에이전시_temp . . . . 6 matches
         http://minihp.cyworld.nate.com/pims/visitbook/visitbook_list.asp?tid=24808212&urlstr=bang
         프레임있는 미니홈 : http://minihp.cyworld.nate.com/pims/main/pims_main4.asp?tid=24808212&urlstr=main
         미니룸 : http://minihp.cyworld.nate.com/pims/main/main_inside.asp?tid=24808212
         방명록 : http://minihp.cyworld.nate.com/pims/visitbook/visitbook_list.asp?tid=24808212&urlstr=bang
         사진첩 : http://minihp.cyworld.nate.com/pims/board/image/imgbrd_list.asp?tid=24808212
         게시판 : http://minihp.cyworld.nate.com/pims/board/general/board_list.asp?tid=24808212
  • 경시대회준비반/BigInteger . . . . 6 matches
         using namespace std;
         namespace BigMath
          // Constructor with specified bytes
          // Compares Two BigInteger values irrespective of sign
         // Filled with specified data
         // Compares this with `with' irrespective of sign
  • 권영기/채팅프로그램 . . . . 6 matches
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
          sprintf( buff_snd, "%d : %s", strlen( buff_rcv), buff_rcv);
  • 데블스캠프2006/화요일/tar/김준석 . . . . 6 matches
         using namespace std;
          sprintf(fileName, "..\tar\%s", data_dir.name);
         using namespace std;
          sprintf(fileRoot, "..\devil26_untar\untar\%s", fileName);
         using namespace std;
          sprintf(path, "%s\%s", dir , data_dir.name);
  • 레밍즈프로젝트/프로토타입/파일스트림 . . . . 6 matches
         || MFC 파일 스트림 || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cstring.asp] ||
         || Rename || Renames the specified file (static function). ||
         || Remove || Deletes the specified file (static function). ||
         || GetStatus || Retrieves the status of the specified file (static, virtual function). ||
         || SetStatus || Sets the status of the specified file (static, virtual function). ||
  • 만년달력/김정현 . . . . 6 matches
          if(!isProperMonth(BLANK, month))
          if(!isProperMonth(year, month))
          if(month==2 && isSpecialYear(year)) {
          private boolean isSpecialYear(int year) {
          if(!isProperMonth(year, BLANK))
          if(isSpecialYear(year)) {
          private boolean isProperMonth(int year, int month) {
          private boolean isProperDate(int year, int month, int day) {
          if(!isProperDate(year, month, day))
          if(!isProperDate(year, month, day))
          private String space= " ";
          public void setForm(String[] dayNames, String space) {
          this.space= space;
          sw.write(repeatString(" "+space, startIndex));
          sw.write(String.valueOf(i)+space);
  • 미로찾기/영동 . . . . 6 matches
         using namespace std;
         void display(int argX, int argY, int argMaze[][SIZE_X+2]);
          display(nextX, nextY, maze);
          display(x, y, maze);
          display(x, y, maze);
         void display(int argX, int argY, int argMaze[][SIZE_X+2])
  • 변준원 . . . . 6 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
          DispatchMessage( &msg );
         using namespace std;
  • 위키에 코드컬러라이저 추가하기 . . . . 6 matches
          * [http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/parser_2fbase_2epy parser/base.py] [http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/parser_2fcplusplus_2epy parser/cplusplus.py] [http://twistedmatrix.com/users/jh.twistd/moin/moin.cgi/parser_2fjava_2epy parser/java.py]
         from MoinMoin.parser import cplusplus
          if string.strip(lines[0]) == "#!cplusplus":
          colorizer = cplusplus.Parser(string.join(lines, '\n'), request, out = buff)
          elif string.strip(line)[:2] == "#!" and string.find(line, 'cplusplus') > 0:
  • 임베디드방향과가능성/정보 . . . . 6 matches
         이제 제 개인적인 생각을 말씀드리죠. 먼저 임베디드 시스템이 쓰이는 용도에 대해 조금 시야가 좁으신 것 같습니다. 적어도 집에 PC가 설치되어 있는 곳에서 손쉽게 PC로 할 수 있는 일은 절대로 임베디드 기기로 나오지 않겠죠. 그리고 임베디드 기기에 "하드 달고 모니터 달고 USB니 뭐니 다 달고나면.."을 하면 절대 안됩니다. 이러면 이미 임베디드 기기가 이니고 general한 pc입니다. 임베디드 기기는 말그대로 application specific, implementation specific한 경우에만 그 의미를 가지죠. 이러한 분야는 적어도 당분간은 general한 tool(님 말씀처럼 visual한 tool들)이 사용될 수 없습니다. 그리고 최근 유행하는 embedded linux의 경우는 더 요원하죠.
         둘째로 기술적으로 말씀드리죠. pc의 경우는 application만 하면 됩니다. 그 좋은 visual tool들이 hw specific한 부분과 커널 관련한 부분은 다 알아서 처리해 줍니다. 하지만 임베디드 분야는 이 부분을 엔지니어가 다 알아서 해야 하죠. pc의 경우 windows를 알 필요없지만 임베디드 엔지니어는 os kernel을 만드시 안고 들어가야 합니다. 이 뿐만 아니라 application specific/implementation specific하기 때문에 해당 응용분야에 대한 지식도 가지고 있어야 하며/ 많은constraint 때문에 implementation 할 때hw/sw에 관한 지식도 많아야 하죠. 경우에 따라서는 chip design 분야와 접목될 수도 있습니다.(개인적으로 fpga 분야가 활성화 된다면 fpga도 임베디드와 바로 엮어질거라 생각합니다. 이른바 SoC+임베디드죠. SoC가 쓰이는 분야의 대부분 곧 임베디드 기기일 겁니다. ASIC도 application specific하다는 점에서 임베디드 기기와 성질이 비슷하고 asic의 타겟은 대부분 임베디드 기기입니다.) 대부분의 비메모리 반도체칩은 그 용도가 정해져있으며, 비메모리 반도체를 사용하는(혹은 설계하는 사람)을 두고 임베디드 엔지니어라 할 수 있죠. 사실 임베디드는 범위가 매우 넓기 때문에 한가지로 한정하기 힘듭니다.
  • 조영준/파스칼삼각형/이전버전 . . . . 6 matches
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
  • 큰수찾아저장하기/김태훈zyint . . . . 6 matches
          - 추가: 리팩토링(?) 한거같지도 않지만-_- 일단 나눠봤다; 행렬에서 transpose를 이용해서;;; 일단 짜보았는데 효율적이진 않은듯 -_-
         void transpose(int (*value)[COL]); //행렬의 diagonal을 기준으로 transpose
          transpose(value);
          transpose(value);
         void transpose(int (*value)[COL])
  • 2dInDirect3d/Chapter1 . . . . 5 matches
          == Display Format ==
          == Enumeration Display Mode ==
          === Looking at Adapter Display Modes ===
          D3DDISPLAYMODE* pMode
          === Getting the Current Display Mode ===
         HRESULT GetAdapterDisplayMode(
          D3DDISPLAYMODE* pMode
  • ASXMetafile . . . . 5 matches
          o ICON: The logo appears as an icon on the display panel, next to the title of the show or clip.
          * <Banner href = "path of the banner source">: Places a banner (82 pixels × 30 pixels) image at the bottom of the video display area.
          * <Ref href = "path of the source" / >: Specifies a URL for a content stream.
          o ASX files, on the other hand, are small text files that can always sit on an HTTP server. When the browser interprets the ASX file, it access the streaming media file that is specified inside the ASX file, from the proper HTTP, mms, or file server.
          * [http://msdn.microsoft.com/workshop/imedia/windowsmedia/crcontent/asx.asp Windows Media metafile] - [DeadLink]
          * [http://msdn.microsoft.com/downloads/samples/internet/imedia/netshow/simpleasx/default.asp MSDN Online Samples : Simple ASX] - [DeadLink]
  • Ant/JUnitAndFtp . . . . 5 matches
         <project name="servletspike" basedir="." default="reporttoftp">
          <classpath>
          </classpath>
          <classpath>
          </classpath>
  • CSP . . . . 5 matches
         #csp.py
         from csp import *
         from csp import Process,ParProcess,Channel, background
         from csp import *
         from csp import *
  • DirectDraw/DDUtil . . . . 5 matches
         == CDisplay ==
         CDisplay의 함수에는 다음과 같은 것이 있다.
         CreateFullScreenDisplay(HWND hWnd, DWORD dwWidth, DWORD dwHeight, DWORD dwBPP)
         CreateWindowedDisplay HWND hWnd, DWORD dwWidth, DWORD dwHeight)
          CDisplay 에 특정한 팔레트를 세팅한다.
  • DoubleDispatch . . . . 5 matches
         == DoubleDispatch ==
          * http://www.object-arts.com/EducationCentre/Patterns/DoubleDispatch.htm
          * http://eewww.eng.ohio-state.edu/~khan/khan/Teaching/EE894U_SP01/PDF/DoubleDispatch.PDF
          * http://www.chimu.com/publications/short/javaDoubleDispatching.html
          * http://no-smok.net/seminar/moin.cgi/DoubleDispatch
  • Eclipse . . . . 5 matches
          * [http://eclipse-plugins.2y.net/eclipse/plugins.jsp 플러그인 사이트]
          1. Menu -> Window -> Open Perspective -> CVS Repositary (없으면 Other)에서
          1. 참고 [http://openframework.or.kr/JSPWiki/Wiki.jsp?page=EclipseCVS Eclipse에서의CVS연동설명_그림]
         ||Ctrl+Space ||자동완성. 퀵픽스에 버금가는 사기 기능. 내가 무슨 기능을 쓸 수 있는지 자바독과 함께 보여주며 엔터만 치면 구현을 끝내주는 역할을 한다. 혹자는 퀵픽스와 자동완성, 그리고 JUnit만 있으면 어떤 프로그램이든 만들 수 있다고 한다.||
         ||Ctrl+F8|| Prespective간 전환||
         || Alt+Shift+Q + ? || Window->Preference->workspace->key->Advenced 의 Help Me... 옵션을 키고 Alt+Shift+Q를 누르고 기다려 보자 ||
          * Eclipse 2.2 Draft 에서 Java like file 의 지원이 있다. JSP 따위. 그런데 완료 시점은 03 November .. JDT 공식 지원은 너무 느리네.. -- NeoCoin
  • Eclipse와 JSP . . . . 5 matches
         Project 에서 File 선택 후 main.jsp 만든다!
         == Unbound classpath variable: 'TOMCAT_HOME/common/lib/jasper-runtime.jar' 문제 ==
         ex) http://localhost:8080/test/main.jsp
         work/org/apache/jsp부분 해당 소스에 break point를 걸고(해당 페이지 좌측에 더블 클릭) 웹 페이지 구동하면 break point에서 걸린다
         [JSP]
  • EightQueenProblem/nextream . . . . 5 matches
         function display() {
          if (line>=8) { display(); return; }
         결과물 확인하기 좋게 display 부분을 약간 수정해봤습니다. --[1002]
         function display() {
          if (line>=8) { display(); return; }
  • ErdosNumbers/황재선 . . . . 5 matches
          String[] divide = line.split(":");
          String[] peopleName = divide[0].split(",");
          String [] nums = erdos.readLine().split(" ");
          String[] divide = line.split(":");
          String[] person = divide[0].split(",");
  • Google/GoogleTalk . . . . 5 matches
          my $response = $browser->get($url->as_string, 'User-Agent'=>'Mozilla' );
          if($response->is_success)
          my $res = $response->content;
          print "Response:\n$res\n" if $debug;
          print $response->error_as_HTML if $debug;
  • LC-Display . . . . 5 matches
         === About [LC-Display] ===
          || 문보창 || C++ || . || [LC-Display/문보창] ||
          || 곽세환 || C++ || 1시간10분 || [LC-Display/곽세환] ||
          || 상협재동 || C++ || 1시간50분 || [LC-Display/상협재동] ||
          || 김상섭 || C++ || ㅡㅜ || [LCD-Display/김상섭] ||
  • MedusaCppStudy/석우 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         const string drinks[] = {"sprite", "cold tea", "hot tea", "tejava", "cold milk", "hot milk"};
  • OOP . . . . 5 matches
         Objects should correspond real word objects
         Responsibily area should be simple and compact
         Don’t mix responsibilities
         Keep responsibily areas as general as possible to garantie reuse.
         [http://www.codeproject.com/cpp/oopuml.asp UML&OOP]
  • OurMajorLangIsCAndCPlusPlus/print/조현태 . . . . 5 matches
         == OurMajorLangIsCAndCPlusPlus/print/조현태 ==
          int spaceSize = 0;
          spaceSize = spaceSize * 10 + (outData[readPoint] - '0');
          PrintNumber(spaceSize, va_arg(variables, int), 0);
          PrintNumber(spaceSize, (int)variableDouble / 1 , variableDouble - (int)variableDouble);
         [OurMajorLangIsCAndCPlusPlus] [OurMajorLangIsCAndCPlusPlus/print]
  • RandomWalk2/조현태 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • SolarSystem/상협 . . . . 5 matches
          // Calculate The Aspect Ratio Of The Window
          gluPerspective(45.0f,(GLfloat)width/(GLfloat)height,0.1f,100.0f);
          glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
          gluSphere(obj,1.0f,24,24);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.2f,12,12);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.4f,12,12);
          gluSphere(obj,0.9f,12,12);
          gluSphere(obj,0.7f,12,12);
          ChangeDisplaySettings(NULL,0);
          dmScreenSettings.dmBitsPerPel=bits;
          dmScreenSettings.dmFields=DM_BITSPERPEL|DM_PELSWIDTH|DM_PELSHEIGHT;
          if(ChangeDisplaySettings(&dmScreenSettings,CDS_FULLSCREEN)!=DISP_CHANGE_SUCCESSFUL)
          DispatchMessage(&msg);
  • SystemEngineeringTeam/TrainingCourse . . . . 5 matches
          * 왜 위의 5가지냐고? 그냥, 어디서 들어봐서. 왜 저 5가지인지는 그렇게 중요하지 않다. [http://www.5055.co.kr/pds/spboard/board.cgi?id=establishment&page=16&action=view&number=34.cgi&img=no 일단 선택지를 좁히는 것이 중요.] 진짜 선택은 이 다음부터다.
          * [박정근] - linuspark.net
          * 닉네임이자 세례명인 linuspark을 사용, 컴공인으로써 부담되긴 하지만 여태 쓰던걸 바꿀생각이 없으므로 그대로 사용.
          * 서민관 - trello 쪽에 있는 서버 운영체제 요건을 봤을 때 대부분이 큰 차이가 없는 것 같고 안정성 면에서 CentOS, 업데이트 속도 면에서 Fedora/Ubuntu 라는 느낌이라서 둘 중에 어느 쪽에 중점을 두느냐에 따라 결정이 갈리는 것 같습니다. 이런저런 생각의 결과 Ubuntu 계열을 사용하기로 결정했습니다. 이유는 여럿 있는데, 첫째는 지금까지 Ubuntu를 좀 써 본 만큼 익숙한 환경에서 하는 것이 그 외의 문제에 시간을 덜 쓰고 문제 자체만을 다루기에 좋을 것 같다는 것입니다. 그리고 두 번째로 이번에 Raspberry pi를 구매했는데, 이쪽에서 기본적으로 제공하는 운영체제가 Debian 계열이라서 Ubuntu에서 작업을 해 보면 Raspberry pi에서도 좀 더 작업을 편하게 할 수 있지 않을까 하는 생각이 들어서 Ubuntu 계열을 쓰기로 결정했습니다.
  • UDK/2012년스터디 . . . . 5 matches
         [https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash3/532631_401093049918377_100000530574390_1440421_2088804234_n.jpg https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash3/532631_401093049918377_100000530574390_1440421_2088804234_n.jpg]
         [https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash3/531013_401094973251518_100000530574390_1440467_2020263083_n.jpg https://fbcdn-sphotos-a.akamaihd.net/hphotos-ak-ash3/531013_401094973251518_100000530574390_1440467_2020263083_n.jpg]
          * [http://www.bluespheresforever.com/ ...]
  • c++스터디_2005여름/실습코드 . . . . 5 matches
          char space;
          space=munja[strlen(munja)-1-i];
          munja[i]=space;
         using namespace std;
         using namespace std;
  • ricoder . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 권영기/web crawler . . . . 5 matches
          urllib.urlretrieve(line,line.split('/')[-1])
          * split
          line.split('/')[-1] == '2001D2044C945F80495C6F'
          line.split('/')[-2] == 'original'
          part = line.split(' ')
  • 데블스캠프2006/목요일/winapi . . . . 5 matches
          DispatchMessage (&msg) ;
          DispatchMessage (&msg) ;
          DispatchMessage (&msg) ;
          sprintf(szBuffer, "Count: %.1f", fCount);
          DispatchMessage (&msg) ;
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 5 matches
          * 내가 PHP 도 약간 해보고, JSP 나 Java 도 약간 해봤서 대충 심정을 알듯.. 나도 JSP랑 Java 써서 이번에 DB 프로젝트 개발 해보기전에는 웹에서는 PHP로 짜는게 가장 편하게 느껴졌었거든. 그래서 DB 프로젝트도 웹은 PHP 응용은 Java 이렇게 해 나갈려고 했는데 PHP가 Oracle 지원은 버전 5.x 부터 되서 걍 Jsp로 하게 됐지. 둘다 해본 소감은 언어적인 면에서는 뭐 PHP로 하나 Jsp로 하나 별 상관이 없는거 같고, 다만 결정 적인것은 개발환경및 Jsp 에서는 java 클래스를 가져다가 사용할수 있다는 점이었스. Jsp에서 하면 Junit 을 사용하여 Unit 테스트를 하면서 작성하기 수월했고, 또한 디버깅 환경도 Visual Studio 에서 디버깅 하듯이 웹을 한다는게 정말 좋았지. 또 java 클래스를 가져다가 사용할 수 있어서 여러 오픈 소스를 활용하기에도 좋고.(예를 들면 Lucene 같은 자바로 만든 오픈소스 검색 엔진..). 특히 Eclipse 라는 강력한 개발 환경이 있어서 Visual Studio 보다 더 개발이 수월할 정도..
          * 내가 아무리 이렇게 말해도 귀에 안들어 올거라고 생각은 하고.. 다만 한번 경험을 해보길 바래. 내가 지금 와서 조금 후회되는것은 위키를 Jsp,Java 로 안짜고 PHP로 짠것이니 만큼.. 그리고 컴공에서 제일 중요한 것은 특정한 언어 하나를 잘하는 것도 좋긴 한데, 나는 어떠한 것이 눈앞에 와도 금방 적응하고 배워서 써먹을수 있는 능력도 중요하다고 생각해. 그리고 검색 엔진에 관심이 있다면 오픈소스 검색엔진인 Lucene 을 한번 갖고 놀아봐. 그리고 실제로 간단한 것을 짜보고 싶으면 [MemeHarvester] 이 프로젝트 이어서 해도 되고. - [namsang]
  • 데블스캠프2012/넷째날/묻지마Csharp/서민관 . . . . 5 matches
         namespace WindowsFormsApplication1
          int respownX = rand.Next(this.Size.Width);
          int respownY = rand.Next(this.Size.Height);
          label.SetBounds(respownX, respownY, label.Size.Width, label.Size.Height);
  • 레밍즈프로젝트/프로토타입/STLLIST . . . . 5 matches
         || CList || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cstring.asp] ||
         || RemoveAt || Removes an element from this list, specified by position. ||
         || Find || Gets the position of an element specified by pointer value. ||
         || FindIndex || Gets the position of an element specified by a zero-based index. ||
  • 문제풀이/1회 . . . . 5 matches
         input numbers with space:
         inNums = [ int(i) for i in raw_input('input numbers with space:\n').split() ]
         for i in a.split():
         news = map(lambda x:int(x), a.split())
  • 새싹교실/2012/AClass . . . . 5 matches
          using namespace std도 배웠다. using namespace std는 cin, cout을 사용할 때 앞에 붙는 'std::'를 생략하기 위해 써준다.
          -#include <iostream> 과 using namespace std; 의 사용법
         using namespace std;
          * c언어와 c++의 다른 문법과 cin,cout class,std없애는 using namespace std를 배웠다
  • 압축알고리즘/동경,세환 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 압축알고리즘/정욱&자겸 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 유용한팁들 . . . . 5 matches
          * 원본 글 : [http://www.codeproject.com/useritems/Text_Indexer.asp]
         아래 명령어 실행시에 Enter Passphrase 에서 그냥 Enter 만 칠것
         Enter passphrase (empty for no passphrase):
         Enter same passphrase again:
  • 정모/2005.4.25 . . . . 5 matches
         [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=black><b>)]]
          SSP 확정으로 인해 windows 기반으로 수업하게 될듯.
          * [[HTML(<span style="font-size:9pt; letter-spacing:-1px;"><font face="Verdana" color=ff4500><b>)]]오는 사람한테는 회비로 식사제공 (예상메뉴 : 피자)[[HTML(</b></font></span>)]]
  • .bashrc . . . . 4 matches
         # 아직 세트되지 않았다면 $DISPLAY 를 자동으로 세팅
         if [ -z ${DISPLAY:=""} ]; then
          DISPLAY=$(who am i)
          DISPLAY=${DISPLAY%%\!*}
          if [ -n "$DISPLAY" ]; then
          export DISPLAY=$DISPLAY:0.0
          export DISPLAY=":0.0" # 실패할 경우를 대비(fallback)
         shopt -s cdspell
         echo -e "${CYAN}This is BASH ${RED}${BASH_VERSION%.*}${CYAN} - DISPLAY on ${RED}$DISPLAY${NC}\n"
         export LESSOPEN='|/usr/bin/lesspipe.sh %s 2>&-' # lesspipe.sh 이 있다면 이걸 쓰세요
          MY_ISP=$(/sbin/ifconfig ppp0 | awk '/P-t-P/ { print $3 } ' | sed -e s/P-t-P://)
          echo -e "\n${RED}ISP Address :$NC" ; echo ${MY_ISP:-"Not connected"}
          # before we scan for targets, see if a makefile name was specified
  • 2002년도ACM문제샘플풀이/문제A . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 3N+1Problem/황재선 . . . . 4 matches
         using namespace std;
          n1, n2 = n.split()
          n1, n2 = n.split()
         i,j = map(int,raw_input().split())
  • 5인용C++스터디/키보드및마우스의입출력 . . . . 4 matches
          DispatchMessage(&Message);
         VK_BACK / 08 / Backspace
         VK_SPACE / 20 / Space
          DispatchMessage(&Message);
         GetMessage는 메시지 큐에서 메시지를 꺼내온 후 이 메시지를 TranslateMessage 함수로 넘겨 준다. TranslateMessage 함수는 전달된 메시지가 WM_KEYDOWN인지와 눌려진 키가 문자키인지 검사해 보고 조건이 맞을 경우 WM_CHAR 메시지를 만들어 메시지 큐에 덧붙이는 역할을 한다. 물론 문자 입력이 아닐 경우는 아무 일도 하지 않으며 이 메시지는 DispatchMessage 함수에 의해 WndProc으로 보내진다. 만약 메시지 루프에서 TranslateMessage 함수를 빼 버리면 WM_CHAR 메시지는 절대로 WndProc으로 전달되지 않을 것이다.
  • 5인용C++스터디/템플릿 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • ACM_ICPC/2012년스터디 . . . . 4 matches
          * koi_spra - [http://211.228.163.31/pool/koi_spra/koi_spra.php?pname=koi_spra] (dovelet)
  • BuildingWikiParserUsingPlex . . . . 4 matches
          wikiMapName,pageName = self.text.split(":")
          stringUntilSpace = Rep(AnyBut(" "))
          url = urlHeader + stringUntilSpace
          stringUntilSpaceOrCommaOrRest = Rep1(AnyBut(" .,"))
          interwiki = alphabetSequence + interwikiDelim + stringUntilSpaceOrCommaOrRest
          space = Str(" ")
          (AnyChar | space, repl_normalString),])
         전자의 경우 각각의 Class Responsibility 들을 유지한다는 장점이 있지만, AutoLinker 에서 원래 생각치 않았던 한가지 일을 더 해야 한다는 점이 있겠다.
  • C/Assembly/Main . . . . 4 matches
          movl %esp, %ebp
          subl $8, %esp // 빈 스택 할당
          andl $-16, %esp
          subl %eax, %esp
  • CPPStudy_2005_1/STL성적처리_1 . . . . 4 matches
         using namespace std;
         ostream& displayScores(ostream &out, const vector<Student_info> &students);
          displayScores(cout,students);
         ostream& displayScores(ostream &out, const vector<Student_info> &students)
  • CPPStudy_2005_1/STL성적처리_1_class . . . . 4 matches
         using namespace std;
         ostream& displayScores(ostream &out);
         ostream& ScoreProcess::displayScores(ostream &out)
          displayScores(cout);
  • Calendar성훈이코드 . . . . 4 matches
         void print_space();
          print_space(); //print space leftDays times
         void print_space()
  • CeeThreadProgramming . . . . 4 matches
         //http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt__beginthread.2c_._beginthreadex.asp
         //http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/overlapped_str.asp
  • ClearType . . . . 4 matches
         Microsoft 에서 주도한 폰트 보정 기법의 하나로 기존의 안티얼라이징 기법과 최근에 나오고 있는 LCD Display 의 표현적 특성을 조합하여 폰트 이미지의 외관을 가히 극대화하여 표현하는 방식.
          * [http://www.microsoft.com/typography/ClearTypeInfo.mspx ClearType기술 홈페이지] - 윈도우 적용 방법이나 기술에대한 자세한 소개.
          * 컴퓨터 Display 에서 bitmap으로 표현되는 글자들의 가독률이 나빠, 종이에 인쇄되는 것과 같은 수준의 글자 가독률 얻기 위해서 만들어 졌다.
          * [http://www.microsoft.com/typography/cleartype/tuner/Step1.aspx ClearType Tuner]라는 프로그램으로 세부적인 클리어타입 셋팅을 할 수 있다.
  • Code/RPGMaker . . . . 4 matches
          buffer.dispose();
          #puts header.inspect
          #puts table.inspect
         # use temporary namespace(module) to solve ambiguous class name
  • CppStudy_2002_1/과제1/CherryBoy . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • DocumentObjectModel . . . . 4 matches
         Upload:DOM_Inspector.png
         Different variants of DOMs were initially implemented by web browsers to manipulate elements in an HTML document. This prompted the World Wide Web Consortium (W3C) to come up with a series of standard specifications for DOM (hence called W3CDOM).
         Most XML parsers (e.g., Xerces) and XSL processors (e.g., Xalan) have been developed to make use of the tree structure. Such an implementation requires that the entire content of a document be parsed and stored in memory. Hence, DOM is best used for applications where the document elements have to be randomly accessed and manipulated. For XML-based applications which involve a one-time selective read/write per parse, DOM presents a considerable overhead on memory. The SAX model is advantageous in such a case in terms of speed and memory consumption.
         [http://www.w3schools.com/dom/default.asp XML_DOM 첫배우기.](tutorial)
  • FeedBack . . . . 4 matches
          a. The return of a portion of the output of a process or system to the input, especially when used to maintain performance or to control a system or process.
          * Sound created when a transducer such as a microphone or electric guitar picks up sound from a speaker connected to an amplifier and regenerates it back through the amplifier.
          *. The return of information about the result of a process or activity; an evaluative response: asked the students for feedback on the new curriculum.
          *. The process by which a system, often biological or ecological, is modulated, controlled, or changed by the product, output, or response it produces.
  • Fmt/문보창 . . . . 4 matches
         using namespace std;
         void remove_string_end_space(string & str);
          remove_string_end_space(str);
         void remove_string_end_space(string & str)
  • FrontPage . . . . 4 matches
          * [https://docs.google.com/spreadsheet/ccc?key=0AuA1WWfytN5gdEZsZVZQTzFyRzdqMVNiS0RDSHZySnc&usp=sharing 기자재 목록]
          * [https://docs.google.com/spreadsheets/d/1c5oB2qnh64Em4yVOeG2XT4i_YXdPsygzpqbG6yoC3IY/edit?usp=sharing 도서목록]
          * [https://goo.gl/SPoRyp ZeroPage 공식 캘린더]
  • HelpOnTables . . . . 4 matches
          * {{{<|2>}}}: 두줄에 걸쳐서 (rowspan)
         ||셀 1||||spanning 2 columns||
         ||셀 1||||spanning 2 columns||
         ||<align="right">cell 1||||spanning 2 columns||
  • ISBN_Barcode_Image_Recognition . . . . 4 matches
         === Bar and Space ===
          * Bar는 바코드의 검은 부분, Space는 흰 부분이며, 각각 Black, White라고 표현하기도 한다.
          * 가장 좁은 Bar 혹은 가장 좁은 Space(의 폭 길이)를 의미한다.
          * 바코드를 보다 쉽게 인식하기 위해, 바코드 좌우로 X-dimension의 10배의 Space가 존재한다.
          * 1은 bar, 0은 space로 나타냄. X는 둘 중 하나
          * 0XXXXX1 * 6 (space로 시작해서 bar로 끝남)
          * 1XXXXX0 * 6 (bar로 시작해서 space로 끝남)
          * 가장 두꺼운 Bar 혹은 Space의 폭 길이는 X-dimension의 4배이다.
          * 0은 space, 1은 bar를 의미한다.
          * 즉, 하나의 숫자를 나타내기 위해 2개의 Bar와 2개의 Space가 존재한다.
  • JTDStudy/첫번째과제/원명 . . . . 4 matches
          oneGame.displayResult();
          public void displayResult()
         readability 를 위해 필요없는 typecasting 문법들 제거 (Java Language Specification의 규칙들을 보세요. 해당 typecasting은 거의다 필요 없는겁니다.) 유의미한 단위로 분리
          oneGame.displayResult();
          public void displayResult() {
  • Java/ServletFilter . . . . 4 matches
         Filter 를 이용하면, 해당 JSP,Servlet 등이 동작하기 전에 수행되어야 하는 처리들에 대해서 추상화할 수 있다.
          * EncodingFilter - 해당 jsp/servlet 등에 대해서 공통의 인코딩 셋을 설정
         이중 EncodingFilter 의 경우 JSP 프로그래머들에게도 보편적으로 이용되고 있는중.
         기존의 model 1 스타일의 jsp/servlet 코드를 가능한 한 덜 건드리고 새 기능을 추가해야 할때 나름대로 써먹을 수 있는 방법중 하나.
          <display-name>Encoding Filter</display-name>
  • JavaScript/2011년스터디/3월이전 . . . . 4 matches
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
  • JollyJumpers/황재선 . . . . 4 matches
          String [] ch = splitMessage(message);
          private String[] splitMessage(String message) {
          return message.split(" ");
          String [] ch = line.split(" ");
  • MedusaCppStudy/희경 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • MineFinder . . . . 4 matches
          * 개발툴 : Visual C++ 6.0, cppunit 1.62, SPY++, 지뢰찾기 2000, 98버전
         === 기능 spec ===
          * 지뢰찾기 프로그램의 윈도우 핸들을 얻고 해당 메세지를 보내어서 지뢰찾기 프로그램을 구동하는 루틴 관련 SpikeSolution. (아.. UnitTest 코드 넣기가 애매해서 안넣었다. 궁리해봐야 할 부분같다.)
          * 지뢰찾기 프로그램의 윈도우 핸들을 얻은뒤 DC를 얻은후 화면 캡쳐. 그리고 캡쳐한 비트맵을 근거로 하여 데이터로 변환하는 루틴 관련 SpikeSolution
          * 지금쯤 다시 짜라고 한다면 TFP를 좀 더 제대로 추구할 수 있을 것도 같다. (이 점에서 TFP를 할때 SpikeSolution 에 대한 어느정도의 충분한 시간을 두는 점이 좋을 것 같다는 생각이 들었다. 초기 SpikeSolution 으로 해당 부분을 간단하게 대강 해보고, Test를 할 수 있는 부분에 대한 구체화하기.)
         [영현] 형 신기해~ ㅎㅎㅎ bitmap data로 숫자들과 거시기들을 구분한건가..ㅡㅡa.. spy 좋구만..[[BR]]
          1. ["Spy++"]
         일단, 소위 말하는 '꺼리' 들을 찾기 위해 ["Spy++"] 을 실행시켰다.
         http://zeropage.org/~reset/zb/data/spy_1.gif
         http://zeropage.org/~reset/zb/data/spy_2.gif
  • MoinMoinTodo . . . . 4 matches
          * Spellchecker:
          * Send a timestamp with the EditPage link, and then compare to the current timestamp; warn the user if page was edited since displaying.
          * [[SiteMap]]: find the hotspots and create a hierarchical list of all pages (again, faster with caching)
          * Add display of config params (lower/uppercase letterns) to the SystemInfo macro.
          * Add a "news item" macro (edit page shows a special form)
  • NSIS/예제2 . . . . 4 matches
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2\DisplayName=NSIS Example2 (remove only)
  • NeoCoin/Server . . . . 4 matches
         cdrecord -v speed=<배속> dev=<scanbus 옵션에서 나온 장치> <이미지 파일>
         cdrecord -v -dao -audio -pad -useinfo speed=<배속> dev=<...> <wav file>..
         /win split on
         /alias WNC {window new hide swap last double on split on channel $0}
  • Omok/유상욱 . . . . 4 matches
         void omok_display();
          omok_display();
          omok_display();
         void omok_display()
  • Omok/재니 . . . . 4 matches
         void board_display();
          board_display();
         void board_display()
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/ctype.h . . . . 4 matches
         || int isspace(int c) || 공백문자들을 검사한다.('\f'), ('\n'), ('\r'),('\t'),('\v'). ||
         || int ispunct(int c) || 알파벳문자 혹은 공백문자가 아닌 출력가능한 문자인지 확인한다. ||
         || int isprint(int c) || 공백문자를 포함한 출력가능한 문자인지 검사한다. ||
         || int iswspace(wint_t) || 공백문자들을 검사한다.||
  • Plex . . . . 4 matches
         특히 좋아하는 이유로는 State Machine 의 개념으로 텍스트를 파싱하고 가지고 놀 수 있다는 점이 있겠다. 예를 들어 HTML에서 span 태그에 대해 파싱한다고 할때 <span 시작 - span 내용 - </span> 끝이라면 그냥 이를 서술해버리면 된다는.~
  • PrivateHomepageMaking . . . . 4 matches
         가 없기 때문에 용량의 제한이 없고, mysql, php, jsp
         윈도우 서버 환경에서는 apmsetup, spacetag, winapm 과 같은 통합형 Apache+PHP+Mysql
         윈도우를 선택한 사람은 IIS를 이용해서 ASP로 구성된 페이지를 만드는 것이 간편하다. 그렇다고 해서
         IIS역시 약간의 설정으로 tomcat, php의 설정이 가능해 PHP, JSP를 이용하기 위해서 웹 서버로 아파치를
         || DokuWiki || http://wiki.splitbrain.org/ || PHP 기반, 내가 본거 중에 제일 괜찮다, 데비안의 경우 패키지로 그냥 설치됨 ||
         참고) [http://wiki.splitbrain.org/wiki%3Acompare WikiEngine 비교]
  • ProjectZephyrus/Server . . . . 4 matches
          .classpath : Eclipse 용 Java의 환경 설정
          java_zp : ZeroPage Server 실행 bash script (zp에서만 돈다. bin이 classpath에 안들어가서 꽁수로 처리,port번호를 변경할수 없다.)
          ProjectZephyrusServer.jcw : JCreator용 workspace 파일
          * Perspective를 CVS Repositary Explorering에서 {{{~cpp CheckOut}}}을 한다음, 컴파일이 안된다면 해당 프로젝트의 JRE_LIB가 잘못 잡혀 있을 가능성이 크다. (Win98에서 JRE가 잘못 설치되어 있을때) 방법은 ["Eclipse"]에서 Tip중 설치 부분을 찾아 보라
         ||||||||''서버 정보 기능(Spec 미정의, 구현 강제성 없음)''||
  • ProjectZephyrus/간단CVS사용설명 . . . . 4 matches
         cvspserver 2401/tcp
         vi /etc/xinetd.d/cvspserver
         # description: The cvspsever serves CVS Passowrd Server sessions; it uses \
         service cvspserver
  • RandomWalk/은지 . . . . 4 matches
         using namespace std;
         void display(int);
          display(size);
         void display(int size)
  • RandomWalk/임인택 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         === 소스 5 : 재미있을것 같은 CSP ===
          TokenRing 에서 아이디어를 얻어 나름대로 만들어봤는데 (아직 제대로 동작하는지 미확인. 이 글을 작성하는 도중에도 버그가 하나둘 보이고 BadSmell 이 많이 난다. PC가 많은 곳에서 추가작업필요... :( ) 이게 CSP 의 이념에 부합하는지 모르겠다. m by n 배열에 있는 셀들을 TokenRingNetwork 형태를 띠게 하면서 사실은 배열인것처럼 동작하게 했다. 이 방법 말고 마땅한 방법이 떠오르지 않았다. TestDrivenDevelopment 으로 작성해보려고 했지만 실천에 옮기지 못했다. 몸에 밴 습관이란건 극복하기가 쉽지 않은 것 같다.
          String adjHostIdxes[] = adjIdx.split(" ");
  • ResponsibilityDrivenDesign . . . . 4 matches
         Object 란 단순히 logic 과 data 묶음 이상이다. Object 는 service-provider 이며, information holder 이며, structurer 이며, coordinator 이며, controller 이며, 바깥 세상을 위한 interfacer 이다. 각각의 Object 들은 자신이 맡은 부분에 대해 알며, 역할을 해 내야 한다. 이러한 ResponsibilityDrivenDesign 은 디자인에 대한 유연한 접근을 가능하게 한다. 다른 디자인 방법의 경우 로직과 데이터를 각각 따로 촛점을 맞추게끔 하였다. 이러한 접근은 자칫 나무만 보고 숲을 보지 못하는 실수를 저지르게 한다. RDD는 디자인과 구현, 그리고 책임들에 대한 재디자인에 대한 실천적 조언을 제공한다.
          * object 에 대해서 기존의 'data + algorithms' 식 사고로부터 'roles + responsibilities' 로의 사고의 전환.
          * Generates DesignPatterns. ChainofResponsibilityPattern, MediatorPattern, CommandPattern and TemplateMethodPattern are all generated by the method.
          * Seminar:ResponsibilityDrivenDesign
  • TellVsAsk . . . . 4 matches
         responsibility, not yours. For you to make decisions outside the object violates its encapsulation.
         It is easier to stay out of this trap if you start by designing classes based on their responsibilities,
         you can then progress naturally to specifying commands that the class may execute, as opposed to queries
         (ResponsibilityDrivenDesign) 그러한 경우, 당신은 당신에게 객체의 상태를 알리도록 질의문을 작성하는 대신 (주로 getter 들에 해당되리라 생각), class 들이 실행할 수 있는 '''command''' 들을 자연스럽게 발전시켜 나갈 것이다.
  • TheJavaMan . . . . 4 matches
          * [http://www.javanuri.com/lecture/mainLecture.jsp 자바누리]
         [http://www.yes24.com/home/pd.asp?SID=G4JaiuIvSpuwzia6CMCpwdLN6ycFuMHPjStWSgEBltChZEnIOvC8UAlza&AK=67883&TABID=1 Core JAVA 코아 자바 2: 제1권 : 기초편]
         [http://www.yes24.com/home/pd.asp?SID=G4JaiuIvSpuwzia6CMCpwdLN6ycFuMHPjStWSgEBltChZEnIOvC8UAlza&AK=376933&TABID=1 Thinking in Java]
         [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200312300024 JAVA HOW TO PROGRAM (<- 2학년때 교재, 번역5판도 나왔네)]
  • UsenetMacro . . . . 4 matches
          $img = sprintf('<img src="%s/google-16.png" alt="GoogleGroups:"'.
          ' align="middle" hspace="1" />', $DBInfo->imgs_dir);
          return sprintf('%s<a href="%s">%s</a>', $img, $url, $subj);
         then it will be displayed like...
  • VendingMachine/세연/1002 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • WindowsTemplateLibrary . . . . 4 matches
         In an uncharacteristic move by Microsoft—an outspoken critic of open source software—they made the source code of WTL freely available. Releasing it under the open-source Common Public License, Microsoft posted the source on SourceForge, an Internet open-source repository. The SourceForge version is 7.5.
         [http://www.microsoft.com/downloads/details.aspx?FamilyID=128e26ee-2112-4cf7-b28e-7727d9a1f288&DisplayLang=en MS WTL]
         [http://www.codeproject.com/wtl/wtl4mfc1.asp WTLForMFCProgrammer]
  • ZPBoardHistory . . . . 4 matches
          *[http://zeropage.org/jsp/board/thin/?table=seminar]
          *[http://zeropage.org/jsp/board/thin/?table=T999844101271]
          *[http://zeropage.org/jsp/board/thin/?table=T999617115441]
          *[http://zeropage.org/jsp/board/thin/?table=T996891244793]
  • ZeroPageServer/old . . . . 4 matches
         || [ZeroPageServer/SystemSpec] || ||
          * 이유는 2.2의 dospath 모듈 이름이 2.3에서 ntpath 로 완전히 변경되었기 때문이다. 예상치 못한 부분에서 에러가 발생하였는데, 조금더 작은 발걸음이 필요했다.
          뭔가 했더니 예전에 쓰던 자료실의 자료가 저장된 곳이네요. 혹시라도 필요하신분은 [http://zeropage.org/jsp/pds/pds_list.jsp 여기]를 눌러서 가세요.
          * sshd 가 맛이 갔나요?, putty 로 터미널 로그인도 안되고.. sftp 도 로그인이 안되네요...-ㅁ-. 이거 로그인이 안되면.. 관리는 어찌하지...;; (원래부터 ssh2 로 접속해야했죠?. 셤기간인데 지송하네용. jsp 알바하는데 머좀 테스트하느라~) - [임인택]
  • [Lovely]boy^_^/EnglishGrammer/PresentPerfectAndPast . . . . 4 matches
          Yet = until now. It shows that the speaker is expecting something to happen. Use yet only in questions and negative sentences.
          Here are more examples of speakers talking about a period that continues until now(recently/ in the last few days/ so far/ since breakfast, etc.)
          B. We use the present perfect with today/ this morning/ this evening, etc. when these periods are not finished at the time of speaking.(그렇대요;;)
          ex) Sarah has lost her passport again. It's the second time this has happened.(not happens)
  • aekae/code . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • whiteblue/MyTermProjectForClass . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 기술적인의미에서의ZeroPage . . . . 4 matches
         The zero page is the memory address page at the absolute beginning of a computer's address space (the lowermost page, covered by the memory address range 0 ... page size?1).
         In early computers, including the PDP-8, the zero page had a special fast addressing mode, which facilitated its use for temporary storage of data and compensated for the relative shortage of CPU registers. The PDP-8 had only one register, so zero page addressing was essential.
         Zero page addressing now has mostly historical significance, since the developments in integrated circuit technology have made adding more registers to a CPU less expensive, and have made CPU operations much faster than RAM accesses. Some computer architectures still reserve the beginning of address space for other purposes, though; for instance, the Intel x86 systems reserve the first 512 words of address space for the interrupt table.
  • 니젤프림/BuilderPattern . . . . 4 matches
         class SpicyPizzaBuilder extends PizzaBuilder {
          PizzaBuilder spicyPizzaBuilder = new SpicyPizzaBuilder();
          builder.addSpecialEvent(second, "Patterns on Ice");
          abstract public void addSpecialEvent(int date, String event);
          public void addSpecialEvent(int date, String event) {
          PlanComponent specialEvent = new Plan("Special Event");
          specialEvent.add(new PlanItem(event));
          plan.getChild(date - 1).add(specialEvent);
  • 데블스캠프2005/RUR-PLE . . . . 4 matches
         || [데블스캠프2005/RUR-PLE/Newspaper/Refactoring] ||
         || [데블스캠프2005/RUR-PLE/Newspaper] ||
         http://rur-ple.sourceforge.net/images/newspaper_start.png
         http://rur-ple.sourceforge.net/images/newspaper_end.png
  • 레밍즈프로젝트/프로토타입/SetBit . . . . 4 matches
         [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cdc.3a3a.setpixel.asp MSDN_SetPixel], [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cdc.3a3a.getpixel.asp MSDN_GetPixel]
  • 로그인없이ssh접속하기 . . . . 4 matches
         아래 명령어 실행시에 Enter Passphrase 에서 그냥 Enter 만 칠것
         Enter passphrase (empty for no passphrase):
         Enter same passphrase again:
  • 압축알고리즘/주영&재화 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 압축알고리즘/희경&능규 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 정모/2011.8.8 . . . . 4 matches
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039134727&type=det OCP(개방-폐쇄 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039135552&type=det SRP(단일 책임 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039139151&type=det ISP(인터페이스 분리 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039139151&type=det LSP(리스코프 대체 원칙), DIP(의존관계 역전 원칙)]
          * [Spring/탐험스터디]
          * [EnglishSpeaking/2011년스터디]
  • 조영준/다대다채팅 . . . . 4 matches
         namespace CSharpSocketServer
         namespace CSharpSocketServer
         namespace CSharpSocketServer
         namespace CSharpSocketClient
  • 코드레이스/2007.03.24상섭수생형진 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 토이/메일주소셀렉터/김정현 . . . . 4 matches
          io.insertSpace(true);
          private boolean shouldInsertSpace;
          shouldInsertSpace= false;
          String[] splitedStrings= tempString.split("-");
          if(splitedStrings.length == 2 && splitedStrings[1].equals("txt")) {
          if(shouldInsertSpace) {
          public void insertSpace(boolean shouldInsertSpace) {
          this.shouldInsertSpace= shouldInsertSpace;
  • 파이썬으로익스플로어제어 . . . . 4 matches
         from win32com.client import Dispatch
         ie = Dispatch("InternetExplorer.Application")
          자세한 내용은 http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/reference/objects/internetexplorer.asp 에의 컴포넌트들을 참조하세요. 주로 알아야 할 객체는 WebBrowser, Document 객체입니다. (login 예제는 나중에~) --[1002]
  • 2005Fall수업 . . . . 3 matches
         [http://ec.cse.cau.ac.kr:8080/jspboard/board.jsp?bbs=bbs20052 수업게시판]
         http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200409180003
  • 2학기파이선스터디/모듈 . . . . 3 matches
         ['_StringTypes', '__builtins__', '__doc__', '__file__', '__name__', '_float', '_idmap', '_idmapL', '_int', '_long', 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'atof', 'atof_error', 'atoi', 'atoi_error', 'atol', 'atol_error', 'capitalize', 'capwords', 'center', 'count', 'digits', 'expandtabs', 'find', 'hexdigits', 'index', 'index_error', 'join', 'joinfields', 'letters', 'ljust', 'lower', 'lowercase', 'lstrip', 'maketrans', 'octdigits', 'printable', 'punctuation', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitfields', 'strip', 'swapcase', 'translate', 'upper', 'uppercase', 'whitespace', 'zfill']
  • 2학기파이선스터디/서버 . . . . 3 matches
          cmd = msg[1:].rstrip().split()
          cmd = msg[1:].rstrip().split()
          cmd = msg[1:].rstrip().split()
  • APlusProject/ENG . . . . 3 matches
         === asp.net웹 응용프로그램 만들기 할때 에러 발생시 해결책 ===
         1.에러메시지: 웹서버에 ASP.NET 1.1 설치되어 있지 않습니다.
          "aspnet_regiis.exe -i" 명령어 실행하면 다음 메시지와 함께 ASP.NET이 설치됨
         C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis.exe -i
         ASP.NET(1.1.4322.0) 설치를 시작합니다.
         ASP.NET(1.1.4322.0) 설치가 끝났습니다.
         Upload:APP_ASP.NET_Error.hwp
         [APlusProject]
  • ATmega163 . . . . 3 matches
          * Master / Slave SPI Serial Interface
          uisp --STK200 --erase
          uisp --STK200 --upload $(TRG).rom
          uisp --STK200 --erase
  • AirSpeedTemplateLibrary . . . . 3 matches
         http://airspeed.pythonconsulting.com/wiki
         A number of excellent templating mechanisms already exist for Python, including Cheetah, which has a syntax similar to Airspeed.
         However, in making Airspeed's syntax identical to that of Velocity, our goal is to allow Python programmers to prototype, replace or extend Java code that relies on Velocity.
  • AseParserByJhs . . . . 3 matches
         RenameThisPage - 적저한 이름과 하는 일이 필요할것 같아서. 궁리중 --["1002"]
          sprintf (ds, "# %s not found\n", filename);
          sprintf (debug_buf,"\n#ROOT NODE: %s", pTmp->Name);
          // 파싱한 angular displacement?? 로 추정되는 것을..
  • Bigtable기능명세 . . . . 3 matches
         태블릿 Split ★★
         태블릿의 삽입(혹은 split)이 있을 때마다 마스터(또는 TS 스스로)가 b+ 트리를 갱신한다.
         == 태블릿 Split ★★ ==
          1. 태블릿 split시 키는 반드시 sort되어 있어야 한다.
          1. 후 split한다
  • C++스터디_2005여름/도서관리프로그램/문보창 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • C++스터디_2005여름/학점계산프로그램/문보창 . . . . 3 matches
         using namespace std;
         using namespace std;
          fin >> str; // >> 은 white space(공백)을 무시한다.
  • C++스터디_2005여름/학점계산프로그램/정수민 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • C++스터디_2005여름/학점계산프로그램/허아영 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • CPPStudy_2005_1/질문 . . . . 3 matches
          * VS6가 무슨이유인지는 모르겠으나 namespace 가 표준을 지원하지 않는 것 같기도하고, 하여간 namespace 문제입니다.
          '''using''' 지시자로 지정된 부분을 '''using namespace std;''' 로 바꾸면 정상적으로 동작합니다.
  • Class/2006Fall . . . . 3 matches
          * LISP - [http://c2.com/cgi/wiki?LispRoadMap], [(zeropage)LispLanguage]
          * [http://deadfire.hihome.com/ CGI with C Language] or [http://www.taeyo.pe.kr/ ASP.NET]
          * [http://cslab.cse.cau.ac.kr/lecture_view.asp?num=6 Home]
  • CollaborativeFiltering . . . . 3 matches
         problem space가 2차원 matrix 의 형태를 생각해본다. 행에 대해서는 item을, 열에 대해서는 user를 두고, 그에 따른 rating 을 값으로 둔다. 이 matrix 를 이용, CollaborativeFiltering 은 특정 사용자(user) i 에 대해서 rating 을 예측하고, item 들을 추천한다.
          * The Spearman rank correlation
          * NoSmok:PrincipiaCybernetica 에 있는 아주 간단한 개론(처음 보는 사람에게 추천) http://pespmc1.vub.ac.be/COLLFILT.html
          * [http://www.yes24.com/home/help/help8-1.asp?SID=c5!ePcd70qp9Hc*DTsk5*gCgFICgggx9ndWVzdxa*vNW21g Yes24 빙고시스템]
  • Cpp에서의멤버함수구현메커니즘 . . . . 3 matches
         using namespace std;
         이를 실행하면, 다음과 같은 exception을 출력합니다. 이는 [http://java.sun.com/docs/books/jls/second_edition/html/j.title.doc.html Java Language Specification 2nd] (3rd가 아직 안나왔군요.) 와 [http://java.sun.com/docs/books/vmspec/2nd-edition/html/VMSpecTOC.doc.html jvm specification]을 참고하세요.
  • CrcCard . . . . 3 matches
         Class - Responsibility - Collaboration Card. 보통은 간단한 3 x 5 inch 짜리의 인덱스카드(IndexCard)를 이용한다.
         ResponsibilityDrivenDesign 에서 OOP 를 이야기할때 '객체를 의인화'한다. CrcCard Play는 이를 돕는다. 즐겁게 객체들을 가지고 노는 것이다.
         See Also Moa:CrcCard , ResponsibilityDrivenDesign, [http://c2.com/doc/oopsla89/paper.html aLaboratoryForTeachingObject-OrientedThinking]
  • DPSCChapter3 . . . . 3 matches
          self subclassResponsibility
          self subclassResponsibility
          self subclassResponsibility
  • EclipsePlugin . . . . 3 matches
         JSP 코드 Assistant 인데 정말 엄청 가볍게 느껴지는 Eclipse Plug-in 이다. Highlight 는 기본이고 자동완성 또한 지원한다.
         또한 jsp 문법 오류도 잡아준다. WebApp 의 ROOT 를 지정해 줌으로써 설정이 간단히 끝난다. 자체 JSP Compiler 를 이용해서 Servlet 을 생성하므로 Lomboz 보다 훨씬 가볍다.(Lomboz는 JSP Compiler 를 기존의 WAS 것을 가져다 쓴다.)
         단 jsp 파일을 servlet 파일로 변경하면서 jsp 파일의 상위폴더를 패키지 명으로 사용하는데 이 때문에 warning 이 발생하는 아주 작은 문제가 있다. :)
         여러 언어의 소스의 Highlight 해주는 라이브러리인데 여기에 Eclipse Plug-in 도 있습니다. JSP, C/C++, HTML, XML 등등 여러 타입이 지원됩니다. [http://colorer.sourceforge.net/lang-list.html 지원 언어 목록]
  • EightQueenProblemSecondTryDiscussion . . . . 3 matches
          UnAttackableList0 = self.GetUnAttackableOthersPositionList (0)
          UnAttackableList1 = self.GetUnAttackableOthersPositionList (1)
          UnAttackableList2 = self.GetUnAttackableOthersPositionList (2)
          UnAttackableList = self.GetUnAttackableOthersPositionList (Level)
         제가 보기에 현재의 디자인은 class 키워드만 빼면 절차적 프로그래밍(procedural programming)이 되는 것 같습니다. 오브젝트 속성은 전역 변수가 되고 말이죠. 이런 구성을 일러 God Class Problem이라고도 합니다. AOP(Action-Oriented Programming -- 소위 Procedural Programming이라고 하는 것) 쪽에서 온 프로그래머들이 자주 만드는 실수이기도 합니다. 객체지향 분해라기보다는 한 거대 클래스 내에서의 기능적 분해(functional decomposition)가 되는 것이죠. Wirfs-Brock은 지능(Intelligence)의 고른 분포를 OOD의 중요요소로 뽑습니다. NQueen 오브젝트는 그 이름을 "Manager"나 "Main''''''Controller"로 바꿔도 될 정도로 모든 책임(responsibility)을 도맡아 하고 있습니다 -- Meyer는 하나의 클래스는 한가지 책임만을 제대로 해야한다(A class has a single responsibility: it does it all, does it well, and does it only )고 말하는데, 이것은 클래스 이름이 잘 지어졌는지, 얼마나 구체성을 주는지 등에서 알 수 있습니다. (Coad는 "In OO, a class's statement of responsibility (a 25-word or less statement) is the key to the class. It shouldn't have many 'and's and almost no 'or's."라고 합니다. 만약 이게 자연스럽게 되지않는다면 클래스를 하나 이상 만들어야 한다는 얘기가 되겠죠.) 한가지 가능한 지능 분산으로, 여러개의 Queen 오브젝트와 Board 오브젝트 하나를 만드는 경우를 생각해 볼 수 있겠습니다. Queen 오브젝트 갑이 Queen 오브젝트 을에게 물어봅니다. "내가 너를 귀찮게 하고 있니?" --김창준
  • ErdosNumbers/임인택 . . . . 3 matches
          sInfo = lines[idx].split()
         def stripWhiteSpaces(str):
          parts = str.split(':')
          names = parts[0].split('.,')
          names[i] = stripWhiteSpaces(names[i]+dot)
          name = stripWhiteSpaces(name)
          self.assertEqual('aaa', stripWhiteSpaces(' aaa '))
          self.assertEqual('bbb', stripWhiteSpaces(' bbb'))
          self.assertEqual('ccc', stripWhiteSpaces('ccc '))
          self.assertEqual(1, erdosNum[stripWhiteSpaces(self.lines[6])])
          self.assertEqual(-1, erdosNum[stripWhiteSpaces(self.lines[7])])
          self.assertEqual(2, erdosNum[stripWhiteSpaces(self.lines[8])])
  • FundamentalDesignPattern . . . . 3 matches
         기본적인 것으로는 Delegation, DoubleDispatch 가 있으며 (SmalltalkBestPracticePattern에서 언급되었던 것 같은데.. 추후 조사), 'Patterns In Java' 라는 책에서는 Delegation 과 Interface, Immutable, MarkerInterface, Proxy 를 든다. (Proxy 는 DesignPatterns 에 있기도 하다.)
          * DoubleDispatch
         근데, 지금 보면 저건 Patterns in Java 의 관점인 것 같고.. 그렇게 '필수적 패턴' 이란 느낌이 안든다. (Proxy 패턴이 과연 필수개념일까. RPC 구현 원리를 이해한다던지 등등이라면 몰라도.) Patterns in Java 에 있는건 빼버리는 것이 좋을 것 같다는 생각. (DoubleDispatch 는 잘 안이용해서 모르겠고 언어 독립적으로 생각해볼때는 일단은 Delegation 정도만?) --["1002"]
  • Gof/Adapter . . . . 3 matches
          - 클라이언트가 이용한 domain-specific한 인터페이스를 정의한다.
         directoryDisplay :=
          (TreeDisplay on: treeRoot)
  • HardcoreCppStudy/첫숙제/Overloading/임민수 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • HelloWorld . . . . 3 matches
         using namespace std;
         namespace HelloWorld
         using namespace System;
  • HelpOnLinking . . . . 3 matches
          * {{{[Hello World]}}} link to [HelloWorld] (no space inserted)
         If you want to insert a space, use {{{["Hello World"]}}}
          * {{{[[Hello World]]}}} link to ![[Hello World]] (no space inserted)
  • JUnit/Ecliipse . . . . 3 matches
         Eclipse 플랫폼을 실행하시고, Window->Preference 메뉴를 선택하시면 Preferences 대화창이 열립니다. 왼쪽의 트리구조를 보시면 Java 라는 노드가 있고, 하위 노드로 Build Path 에 보시면 Classpath Varialbles 가 있습니다.
         이클립스의 Workspace 중 Pakage Expolorer 를 보시면 Ch03_01.java 파일이 있습니다. 여기서 마우스 오른쪽 버튼을 클릭 -> NEW -> JUnit Test Case 를 선택합니다.
         왼쪽의 Workspace 에 붉은색 상태바가 나타나며 3개의 Error가 발생합니다.
  • JollyJumpers/남훈 . . . . 3 matches
          line = line.rstrip().split(' ')
         def displayDecision(t):
          displayDecision(isJolly(line))
  • LCD Display/Celfin . . . . 3 matches
         using namespace std;
         void display(int size, char *str)
          display(n, s);
  • LearningGuideToDesignPatterns . . . . 3 matches
         CompositePattern은 여러부분에서 나타나며, IteratorPattern, ChainOfResponsibilityPattern, InterpreterPattern, VisitorPattern 에서 종종 쓰인다.
         === Chain of Responsibility - Behavioral ===
         ObserverPattern 과 MediatorPattern 들을 이용한 message의 전달관계를 관찰하면서, ChainOfResponsibilityPattern 의 message handling 과 비교 & 대조할 수 있다.
  • Linux/RegularExpression . . . . 3 matches
         print, space, uppper, xdigit가 있다.
         예 2 : redundant whitespace 없애기
         $str = eregi_replace("[[:space:]]+", " ", $str);
  • MoreEffectiveC++/C++이 어렵다? . . . . 3 matches
          ==== Double-Dispatch (Multi-Dispatch) ====
          * 다른 언어 : Java는 공통의 플랫폼 차원([http://java.sun.com/j2se/1.3/docs/guide/serialization/ Serialization]), C#은 .NET Specification에서 명시된 attribute 이용, 직렬화 인자 구분, 역시 플랫폼에서 지원
          [http://jcp.org/jsr/detail/014.jsp]
  • NSIS . . . . 3 matches
          * http://forums.winamp.com/forumdisplay.php?forumid=65 - nsis discussion
          CreateShortCut "$SMPROGRAMS\NSIS\ZIP2EXE project workspace.lnk" \
         "DisplayName" "${MUI_PRODUCT} (remove only)"
  • NSIS/예제3 . . . . 3 matches
         SpaceTexts "필요요구용량" "이용가능한용량"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris" "DisplayName" "ZPTetris (remove only)"
         SpaceTexts: required="필요요구용량" available="이용가능한용량"
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris\DisplayName=ZPTetris (remove only)
         File: "Tetris.dsp" [compress] 1325/5803 bytes
  • NotToolsButConcepts . . . . 3 matches
         There are some more skills that are especially important:
         [1] If you have some spare time you can learn that by joining an Open
          * Java, C#이 아닌 OOP(ObjectOrientedProgramming),AOP(AspectOrientedProgramming)
  • OurMajorLangIsCAndCPlusPlus/locale.h . . . . 3 matches
         location specific information 를 setting 하는데 유용한 라이브러리
         char n_sep_by_space; CHAR_MAX LC_MONETARY
         char p_sep_by_space; CHAR_MAX LC_MONETARY
  • OurMajorLangIsCAndCPlusPlus/stdlib.h . . . . 3 matches
          /* Allocate space for a path name */
          printf( "Memory space allocated for path name\n" );
         Memory space allocated for path name
         [OurMajorLangIsCAndCPlusPlus]
  • POLY/김태진 . . . . 3 matches
          * [http://www.algospot.com/judge/problem/read/POLY 폴리오미노]
         // Algospot_normal
         using namespace std;
  • PPProject/Colume2Exercises . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • ProgrammingContest . . . . 3 matches
         http://ipsc.ksp.sk/
         나이나 학력 제한이 전혀 없습니다(Open경우). 팀은 세명까지 가능하고, 혼자서도 참가 가능합니다. 사용 가능 언어는 Java, C++, Pascal, Python 등 입니다. 제한 조건은 한 팀은 프로그램 개발을 위해서는 하나의 컴퓨터만 사용해야 한다는 것입니다. 이번 금요일(2002/5/10)에 한국 시간으로는 오후 9시부터 5시간 동안입니다. 온라인(이메일)으로 진행합니다. (see also .http://ipsc.ksp.sk/rules.php )
         수준이 궁금하신 분들은 K-In-A-Row를 풀어보세요. http://ipsc.ksp.sk/problems/prac2002/sampl_r.php
         만약 팀을 짠다면 두사람은 PairProgramming으로 코딩을 하고(이 때 Interactive Shell이 지원되는 인터프리터식 언어라면 엄청난 플러스가 될 것임), 나머지 하나는 다른 문제를 읽고 이해하고, (가능하면 단순한) 알고리즘을 생각하고 SpikeSolution을 종이 위에서 실험한 뒤에 현재 커플이 완료를 하면 그 중 한 명과 Pair Switch를 하고 기존에 코딩을 하던 친구 중 하나는 혼자 다른 문제를 읽고 실험을 하는 역할을 맡으면 효율적일 겁니다. 즉, 두 명의 코더와 한 명의 실험자로 이루어지되 지속적으로 짝 바꾸기를 하는 것이죠.
  • ProjectEazy/Source . . . . 3 matches
          lastToken = aSentence.split()[-1]
          temp = aSentence.split(' ')
          return aSentence.split(' ')[0]
  • R'sSource . . . . 3 matches
         newlen = len(string.split(urldump))
         tmp = commands.getoutput('echo "%s" | smbclient -M 박준우 -' % string.join(string.split(urldump)))
         print string.join(string.split(urldump))
  • RUR-PLE/Newspaper . . . . 3 matches
         = RUR-PLE/Newspaper(함수화 전) =
         = RUR-PLE/Newspaper(함수화 후) =
         = RUR-PLE/Newspaper(함수화 후, 함수 반복제거) =
  • RandomWalk/영동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • RubyLanguage/Class . . . . 3 matches
          * Namespace
         == Namespace ==
          * 앞의 Service 클래스는 최상위 레벨의 namespace에 속해 있고, 뒤의 Service 클래스는 Library 모듈에 속해 있다.
  • STLPort . . . . 3 matches
          * 메이크 파일을 읽으면, 아래와 같은 대화 상자가 나와 "프로젝트를 만들겠냐고 물어 보는데, 당연히 [예] 하시고, 적당한 이름(예: STLP_vc6)을 짓죠. 프로젝트 파일인 .dsp와 .dsw가 만들어 지면서 재사용 바이너리를 빌드할 수 있게 됩니다.
          * [http://msdn.microsoft.com/library/kor/default.asp?url=/library/KOR/vccore/html/LNK4098.asp 관련 MSDN 링크]
  • Simple_Jsp_Ex . . . . 3 matches
          &nbsp;&nbsp;&nbsp;
         [JSP]
  • StringOfCPlusPlus/세연 . . . . 3 matches
         using namespace std;
          void Display(node *);
         void SearchWord::Display(node * tree)
         ["StringOfCPlusPlus"]
  • StringOfCPlusPlus/영동 . . . . 3 matches
          void str_delete_white_space(); //빈칸 지우기
         void Anystring::str_delete_white_space()
          string0.str_delete_white_space();
         ["StringOfCPlusPlus"]
  • UbuntuLinux . . . . 3 matches
         하지만 여전히 한/영키가 안 먹힌다. 다른 단축키(shift+space)가 있음에도 꽤 불편하다. 하긴 예전에는 이렇게 바꾸곤 했지.
         sh -c 'iptables-save > /etc/ltsp/nat.conf'
         title Windows 2000 Advanced Server SP4
         [http://www.dougsparling.com/comp/howto/linux_java.html]
  • User Stories . . . . 3 matches
         One of the biggest misunderstandings with user stories is how they differ from traditional requirements specifications. The biggest
         Another difference between stories and a requirements document is a focus on user needs. You should try to avoid details of specific technology, data base layout, and algorithms. You should try to keep stories focused on user needs and benefits as opposed to specifying GUI layouts.
  • VonNeumannAirport/1002 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • WebGL . . . . 3 matches
         [http://www.khronos.org/registry/webgl/specs/latest/1.0/ Spec]
          mat4.perspective(matProject, Math.PI/180 * 80, 1, 0, 1);
          callback(null, ajax.responseText);
  • WritingOS . . . . 3 matches
         http://www.aladdin.co.kr/shop/wproduct.aspx?isbn=8989975603
         http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200503170002
         http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200405280003
  • ZP&JARAM세미나 . . . . 3 matches
         || 8시 20분 || [이병윤] - network snipping, spooping ||
          * 이병윤 - network snipping, spooping
          행사내용에 있어서는 2번의 세미나가 조화롭게 이루어진 것 같아요. 처음 세미나는 subversion의 유용성에 대한 세미나였는데 기술적인 내용은 아니었지만 충분히 subversion의 매력을 느낄 수 있게 해 주신 세미나였고 두번째 세미나는 LAN 환경에서 어떻게 snipping, spooling 하는지 개념에서부터 실제 방법까지 잘 설명되어 있어서 이해가 잘 되었습니다.
  • ZeroPageServer/Mirroring . . . . 3 matches
          total size is 1855094784 speedup is 1.00
          total size is 42531514 speedup is 1.15
          total size is 1855094784 speedup is 1.00
  • ZeroPageServer/set2002_815 . . . . 3 matches
          * php, jsp, python, perl 정도의 예제 작성해서 ["ZeroPageServer/Telnet계정"] 에 기제
          * CGI Script (Perl, ["Python"] 1.53), PHP (4.2 일것임), JSP & Servlet (Resin 1.2 )
          * JSP (Encoding 테그 추가)
          * [[HTML( <STRIKE> JSP 계정 설정 테스트 </STRIKE> )]] : 대상 neocoin 계정 http://zeropage.org/~neocoin/hello.jsp
          * [[HTML( <STRIKE> JSP 권한 설정 </STRIKE> )]] : 사용자 woodpage에게만 줌
          * {{{~cpp /home/jspVirtualPath}}} 에 해당 아이디의 symbolic 링크를 걸면 됨. resin.conf에서 path-mapping 사용
  • ZeroPage_200_OK . . . . 3 matches
          * Mozilla Bespin -> Mozilla Skywriter -> Ajax.org Ace -> Cloud9 -> http://c9.io/
          * 각자 자신의 Cloud9 IDE Dashboard에서 Workspace를 만들어 과제를 진행하고 URL을 공유합시다. 과제는 "메뉴 만들기"였는데 어떤 모습으로 구현해도 좋습니다!
          * 위에 링크한 저의 Workspace Project의 index.html 파일에 메뉴 샘플을 구현해두었습니다. 상단의 Preview로 확인하면서 적절히 참조해서 만들면 도움이 될겁니다.
  • ZeroPage_200_OK/note . . . . 3 matches
         ==== dispatch ====
          * 자바스크립트는 함수와 일반 변수와의 구분이 없기때문에 변수 또한 dispatch가 된다.
          * standard Output에는 response body를 넘긴다.
  • [Lovely]boy^_^/Diary/2-2-15 . . . . 3 matches
          * My mom went into hospital. My father is not a good status too. I worry their health. I wish that they'll recover a health.
          * Today, I went to the hospital, to see my mom. I felt easy at my mom's health.
          * I worry about father's smoking... after my mom was hospitalization, he decreases amount of drinking, but increases amount of smoking.
  • eXtensibleMarkupLanguage . . . . 3 matches
         The Extensible Markup Language (XML) is a W3C-recommended general-purpose markup language for creating special-purpose markup languages, capable of describing many different kinds of data. In other words XML is a way of describing data and an XML file can contain the data too, as in a database. It is a simplified subset of Standard Generalized Markup Language (SGML). Its primary purpose is to facilitate the sharing of data across different systems, particularly systems connected via the Internet. Languages based on XML (for example, Geography Markup Language (GML), RDF/XML, RSS, Atom, MathML, XHTML, SVG, and MusicXML) are defined in a formal way, allowing programs to modify and validate documents in these languages without prior knowledge of their form.
          * [http://www.microsoft.com/downloads/details.aspx?FamilyID=993c0bcf-3bcf-4009-be21-27e85e1857b1&DisplayLang=en MSXML SDK DOWNLOADS]
  • subsequence/권영기 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • to.상협 . . . . 3 matches
         newlen = len(string.split(urldump))
         tmp = commands.getoutput('echo "%s" | smbclient -M 박준우 -' % string.join(string.split(urldump)))
         print string.join(string.split(urldump))
  • 김희성/리눅스멀티채팅 . . . . 3 matches
          sprintf(buff_snd,"test\n");
          sprintf(buff_snd,"%dth client : %s",num,buff_rcv);
          sprintf(buff_snd,"test\n");
  • 데블스캠프2002/날적이 . . . . 3 matches
         2. Scenario Driven - 앞의 CRC 세션때에는 일반적으로 Class 를 추출 -> Requirement 를 읽어나가면서 각 Class 별로 Responsibility 를 주욱 나열 -> 프로그램 작동시 Scenario 를 정리, Responsibility 를 추가. 의 과정을 거쳤다. 이번에는 아에 처음부터 Scenario 를 생각하며 각 Class 별 Responsibility 를 적어나갔다. Colloboration 이 필요한 곳에는 구체적 정보를 적어나가면서 각 Class 별 필요정보를 적었다. 그리하여 모든 Scenario 가 끝나면 디자인 세션을 끝내었다.
  • 데블스캠프2005/java . . . . 3 matches
         In November of that year, the Green Project was spun off to become a wholly owned subsidiary of Sun Microsystems: FirstPerson, Inc. The team relocated to Palo Alto. The FirstPerson team was interested in building highly interactive devices and when Time Warner issued an RFP for a set-top box, FirstPerson changed their target and responded with a proposal for a set-top box platform. However, the cable industry felt that their platform gave too much control to the user and FirstPerson lost their bid to SGI. An additional deal with The 3DO Company for a set-top box also failed to materialize. FirstPerson was unable to generate any interest within the cable TV industry for their platform. Following their failures, the company, FirstPerson, was rolled back into Sun.
         JAVA : J2ME, J2SE, J2EE, 자바서블릿, 자바서블릿의 한 종류로서 jsp 가 존재한다.
  • 데블스캠프2005/수요일후기 . . . . 3 matches
         최정빈 : java 와 jsp 배움. 여전히어렵다-_-;; 아..잠 잔게 뼈아프다.
         박경태 : JAVA와 SOCKET, JSP를 배웠다. 역시 언어는 매우 신기하다+_+, 매우 어렵다...-_-; 열심히 노력을 해야될 필요성이 있다.-_-;
         이형노 : 오늘한 java , 소켓프로그래밍 , jsp.. 어렵다.. java만 어느정도 끄트머리만 잡은듯 하고.. 나머지는 전혀.. 어렵다..ㅠ.ㅠ
         [최경현] : 오늘은 전체적으로 처음 접해본 주제들로 세미나가 있었다. 평소에 관심이 있던 jsp를 배워서 좋았다. 다양한것들 좀더 배워보고싶다.
         김소현 사실: 늦게와서 자바 세미나를 잘 못들었지만 그래도 다시 자바에 대해서 들었다. 그리고 소켓과 JSP에 대해서 공부했다.
  • 데블스캠프2006/월요일/함수/문제풀이/김준석 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/성우용 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/윤성준 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/이차형 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/임다찬 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제2/이장길 . . . . 3 matches
         using namespace std;
          char spell[6] = "abced";
          reverse[4-i] = spell[i];
  • 데블스캠프2012 . . . . 3 matches
          * [https://docs.google.com/spreadsheet/ccc?key=0ArWnDjSUKLWYdERWQTVqN2ZvbUVrVms3R0FScmQtN0E&usp=sharing 구글타임테이블링크]
         || LLVM+Clang && Blocks && Grand Central Dispatch || [황현](20기) ||
  • 레밍즈프로젝트/프로토타입/에니메이션버튼 . . . . 3 matches
         || animate(.AVI) button || [http://www.codeproject.com/buttonctrl/anibuttons.asp] ||
         || ImageButton(.jpeg, .gif...) || [http://www.codeproject.com/buttonctrl/CKbcButton.asp] ||
         || XP MediaCenter Button || [http://www.codeproject.com/buttonctrl/CMCButton.asp] ||
  • 마름모출력/zyint . . . . 3 matches
          spc = ' '
          print spc*(size-i) + pattern*(2*i-1)
          print spc*(size-i) + pattern*(2*i-1)
  • 문자반대출력/남도연 . . . . 3 matches
          char space;
          space=munja[strlen(munja)-1-i];
          munja[i]=space;
  • 비행기게임 . . . . 3 matches
          def spam(x, y) :
          spam = staticmethod(spam)
          암튼. 초반의 열정이 후반의 끈기로 이어지려면, 해당 일에 대한 좋은 방법들을 중간에 계속 궁리하고, 적용해봐야겠지. 개인적인 조언이라면, 초반에 너무 그래픽 등에 많이 신경쓰지 않는것이 낫다고 생각함. 일단은 전반적인 틀과 게임 엔진을 만든다는 기분으로 하고, 그 엔진이 자신이 원하는 아이디어를 수용할 수 있는가에 더 촛점을 맞추는게 낫지 않을까 함. 단, 생각은 전반적인 부분을 보되, 구현을 쉽게 하기 위해서는 구체적 예제 데이터를 가지고 작업하는것이 효율적이겠지. 그리고 그 예제 데이터를 기반으로 일종의 SpikeSolution식으로 구현을 한뒤, 그 구현된 프로그램을 보고 다시 코드를 작성하던지 또는 ["Refactoring"] 해서 일반화시키던지.(새로 짜도 얼마 시간 안걸림. 예상컨대, 아마 중반에 소스 한번 뒤집어주고 싶은 욕구가 날껄? 흐흐) --["1002"]
         개인적으로 '형은 뭐 먼저 했어요?' 라고 질문한다라면, '나는 DirectX 7.0 의 Space donut 소스 분석한뒤 만들었지만, 꼭 DX를 볼 필요는 없다' 라고 말해주고 싶군.
  • 빵페이지/구구단 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 삼총사CppStudy/20030806 . . . . 3 matches
          * friend 함수를 위해서는 VS 6.0 sp 5를 깔아야 한다.[http://download.microsoft.com/download/vstudio60ent/SP5/Wideband-Full/WIN98Me/KO/vs6sp5.exe]
         using namespace std;
  • 새싹교실/2012/개차반 . . . . 3 matches
          * float: 4 byte, floating type number. Specification in IEEE 754-2008
          * format specifications
          * scanf("format specifier(s)", &argument);
          * format specifications
  • 새싹교실/2012/부부동반 . . . . 3 matches
          * 교재 소개 - 혼자서 연구하는 C/C++ (김상형) - [http://kangcom.com/sub/view.asp?sku=200906030005&mcd=571]
          난 정말 C Programming을 공부한 적이 없다구요 - [http://kangcom.com/sub/view.asp?sku=200812300005&mcd=571]
          C를 배우면 함수를 잘 만들어야 한다 - [http://kangcom.com/sub/view.asp?sku=201004090011&mcd=571]
  • 새싹교실/2012/주먹밥 . . . . 3 matches
          * Javascript 학습은 http://www.w3schools.com/js/default.asp 에서 해주세요.
          -> 특정 색 투명처리 : http://jpjmjh.blogspot.kr/2010/02/ie6-png-%ED%88%AC%EB%AA%85%EC%B2%98%EB%A6%AC-%ED%95%98%EA%B8%B0.html
          * APM_SETUP폴더에 htdocs폴더에 index.html을 하기. http://www.w3schools.com/js/default.asp 가서 javascript예제 index.html에 작성하고 돌아가는것 확인.
  • 성당과시장 . . . . 3 matches
         이듬해 Eric S.Raymond 는 [http://kldp.org/root/gnu/cb/magic-cauldron/ 마법의 솥] 이라는 오픈소스의 구체적인 사업 형태 대한 논문을 선보인다. 그리고 이후 [http://zdnet.co.kr/news/enterprise/article.jsp?id=69067&forum=1 독점SW vs. 오픈소스「뜨거운 경제 논쟁] 같이 아직까지도 꾸준한 논쟁이 이루어 진다.
         국내에서는 최근(2004) 이만용씨가 MS의 초대 NTO인 [http://www.microsoft.com/korea/magazine/200311/focusinterview/fi.asp 김명호 박사의 인터뷰]를 반론하는 [http://zdnet.co.kr/news/column/mylee/article.jsp?id=69285&forum=1 이만용의 Open Mind- MS NTO 김명호 박사에 대한 반론] 컬럼을 개재하여 화제가 되고 있다.
  • 스터디그룹패턴언어 . . . . 3 matches
         본 패턴언어에는 21가지 패턴이 있다. '정신', '분위기', '역할' 그리고 '맞춤'(Custom)이라고 부르는 네 섹션으로 구분된다. 해당 섹션의 패턴을 공부할 때, 이 언어의 구조를 고려하라. 본 언어의 앞 부분인 '정신' 섹션의 패턴은 스터디 그룹의 핵심 즉, 배움의 정신(spirit of learning)을 정의하는 것을 도와 줄 것이다. 다음 섹션 '분위기', '역할', '맞춤'은 앞선 핵심 패턴과 깊이 얽혀있으며 그것들을 상기시켜줄 것이다.
         == 정신(Spirit) ==
         == Atmosphere ==
          * VirtualSpacePattern
         Follow customs that will re-enforce the spirit of the group, piquing participant's interest in dialogues, accommodating different learning levels, making the study of literature easier, recording group experiences, and drawing people closer together.
          * AfterHoursPattern
  • 압축알고리즘/수진,재동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 압축알고리즘/태훈,휘동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 영어단어끝말잇기 . . . . 3 matches
          *V. he essaied to speak. =try
          *V. To fill up (time or space)
          *N. a person who is especially good at sth
  • 위시리스트/130511 . . . . 3 matches
          * http://www.interpark.com/product/MallDisplay.do?_method=detail&sc.shopNo=0000100000&firpg=01&sc.prdNo=13003385&sc.dispNo=016001&sc.dispNo=016001
          * ASP / PHP / JSP 같은 웹 개발 언어 서적 (조사중) - [김민재]
  • 이영호/미니프로젝트#1 . . . . 3 matches
          sprintf(msg, "user %s %s %s %sn", info.user_name, info.user_whois1, info.user3, info.user_whois2);
          sprintf(msg, "NICK %sn", info.nick);
          sprintf(msg, "PONG %sn", pong);
  • 임인책/북마크 . . . . 3 matches
          * [http://www.internals.com/articles/apispy/apispy.htm API Spying Techniques for Windows 9x, NT and 2000]
          * [http://www.extension.harvard.edu/2002-03/programs/DistanceEd/courses/default.jsp Distance Education Program]
  • 임인택 . . . . 3 matches
          * http://radiohead.sprignote.com
         [http://www.spreadfirefox.com/galleries/4e5843369008084fdde6c1b08902da60-8886.png]
         [http://www.sporadicnonsense.com/files/FileZilla_ss.jpg]
  • 정모/2012.5.21 . . . . 3 matches
          * [http://en.wikipedia.org/wiki/Open-space_technology Open-space_technology]
         어떤 모임에서 의도하지 않게 Speed geeking 의 일부 방식으로 이야기를 하게되었는데,
          * [http://en.wikipedia.org/wiki/Speed_geeking Speed geeking]
         1.5 시간동안 지루하지 않고 꽤 재미있게 기술적인 토론을 할 수 있었습니다. OST에 적용도 좋고 혹은 Speed geeking 을 코딩 작업이 끝난후에 소규모로 서로 코드 리뷰를 하면서 고학년의 의견을 붙이는 것도 좋을 것 같아요.
          * speed geeking 재미있겠네요!!ㅋㅋ - [서지혜]
  • 조영준 . . . . 3 matches
          * JSP
          * 방명록 w/ jsp - http://skywave-test.appspot.com/
          * LAMP 설치는 하고 [http://skywave-test.appspot.com/ 다른거] 만드는 중. 이 뭐...
  • 주민등록번호확인하기/조현태 . . . . 3 matches
         using namespace std;
         const int BACK_SPACE=8;
          }else if (BACK_SPACE==number)
         using namespace std;
         const int BACK_SPACE=8;
          }else if (BACK_SPACE==number)
         using namespace std;
         const int BACK_SPACE=8;
          }else if (BACK_SPACE==number) //입력받은 값이 백스페이스인지 확인한다.
  • 중위수구하기/남도연 . . . . 3 matches
          void disp();
         void Mid :: disp(){
          center.disp();
  • 진격의안드로이드&Java . . . . 3 matches
          1: invokespecial #1 // Method java/lang/Object."<init>":()V
          1: invokespecial #1 // Method java/lang/Object."<init>":()V
          1: invokespecial #1 // Method java/lang/Object."<init>":()V
  • 최대공약수/남도연 . . . . 3 matches
          void disp();
         void GCD::disp(){
          Max.disp();
  • 최대공약수/조현태 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 코드레이스/2007.03.24상협지훈 . . . . 3 matches
         year, month, day, time, minute, sec = map(int,numList.split(" "))
          year, month, day, time, minute, sec = map(int,numList.split(" "))
          year, month, day, time, minute, sec = map(int,numList.split(" "))
  • 큐와 스택/문원명 . . . . 3 matches
         using namespace std;
         if (_Ok) // 입력이 종료되었나요? 기본적으로 enter, space 기준 종료
         using namespace std;
  • .vimrc . . . . 2 matches
         set bs=2 " allow backspacing over everything in insert mode
         set guifont=monospace
  • 05학번만의C++Study/숙제제출4/조현태 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 10학번 c++ 프로젝트/소스 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 2002년도ACM문제샘플풀이/문제B . . . . 2 matches
         using namespace std;
         using namespace std;
  • 2002년도ACM문제샘플풀이/문제D . . . . 2 matches
         using namespace std;
         using namespace std;
  • 2002년도ACM문제샘플풀이/문제E . . . . 2 matches
         using namespace std;
         using namespace std;
  • 2010JavaScript . . . . 2 matches
          * 블로그 사용 http://w3schools.com/js/default.asp
          * [http://dsdstudio.springnote.com/pages/380935?print=1]
  • 2010JavaScript/강소현/연습 . . . . 2 matches
         function displaymessage()
         <input type="button" value="메세지 출력" onclick="displaymessage()"><br>
  • 3D업종 . . . . 2 matches
         http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200503100003
         http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200311100001
  • 3N+1Problem/강희경 . . . . 2 matches
         def PreInspection(aMin, aMax, aBinaryMap):
          PreInspection(min, max, binaryMap)
  • 5인용C++스터디/클래스상속보충 . . . . 2 matches
         using namespace std;
         using namespace std;
  • AOI/2004 . . . . 2 matches
          || [LC-Display] || . || . || O || . || . || 0 || . || O ||
         uva robot의 경우 보통 300 번 이상의 test case 를 쓰는 것 같습니다. 동적 메모리가 아닌 정적으로 할당할 경우 이 점을 유의(?)하지 않으면 RE error(포인터 에러)가 납니다. 보창은 이것때문에 하루종일 프로그램을 뜯어고쳤으나, 결국 우연한 기회에 알게 되었습니다. LCD-Display의 경우 robot은 1000줄 이상을 test하는 걸로 보여집니다. -- 보창
  • APlusProject . . . . 2 matches
         [APlusProject/PMPL]
         [APlusProject/CM]
         [APlusProject/ENG]
         [APlusProject/QA]
         교수님 이메일: seobject at kaspa dot org
         [http://kaspa.org/kiwon/ SE 수업 홈페이지]
         Upload:Spice1998.zip - 스파이스 관련 표준 문서
         Taeyo's ASP.NET with C# -영진닷컴 Ch5~Ch6
  • AcceleratedC++/Chapter1 . . . . 2 matches
          const std::string spaces(greeting.size(), ' ');
          const std::string second = "* " + spaces + " *";
  • AcceleratedC++/Chapter12 . . . . 2 matches
          while(is.get(c) && isspace(c)) // 입력이 있고 값이 공백이라면 무시
          while(is.get(c) && !isspace(C));
  • AcceleratedC++/Chapter4 . . . . 2 matches
         using namespace std;
          * 헤더 파일에서는 using namespace 이런거 쓰지 말고 그냥 풀 네임 써주자. std:vector 이렇게...
  • ActiveTemplateLibrary . . . . 2 matches
          * [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_atl_string_conversion_macros.asp ATL and MFC String Conversion Macros]
  • ActiveXDataObjects . . . . 2 matches
         [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/dasdkadooverview.asp MS ADO]
  • ArtificialIntelligenceClass . . . . 2 matches
         [http://www.wowbook.com/generic/book/info/book_detail.asp?isbn=ISBN89-88397-88-6 인공지능 개념및 응용]
         요새 궁리하는건, othello team 들끼리 OpenSpaceTechnology 로 토론을 하는 시간을 가지는 건 어떨까 하는 생각을 해본다. 다양한 주제들이 나올 수 있을것 같은데.. 작게는 책에서의 knowledge representation 부분을 어떻게 실제 코드로 구현할 것인가부터 시작해서, minimax 나 alpha-beta Cutoff 의 실제 구현 모습, 알고리즘을 좀 더 빠르고 쉬우면서 정확하게 구현하는 방법 (나라면 당연히 스크립트 언어로 먼저 Prototyping 해보기) 등. 이에 대해서 교수님까지 참여하셔서 실제 우리가 당면한 컨텍스트에서부터 시작해서 끌어올려주시면 어떨까 하는 상상을 해보곤 한다.
          * Logical Language(Lisp) 와 Procedure Language(C, C++) 의 차이점 및 인공지능 분야에서 Logical Language가 유리한 이유
  • BasicJAVA2005 . . . . 2 matches
          인터파크 책 링크 - [http://book.interpark.com/bookPark/sitemap/BookDisplay.jsp?COMM_001=0000400000&COMM_002=0&GOODS_NO=3914746 클릭!]
  • Basic알고리즘/팰린드롬/허아영 . . . . 2 matches
         using namespace std;
         bool isPalindrome(char *string, int len)
          bool isPal = false;
          isPal = true;
          isPal = false;
          return isPal;
          if(isPalindrome(str, len))
         using namespace std;
         bool isPalindrome(char *string, int len)
          bool isPal = false;
          isPal = true;
          isPal = false;
          isPal = true;
          isPal = false;
          return isPal;
          else if(isPalindrome(str, len))
  • C 스터디_2005여름/학점계산프로그램/김태훈김상섭 . . . . 2 matches
         using namespace std;
         using namespace std;
  • C++스터디_2005여름/도서관리프로그램/남도연 . . . . 2 matches
         using namespace std;
         using namespace std;
  • C/C++어려운선언문해석하기 . . . . 2 matches
         원문 : How to interpret complex C/C++ declarations (http://www.codeproject.com/cpp/complex_declarations.asp)
         자세한 설명을 첨가하지 못해서 죄송합니다. 다음의 링크를 참조하시면 더 자세한 이유를 보실 수 있으실 겁니다. http://www.research.att.com/~bs/bs_faq2.html#whitespace )
  • CCNA/2013스터디 . . . . 2 matches
          || 4계층 || 트랜스포트 계층 (Transport Layer) || 출발지와 목적지간의 연결 수립 ||
          * CHAP..MD5 알고리즘 이용 - 패스워드 암호화(Chanllenge) -> Response -> Accept/Reject
          - U : NT1과 서비스 프로바이더(SP)의 회선 종단 장비간의 연결.
          - SPID(Service Profile Identifiers) : 고유 아이디. 전화번호와 비슷.
          1. 한 쪽 라우터에서 Call 초기화를 시작하면 연결된 ISDN 스위치로 SPID를 보내고 Call 초기화, 시그널링, Call 해제를 한다.
          2. ISDN SPID 설정
  • CPPStudy_2005_1/STL성적처리_2 . . . . 2 matches
         using namespace std;
         쩝.. -_-;; map 을 써봐야한다는 강박관념때문에 쓰기는 했는데.. -_-;; spec에 sort가있었다. ;; 아무래도 다시 짜는게 더 나을 것 같다.
  • CPP_Study_2005_1/BasicBusSimulation/남상협 . . . . 2 matches
         using namespace std;
         using namespace std;
  • CVS/길동씨의CVS사용기ForRemote . . . . 2 matches
         using namespace std;
         > using namespace std;
  • Celfin's ACM training . . . . 2 matches
         || 4 || 1 || 110104/706 || LCD Display || . || [LCD Display/Celfin] ||
  • ClassifyByAnagram/김재우 . . . . 2 matches
         namespace AnagramCSharp
         namespace AnagramCSharp
          TimeSpan elapsed = DateTime.Now.Subtract( start );
  • ClassifyByAnagram/인수 . . . . 2 matches
         using namespace std;
         using namespace std;
  • CodeRace/20060105/민경선호재선 . . . . 2 matches
          public void splitWord() {
          alice.splitWord();
  • CommunicationsOfAcm . . . . 2 matches
         http://rs2.riss4u.net/jsp/gotomenu.jsp?menuid=166 를 통해 기사를 볼 수 있다. (에듀넷쪽. 회원 가입 필요.)
  • ComputerNetworkClass/Report2006/BuildingProxyServer . . . . 2 matches
         http://www.cs.wisc.edu/~cao/WISP98/html-versions/anja/proxim_wisp/index.html
         using namespace System;
  • CppStudy_2002_2/객체와클래스 . . . . 2 matches
         using namespace std;
         using namespace std;
  • CryptKicker . . . . 2 matches
         spot
         dick and jane and puff and spot and yertle
  • CubicSpline/1002/NaCurves.py . . . . 2 matches
         class ErrorSpline:
          self.spline = Spline(aControlPointListX)
          return self.normalFunc.perform(x) - self.spline.perform(x)
         class Spline:
          return self._subCubicSpline(x, i)
          return self._subCubicSpline(x, len(self.controlPointListX)-2)
          def _subCubicSpline(self, x, i):
  • DPSCChapter5 . . . . 2 matches
         '''Chain of Responsibility(225)''' Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects, and pass the request along the chain until an object handles it.
         '''Chain of Responsibility(225)'''
  • DataCommunicationSummaryProject/Chapter9 . . . . 2 matches
         == Spectrum ==
          * ProbeResponse Frame을 받은 모든 AP 응답
          * AP는 AssociationResponse Frame 응답
  • DebuggingSeminar_2005/DebugCRT . . . . 2 matches
         [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/_core_c_run2dtime_library_debugging_support.asp MSDN]
  • DirectDraw . . . . 2 matches
         hr = lpDD->SetDisplayMode(640, 480, 8, 0, 0);
          2. SetDisplayMode의 인자.
  • DirectDraw/APIBasisSource . . . . 2 matches
          // Translate and dispatch the message
          DispatchMessage( &msg );
  • DirectX2DEngine . . . . 2 matches
          * 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]
  • Doublets/황재선 . . . . 2 matches
          simulator.setEndToEnd(words.split(" ")[0], words.split(" ")[1]);
  • DylanProgrammingLanguage . . . . 2 matches
         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
  • EcologicalBinPacking/강희경 . . . . 2 matches
         using namespace std;
         using namespace std;
  • EcologicalBinPacking/임인택 . . . . 2 matches
         indexes = '123 132 213 231 312 321'.split()
          data = raw_input().split()
  • EightQueenProblem/김준엽 . . . . 2 matches
          void display()
          cboard.display();
  • ExploringWorld/20040308-시간여행 . . . . 2 matches
          java, php, jsp
          jsp, java-servlet, php - hello world
  • FOURGODS/김태진 . . . . 2 matches
          * * [http://www.algospot.com/judge/problem/read/FOURGODS 사신도]
         using namespace std;
  • FileInputOutput . . . . 2 matches
         using namespace std;
         a,b=[int(i) for i in fin.read().split()]
  • FocusOnFundamentals . . . . 2 matches
         replacements for earlier fads and panaceas and will themselves be replaced. It is the responsibility
         A: Most students who are studying computer science really want to study software engineering but they don't have that choice. There are very few programs that are designed as engineering programs but specialize in software.
  • FreechalAlbumSpider . . . . 2 matches
          * 소스 : ZPCvs:FreechalAlbumSpider (테스트를 위해선 proper.py 수정 필요)
         처음 무엇을 해야 할지 고민을 해야 하는데, 일단은 '이미지를 가져오는게 가능한가?' 를 먼저 하게 되었다. 프리첼의 경우 이미지를 얻어오는 방법이 getImage.asp 화일을 통해서만 가능하다. 일반 JPG 링크가 아니기 때문에, getImage.asp 로 넘겨주는 인자들을 알아내야 한다.
         각 모듈들이 서로 불러져야 할 순서들을 정하고 난뒤, 내가 만든 각 모듈들을 일종의 SpikeSolution 처럼 라이브러리 연습하듯이 이용해보았다. 그러면서 잠시 놓쳤던 흐름을 다시 잡았다. 이러한 일들을 의식적으로, 그리고 '무엇을 할까 - 이것을 하자' 라고 생각해낼 수 있었던 것이 기분을 참 좋게 했다.
  • GDBUsage . . . . 2 matches
         Edit specified file or function.
         Editing targets can be specified in these ways:
  • Gnutella-MoreFree . . . . 2 matches
         1. Protocol Specification
          {{{~cpp Response Connection : GNUTELLA OKnn}}}
         || query ||네트워크상에서 검색에 쓰이고 검색 Minimum Speed ( 응답의 최소 속도 ), Search Criteria 검색 조건 ||
         || queryHit || 검색 Query 조건과 일치한 경우 QueryHit로 응답한다. Num Of Hits 조건에 일치하는 Query의 결과 수 Port / IP_Address (Big-endian) / Speed / Result Set File Index ( 파일 번호 ) File Size ( 파일 크기 )File Name ( 파일 이 / 더블 널로 끝남 ) Servent Identifier 응답하는 Servent의 고유 식별자 Push 에 쓰인다. ||
         Download->m_AvgSpeed = Item.AvgSpeed;
         Item.Speed = makeD( flipX(QueryHit->Speed));
         Item.ActualSpeed = ActualSpeed;
         if(Inspect(Item))
          * [http://www.0bin.net/moniwiki/wiki.php/Specification/gnutella_protocol] : 정리 문서
  • Gof/Command . . . . 2 matches
          char* _response;
         THINK 클래스 라이브러리 [Sym93b] 또한 undo 가능한 명령을 지원하기 위해 CommandPattern을 사용한다. THINK 에서의 Command들은 "Tasks" 로 불린다. Task 객체들은 ChainOfResponsibilityPattern에 입각하여 넘겨지고 소비되어진다.
  • Gof/Mediator . . . . 2 matches
         다른 다이얼로그 박스들은 도구들 사이에서 다른 dependency들을 지닐 것이다. 그래서 심지어 다이얼로그들이 똑같은 종류의 도구들을 지닌다 하더라도, 단순히 이전의 도구 클래스들을 재사용 할 수는 없다. dialog-specific dependency들을 반영하기 위해서 customize되어져야 한다. subclassing에 의해서 개별적으로 도구들을 Customize하는 것은 지루할 것이다. 왜냐하면 많은 클래스들이 그렇게 되어야 하기 때문이다.
         FontDialogDirector는 그것이 display하는 widget을 추적한다. 그것은 widget들을 만들기 위해서 CreateWidget을 재정의하고 그것의 reference로 그것들을 초기화한다.
  • Gof/Visitor . . . . 2 matches
         type-checking 의 기능을 넘어 일반적인 visitor를 만들기 위해서는 abstract syntax tree의 모든 visitor들을 위한 abstract parent class인 NodeVisitor가 필요하다. NodeVisitor는 각 node class들에 있는 operation들을 정의해야 한다. 해당 프로그램의 기준 등을 계산하기 원하는 application은 node class 에 application-specific한 코드를 추가할 필요 없이, 그냥 NodeVisitor에 대한 새로운 subclass를 정의하면 된다. VisitorPattern은 해당 Visitor 와 연관된 부분에서 컴파일된 구문들을 위한 operation들을 캡슐화한다.
          - implements each operation declared by Visitor. Each operation implements a fragment of the algorithm defined for the corresponding class of object in the structure. ConcreteVisitor provides the context for the algorithm and stores its local state. This state often accumulates result during the traversal of the structure.
  • GofStructureDiagramConsideredHarmful . . . . 2 matches
         Diagrams are seductive, especially to engineers. Diagrams communicate a great deal in a small amount of space. But in the case of the GoF Structure Diagrams, the picture doesn't say enough. It is far more important to convey to readers that a Pattern has numerous Structures, and can be implemented in numerous ways.
  • HelpOnLists . . . . 2 matches
         [space]'''term WikiName''':: definition WikiName
         [space]another term:: and its definition
  • HelpOnXmlPages . . . . 2 matches
         If you have Python4Suite installed in your system, it is possible to save XML documents as pages. It's important to start those pages with an XML declaration "{{{<?xml ...>}}}" in the very first line. Also, you have to specify the stylesheet that is to be used to process the XML document to HTML. This is done using a [http://www.w3.org/TR/xml-stylesheet/ standard "xml-stylesheet" processing instruction], with the name of a page containing the stylesheet as the "{{{href}}}" parameter.
         === Display ===
  • Hibernate . . . . 2 matches
         조만간 [http://www.theserverside.com/resources/HibernateReview.jsp Hibernate In Action] 이란 책이 출간될 예정. Chapter 1 을 읽을 수 있다.
         [http://www.theserverside.com/resources/article.jsp?l=Hibernate Introduction to hibernate] 기사가 연재중이다.
  • HowManyFibs?/1002 . . . . 2 matches
         input space 로 볼때 최악의 경우가 1~10^100 일 수 있겠다는 생각을 하면서 뭔가 다른 공식이 있겠다 생각, 피보나치의 closed-form 을 근거로 해결할 방법에 대해 궁리해보다. a,b 구간에 가장 가까울 f(x),f(y)를 각각 구하고, y-x 를 구하면 되리라고 생각. 하지만 3시간동안 고민했는데 잘 안되어서, 그냥 노가다 스러운 방법으로 풀기 시작.
         피보나치 수가 굉장히 크게 늘어나는 수라는 점을 생각했더라면, input space 가 크더라도 fibo(n) 의 n 값이 커지지 않을 것이라는 것을 미리 알고 있었더라면 저런 고민을 안했을 것 같긴 하다. 하지만, 이러한 사전지식이 없는 가운데, 문제를 풀라고 한다면 어떻게 접근하는게 가장 좋았었을까. 고민된다.
  • HowManyFibs?/황재선 . . . . 2 matches
          BigInteger start = new BigInteger(line.split(" ")[0]);
          BigInteger end = new BigInteger(line.split(" ")[1]);
  • HowToStudyDesignPatterns . . . . 2 matches
          ''The other thing I want to underscore here is how to go about reading Design Patterns, a.k.a. the "GoF" book. Many people feel that to fully grasp its content, they need to read it sequentially. But GoF is really a reference book, not a novel. Imagine trying to learn German by reading a Deutsch-English dictionary cover-to-cover;it just won't work! If you want to master German, you have to immerse yourself in German culture. You have to live German. The same is true of design patterns: you must immerse yourself in software development before you can master them. You have to live the patterns.
         그런데 사실 GoF의 DP에 나온 패턴들보다 더 핵심적인 어휘군이 있습니다. 마이크로패턴이라고도 불리는 것들인데, delegation, double dispatch 같은 것들을 말합니다. DP에도 조금 언급되어 있긴 합니다. 이런 마이크로패턴은 우리가 알게 모르게 매일 사용하는 것들이고 그 활용도가 아주 높습니다. 실제로 써보면 알겠지만, DP의 패턴 하나 쓰는 일이 그리 흔한 게 아닙니다. 마이크로패턴은 켄트벡의 SBPP에 잘 나와있습니다. 영어로 치자면 관사나 조동사 같은 것들입니다.
  • IpscAfterwords . . . . 2 matches
         2002 년도 IPSC (http://ipsc.ksp.sk/) 을 경험하고 난 뒤의 ["ThreeFs"]
         컨테스트는 끝났지만 여전히 도전해보고 싶은 사람은 다음 주(5/18)까지 자신이 얻은 답을 TIS를 1234567890로 해서 ipsc@ksp.sk로 이메일을 보내면 된다.
  • IsBiggerSmarter?/문보창 . . . . 2 matches
         using namespace std;
         using namespace std;
  • JSP/FileUpload . . . . 2 matches
         <!-- upload.jsp -->
          out.write("<meta http-equiv="refresh" content="0;url=BugReport.jsp?fileName="+saveFile+"">");
  • JSP/SearchAgency . . . . 2 matches
          out.write("<form method=post action=SearchAgency.jsp>");
          <title>My JSP 'SearchAgency.jsp' starting page</title>
          This is my JSP page.aaa <br>
  • JavaNetworkProgramming . . . . 2 matches
          String response = lineNumberIn.getLineNumber() + " : " + line.toUpperCase() + "\n"; //줄번호를 얻어서 붙임 대문자로 바꿈
          dataOut.writeBytes(response); //BufferdOutputStream에 쓴다.
  • JavaScript/2011년스터디/URLHunter . . . . 2 matches
          function spawn(){
          spawn();
          case 32: // Space Bar
          case 32: // Space Bar
  • JumpJump/김태진 . . . . 2 matches
          * [http://www.algospot.com/judge/problem/read/JUMP Jump]
         using namespace std;
  • LC-Display/상협재동 . . . . 2 matches
         = LC-Display/상협재동 =
         using namespace std;
  • LawOfDemeter . . . . 2 matches
         Specifically missing from this list is methods belonging to objects that were returned from some other
         enough to have been a responsibility, not too dependent on implementation.
         specific, well defined action.
  • MFC/MessageMap . . . . 2 matches
         자료) [http://wiki.zeropage.org/jsp-new/pds/pds_read.jsp?page=1&no=23 자료실]
         #define WM_SPOOLERSTATUS 0x002A
         #define PWR_SUSPENDREQUEST 1
         #define PWR_SUSPENDRESUME 2
         #define WM_DISPLAYCHANGE 0x007E
         #define PBT_APMQUERYSUSPEND 0x0000
         #define PBT_APMQUERYSUSPENDFAILED 0x0002
         #define PBT_APMSUSPEND 0x0004
         #define PBT_APMRESUMESUSPEND 0x0007
  • MajorMap . . . . 2 matches
         Registers are a limited number of special locations built directly in hardware. On major differnce between the variables of a programming language and registers is the limited number of registers, typically 32(64?) on current computers.
         Memory is the storage area in which programs are kept when they are runngin and that contains the data needed by the running programs. Address is a value used to delineate the location of a specific data element within a memory array.
  • Map연습문제/노수민 . . . . 2 matches
         using namespace std;
         using namespace std;
  • Marbles/이동현 . . . . 2 matches
         using namespace std;
         using namespace std;
  • MedusaCppStudy/재동 . . . . 2 matches
         using namespace std;
         using namespace std;
  • MineSweeper/황재선 . . . . 2 matches
          String [] array = input.split(" ");
          String [] arr = input.split("");
  • MoinMoin . . . . 2 matches
         Mmmmh , seems that I can enrich so more info: "Moin" has the meaning of "Good Morning" but it is spoken under murmur like "mornin'" although the Syllable is too short alone, so it is spoken twice. If you shorten "Good Morning" with "morn'" it has the same effect with "morn'morn'". --Thomas Albl
  • MoinMoinNotBugs . . . . 2 matches
         I suspect this problem is pervasive, and I also suspect that the solution is almost moot; probably a one-off counting problem, or a mis-ordered "case" sort of sequence. If the /UL closing tag were to precede the P opening tag, all would be well.
  • MoniWikiThemes . . . . 2 matches
         IE의 경우 display:block 또는 display:table 을 통해 2개 이상의 블록모델 레이어를 중첩시킬 때 width 속성을 각각 주지 않으면 마우스 스크롤이나 리플레시 동작에 컨텐츠가 지워지는 특징(버그?)이 있습니다. width 속성을 주면 괜찮아 지더군요. 최근 저도 CSS만으로 테마를 구현하고 있습니다. --[http://scrapnote.com 고미다]
  • MoreEffectiveC++ . . . . 2 matches
          * Item 14: Use exception specifications judiciously. - 예외를 신중하게 사용하라.
          * Item 31: Making functions virtual with respect to more than one object. - 하나 이상 객체에 대응하는 함수를 virtual(가상)으로 동작 시키기
  • MoreEffectiveC++/Efficiency . . . . 2 matches
         C++에 알맞는 lazy evaluation은 없다. 그러한 기술은 어떠한 프로그래밍 언어에도 적용 될수 있다. 그리고 몇몇 언어들-APL, 몇몇 특성화된 Lisp, 가상적으로 데이터 흐름을 나타내는 모든 언어들-는 언어의 한 중요한 부분이다. 그렇지만 주요 프로그래밍, C++같은 언어들은 eager evaluation를 기본으로 채용한다. C++에서는 사용자가 lazy evaluation의 적용을 위해 매우 적합하다. 왜냐하면 캡슐화는 클라이언트들을 꼭 알지 못해도 lazy evaluation의 적용을 가능하게 만들어 주기 때문이다.
          using namespace std;
  • NetworkDatabaseManagementSystem . . . . 2 matches
         The network model is a database model conceived as flexible way of representing objects and their relationships. Its original inventor was Charles Bachman, and it was developed into a standard specification published in 1969 by the CODASYL Consortium. Where the hierarchical model structures data as a tree of records, with each record having one parent record and many children, the network model allows each record to have multiple parent and child records, forming a lattice structure.
         The chief argument in favour of the network model, in comparison to the hierarchic model, was that it allowed a more natural modeling of relationships between entities. Although the model was widely implemented and used, it failed to become dominant for two main reasons. Firstly, IBM chose to stick to the hierarchical model in their established products such as IMS and DL/I. Secondly, it was eventually displaced by the relational model, which offered a higher-level, more declarative interface. Until the early 1980s the performance benefits of the low-level navigational interfaces offered by hierarchical and network databases were persuasive for many large-scale applications, but as hardware became faster, the extra productivity and flexibility of relational systems won the day.
  • NumericalAnalysisClass/Exam2002_1 . . . . 2 matches
         (b) Find the value of the parametric variable corresponding to the intersection point.[[BR]]
         5. Lagrange, Hermite, spline 함수의 특징을 Smoothness 관점에서 비교 설명하시오.
  • Omok/은지 . . . . 2 matches
         const space = 0x20;
          if (key == space)
  • OurMajorLangIsCAndCPlusPlus/print/이상규 . . . . 2 matches
          int space = align - strlen(str);
          for(int i = 0 ; i < space ; i++)
         [OurMajorLangIsCAndCPlusPlus/print]
  • OurMajorLangIsCAndCPlusPlus/stdio.h . . . . 2 matches
         || int sprintf(char *, const char *, ...) || 해당 버퍼에 지정한 형식대로 출력한다. ||
         || int vsprintf(char *, const char *, va_list) || 해당 문자열에 인수리스트를 이용해서 지정된 형식의 문자열을 기록한다. ||
         [OurMajorLangIsCAndCPlusPlus]
  • Parallels . . . . 2 matches
         <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/gE1XQyT_IbA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gE1XQyT_IbA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
  • PatternCatalog . . . . 2 matches
          * ["ChainOfResponsibilityPattern"]
          * ["Gof/ChainOfResponsibility"]
  • PlatformSDK . . . . 2 matches
         기타 최신버전은 [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sdkintro/sdkintro/devdoc_platform_software_development_kit_start_page.asp MSDN platform SDK 소개 페이지] 에서 다운로드 하는 것이 가능하다.
         [WindowsProgramming]
  • PowerOfCryptography/조현태 . . . . 2 matches
         using namespace std;
         using namespace std;
  • PragmaticVersionControlWithCVS/WhatIsVersionControl . . . . 2 matches
         == workspaces and manipulate files ==
         지역 작업공간(local workspace)는 원격에 저장된 파일들을 프로그램의 개발을 위해서 개발자가 가지고 있는 컴퓨터에 받아서 프로그램을 수정하도록 하는 공간임.
  • ProgrammingLanguageClass/2006/EndTermExamination . . . . 2 matches
         b) 언어 개발자들이 Static-Chain 에 비해서 display 기법을 채택하게 되는 이유를 제시하시오.
         c) display 에 대한 설명을 하시오. (Qsd = Psd, Qsd < Psd, Qsd > Psd 를 나누어서 설명. 5판에 자세한 내용있음)
  • ProgrammingLanguageClass/2006/Report3 . . . . 2 matches
         == Specification ==
         subprogram, the corresponding thunk compiled for that parameter is executed. Even
         You should follow the guideline suggested later. To be specific, your report is
  • ProgrammingLanguageClass/Report2002_1 . . . . 2 matches
          * 입력 스트림에서 ASCII 코드로 32 이하인 것은 모든 white-space로 간주하며, white-space는 각 token을 구별하는 용도 이외에는 모두 무시한다.
  • ProgrammingPearls/Column3 . . . . 2 matches
         using namespace std;
         using namespace std;
         === Powerful Tools for Specialized Data ===
  • ProjectPrometheus/Iteration9 . . . . 2 matches
          * 바구니 기능 - 근데, 우리가 생각한 기능은 아닌듯. 용도가 좀 다름. 이에 따라 login 이 쿠키 스타일로 바뀜. (JSP 를 쓰던데, Session 스타일일 가능성도)
         미스테리 : logging.jsp 파일이 include 시에 과거 코딩으로 돌아온다.
          덧붙여 여러 jsp 파일들이 ../class 에 배포된다.
  • PyUnit . . . . 2 matches
          self.widget.dispose ()
          self.widget.dispose ()
  • REFACTORING . . . . 2 matches
         ISBN:0201485672 , [http://www.wowbook.com/generic/book/info/book_detail.asp?isbn=ISBN89-87939-60-X 리팩토링]
         ["Refactoring"] 과 TestDrivenDevelopment 는 일종의 메타패턴이다. (여기에 개인적으로 하나 더 추가하고 싶다면 ResponsibilityDrivenDesign) 두개에 충실하면 ["DesignPattern"] 으로 유도되어지는 경우가 꽤 많다.
         개인적으로 Refactoring 을 적용하는중, 자주 이용되는 테크닉이 StructuredProgramming 기법인 StepwiseRefinement (Rename 도 일종의 StepwiseRefinement 기술이라 생각이 든다)라는점은 의외일련지 모르겠다. OOP 와 SP 는 상호배제의 관계가 아니기에. --["1002"]
  • RandomWalk/ExtremeSlayer . . . . 2 matches
         using namespace std;
         using namespace std;
  • RandomWalk/황재선 . . . . 2 matches
         using namespace std;
         using namespace std;
  • ReadySet 번역처음화면 . . . . 2 matches
         We will build templates for common software engineering documents inspired by our own exprience.
         I assume that the user takes ultimate responsibility for the content of all their actual project documents. The templates are merely starting points and low-level guidance.
  • STL/string . . . . 2 matches
         using namespace std;
         using namespace std;
  • ScheduledWalk/욱주&민수 . . . . 2 matches
         using namespace std;
         using namespace std;
  • SoftwareEngineeringClass/Exam2002_1 . . . . 2 matches
          1. Sprial Model 의 특징에 대해 서술하시오.
         문제 달랑 3개라는 것도 알고 있었고, Sprial Model 은 나올줄 알고 있었건만. 우.. 복병을 만나다;
         암튼 3문제중 두문제가 QA에 관한 것이라니 당황; Structured A&D 나 정보공학에 대해서는 아에 언급이 없군. (혹시 이거 kaspa 시험인가; 아무리 이경환 교수님이 kaspa 회장이시라고 하지만.) 암튼. 흑; --석천
  • SummationOfFourPrimes/곽세환 . . . . 2 matches
         using namespace std;
         bool isPrime(int n)
          if (isPrime(i))
         using namespace std;
  • TeachYourselfProgrammingInTenYears . . . . 2 matches
         원문 : http://www.norvig.com/21-days.html (Peter Norvig 는 AI 분야에서 아주 유명한 사람. LISP 프로그래머로도 유명)
         적어도 반다스의 프로그램 언어를 배우는 것.그 중의 하나는 클래스 추상을 서포트하는 것(예를 들면 Java 나 C++), 하나는 함수 추상을 서포트하는 것(예를 들면 Lisp 나 ML), 하나는 구문 추상을 서포트하는 것(예를 들면 Lisp), 하나는 선언적 기술을 서포트하는 것(예를 들면 Prolog 나 C++ 템플릿), 하나는 coroutine 를 서포트하는 것(Icon 나 Scheme), 그리고 하나는 병렬처리를 서포트하는 것(예를 들면 Sisal)인 것.
  • TheGrandDinner/김상섭 . . . . 2 matches
         using namespace std;
         using namespace std;
  • TheWarOfGenesis2R/Temp . . . . 2 matches
         using namespace boost;
         using namespace std;
  • UglyNumbers/곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • Unicode . . . . 2 matches
         Establishing Unicode involves an ambitious project to replace existing character sets, many of them limited in size and problematic in multilingual environments. Despite technical problems and limitations, Unicode has become the most complete character set and one of the largest, and seems set to serve as the dominant encoding scheme in the internationalization of software and in multilingual environments. Many recent technologies, such as XML, the Java programming language as well as several operating systems, have adopted Unicode as an underlying scheme to represent text.
         specification : [http://www.unicode.org/versions/Unicode4.1.0/]
  • VMWare/OSImplementationTest . . . . 2 matches
         http://ksyspro.org
          mov esp, 090000h ; Move the stack pointer to 090000h
  • VisualStudio2005 . . . . 2 matches
         http://www.microsoft.com/korea/events/ready2005/vs_main.asp
         http://msdn.microsoft.com/vstudio/express/default.aspx
  • VonNeumannAirport/인수 . . . . 2 matches
         //만약 지능(intelligence)를 좀 더 분배하거나, 책임(responsibility)을 더 줄 수 없다면
         using namespace std;
  • WikiSandPage . . . . 2 matches
          <span class="button"><input type="submit" class="button" name="logout" value="로그아웃"></span>
  • WorldCupNoise/권순의 . . . . 2 matches
         using namespace std;
         using namespace std;
  • ZPHomePage/20041228 . . . . 2 matches
          * 게시판(JSP) 기능 수정, 추가
          * 다양한 것들을 경험해보는데 중점, 기본적으로 jsp 공부
          * 공부할 툴 또는 언어 - jsp, html, css, 파이썬, 드림위버, 포토샵, flash
  • ZeroPageHistory . . . . 2 matches
         ||1학기 ||7기 회원모집. 3D Graphic Programming. (긁어 놓은 게시물: Protect Mode, Functions Pointer, Compression Algorithm, About 3D, PSP의 구조, DMA, 3D Display, Tcl/Tk, C++Builder와 델파이, Lisp 강좌) ||
          * C++, Data Structure, Python, Java-Servlet, JSP, PHP, Servlet, JDBC
          * 데블스캠프 : C, C++, Java, Data Structure, OOP, Flash, Python, Visual Python, JSP, Network, Security
          * C, C++, MFC, Java, Design Pattern, AI, Python, PHP, SQL, JSP, Algorithm, OS, Game, CAM
          * Android, MFC, Spring, Ruby, JavaScript
  • ZeroPageServer/Log . . . . 2 matches
          * JSP에서 자바빈을 써야하는데 WEB-INF에 classes에 클래스를 넣을수가 없어서그러는데 어떻게 쓸수 있게 해주세요. --["광식"]
          ''간단한 resin log analyzer를 만들어두었습니다. admin 안쪽 RLA.jsp로 확인바랍니다. 참, resin이 root 계정으로 동작하던데, 권한을 바꾸길 바랍니다. (권한을 바꿔줄때, 그 부산물 - jsp가 컴파일된 자바 소스나 클래스등 - 도 함께 권한을 바꿔줘야 합니다.)''
  • ZeroPageServer/Telnet계정 . . . . 2 matches
          * 종류 '''php, python, perl, jsp''' 프로그래밍이다. 하지만 jsp는 Server 관리자(["neocoin"]) 에게 문의하시면 상담하고 권한 설정 해 드립니다.
  • ZeroPageServer/set2005_88 . . . . 2 matches
          * JSP Container 변경 : 톰캣 5.5.9. (컨테이너 변경에 따라서 jdk1.5.0-4로 변경)
          * 리부팅후 jsp container 가 자동으로 미시작되던 문제 해결
          각 사용자의 자신의 public_html 디렉토리를 이용해서 '''jsp, php, perl, python''' 등의 웹 프로그래밍이 가능하다.
          JSP 2.0/Servlet 2.4 (웹 모듈 연동)
  • ZeroPage성년식/거의모든ZP의역사 . . . . 2 matches
         ||1학기 ||7기 회원모집. 3D Graphic Programming. (긁어 놓은 게시물: Protect Mode, Functions Pointer, Compression Algorithm, About 3D, PSP의 구조, DMA, 3D Display, Tcl/Tk, C++Builder와 델파이, Lisp 강좌) ||
          * C++, Data Structure, Python, Java-Servlet, JSP, PHP, Servlet, JDBC
          * 데블스캠프 : C, C++, Java, Data Structure, OOP, Flash, Python, Visual Python, JSP, Network, Security
          * C, C++, MFC, Java, Design Pattern, AI, Python, PHP, SQL, JSP, Algorithm, OS, Game, CAM
          * Android, MFC, Spring, Ruby, JavaScript
  • [Lovely]boy^_^/Arcanoid . . . . 2 matches
          * 시작할때는 Space
          * When a ball collides with a moving bar, its angle changes, but it's crude. Maybe it is hard that maintains a speed of a ball.
          * Now sources become very dirty, because I add a new game skill. I always try to eliminate a duplication, and my source has few duplication. but method's length is so long, and responsiblity of classes is not divided appropriately. All collision routine is focusing on CArcaBall class.
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 2 matches
          * I heard my mom will leave hospital. assa~
          * My mom was leaving a hospital. ^^
  • [Lovely]boy^_^/EnglishGrammer/Passive . . . . 2 matches
          You can use get to say that something happens to somebody or something, especially if this is unplanned or unexpected.
          We use get mainly in informal spoken English. You can use be in all situations.(항상 be 쓸수있단다. 고로 귀찮은 get쓰지말자... 클래스에서 get 보는것도 지겨운데..--;)
  • aekae/RandomWalk . . . . 2 matches
         using namespace std;
         using namespace std;
  • html5/form . . . . 2 matches
          * http://www.w3schools.com/html5/html5_form_input_types.asp
          * {{{<form novalidate action="demo_form.asp" method="get">}}}
  • mantis . . . . 2 matches
          * 에러 메시지 제거는? 에디트 플러스 Find in file 에서 htmlspecialchars 이 것을 다 찾아서 @htmlspecialchars 이것으로 바꿔 주면 됩니다.
  • pragma . . . . 2 matches
         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.
  • spaurh . . . . 2 matches
          * 아디 : spaurh
         SeeAlso Nappingin:spaurh
  • 강희경/메모장 . . . . 2 matches
         www.microsoft.com/korea/msdn.default.asp
         www.okjsp.pe.kr
  • 개인키,공개키/김태훈,황재선 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 개인키,공개키/류주영,문보창 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 개인키,공개키/박진영,김수진,나휘동 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 개인키,공개키/최원서,곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 구구단/Leonardong . . . . 2 matches
         using namespace std;
          * workspace
  • 구구단/조재화 . . . . 2 matches
         using namespace std;
          * workspace
  • 대학원준비 . . . . 2 matches
         [http://www.icu.ac.kr/indexa.jsp 입학]
         [http://www.icu.ac.kr/AdmissionIndexList.jsp?tableName=n_anotice# 입학설명회]
  • 데블스캠프2005/금요일/OneCard . . . . 2 matches
          spaces = ' ' * (len(upperCrossBar)-len(allCards)-4)
          allCards += spaces
  • 데블스캠프2006/월요일/연습문제/for/김준석 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/for/성우용 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/for/윤성준 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/for/임다찬 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/for/정승희 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/if-else/임다찬 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/김대순 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/윤영준 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/이장길 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제3/성우용 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 데블스캠프2006/화요일/tar/나휘동 . . . . 2 matches
          sprintf(buffer, "tar\%s", file.name);
          sprintf(buffer, "untar\%s", file.name);
  • 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 2 matches
         // The system calls this to obtain the cursor to display while the user drags
         // The system calls this to obtain the cursor to display while the user drags
  • 데블스캠프2011 . . . . 2 matches
          * [https://docs.google.com/spreadsheet/ccc?key=0AtizJ9JvxbR6dGNzZDhOYTNMcW0tNll5dWlPdFF2Z0E&usp=sharing 타임테이블링크]
  • 데블스캠프2011/둘째날/Machine-Learning . . . . 2 matches
          * svm learning : ./svm_multiclass_learn -c 1 /home/newmoni/workspace/DevilsCamp/data/test.svm_light test.c1.model
          * svm classify : ./svm_multiclass_classify /home/newmoni/workspace/DevilsCamp/data/test2.svm_light economy_politics2.10.model
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 . . . . 2 matches
          String[] a = sectionLearn.nextLine().split("\\s+");
          double reslt = getLnPsPns(index);
          for(String wordTmp:Article.split("\\s+")) {
          reslt += getLnPwsPwns(index, wordTmp);
          private double getLnPsPns(int index) {
          private double getLnPwsPwns(int index, String word) {
          System.out.println("Right : " + posiNum + " Wrong : " + negaNum + " Result : " + (getLnPsPns(index) + ((double)posiNum / (posiNum+negaNum))));
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/변형진 . . . . 2 matches
          for (String word : line.split("\\s+")) {
          double value = getLnPsPns(index);
          for (String word : doc.split("\\s+")) {
          value += getLnPwsPwns(index, word);
          private double getLnPsPns(int index) {
          private double getLnPwsPwns(int index, String word) {
  • 데블스캠프2011/셋째날/String만들기 . . . . 2 matches
         || split || str.split("c") == {"ab", "def"} ||
  • 데블스캠프계획백업 . . . . 2 matches
          * 이런 걸 할 때 날마다 위키에 조별로 공동일기를 쓰고 ThreeFs를 공유하면 좋을 겁니다. 그리고, 매일 저녁에 조원들이 같이 모여 Daily Retrospective를 갖도록 합니다. 이런 건 좋았다, 나빴다, 내일은 이렇게 저렇게 해보자 등등. 그러고 나서, 선배들이 같이 모여 전체 Daily Retrospective를 합니다. 우리 조는 이랬고, 너희 조는 저랬구나, 그럼 우리는 이렇게 해야겠다 등. --JuNe
  • 레밍즈프로젝트/연락 . . . . 2 matches
         using namespace std;
         error C2653: 'Map' : is not a class or namespace name
  • 레밍즈프로젝트/프로토타입 . . . . 2 matches
         참고2 : [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cstring.asp MSDN_CString]
  • 만년달력/곽세환,조재화 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 문자반대출력/문보창 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 문자반대출력/변형진 . . . . 2 matches
         preg_split()는 문자열 처리 능력이 탁월한 언어인 Perl에서 사용하는 Perl 호환 정규 표현식(Regular Expressions)을 차용하여 문자열을 분리하여 배열에 담는 함수.
         fputs($fp, join("", array_reverse(preg_split("//u", join("", @file("source.txt"))))));
  • 문자열검색/허아영 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 비밀키/권정욱 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 비밀키/김태훈 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 비밀키/나휘동 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 비밀키/최원서 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 빵페이지/소수출력 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 삼총사CppStudy/숙제2/곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 새싹교실/2012/세싹 . . . . 2 matches
          - transport : 데이터를 어떻게 보낼지 결정하는 계층입니다. 데이터를 어떻게 묶어서 보낼지, 오류처리는 어떻게 할지에 대해 결정합니다. TCP/UDP등이 있습니다.
          U16 BytesPerSector; //섹터당 바이트 수
          U8 SectorsPerCluster; //섹터당 클러스터수
          U16 SectorsPerTrack;
          U32 ClustersPerFileRecord; // 파일 레코드당 클러스터수
          U32 ClustersPerIndexBlock; // 인덱스 블럭당 클러스터수
         U32 BytesPerFileRecord;
          printf("Sector per Bytes : %u \n",boot_block.BytesPerSector);
          printf("Cluster per Sectors : %u\n",boot_block.SectorsPerCluster);
          printf("Clusters Per FileRecord : %u\n",boot_block.ClustersPerFileRecord);
          printf("Clusters Per IndexBlock : %u\n",boot_block.ClustersPerIndexBlock);
          BytesPerFileRecord = boot_block.ClustersPerFileRecord < 0x80? boot_block.ClustersPerFileRecord* boot_block.SectorsPerCluster* boot_block.BytesPerSector : 1 << (0x100 - boot_block.ClustersPerFileRecord);
          MFT = PFILE_RECORD_HEADER(new U8[BytesPerFileRecord]);
          ReadSector(boot_block.MftStartLcn * boot_block.SectorsPerCluster, BytesPerFileRecord / boot_block.BytesPerSector, MFT);
          offset.QuadPart = sector * boot_block.BytesPerSector;
          ReadFile(hVolume, buffer, count * boot_block.BytesPerSector, &n, &overlap);
          - http://technet.microsoft.com/en-us/library/cc750583.aspx#XSLTsection124121120120
         U32 BytesPerFileRecord;
          printf("Sector per Bytes : %u \n",boot_block.BytesPerSector);
          printf("Cluster per Sectors : %u\n",boot_block.SectorsPerCluster);
  • 성우용 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 손동일/TelephoneBook . . . . 2 matches
         using namespace std;
         using namespace std;
  • 스네이크바이트/C++ . . . . 2 matches
         using namespace std;
         using namespace std;
  • 아인슈타인 . . . . 2 matches
         아인슈타인은 국가주의를 공격했고 평화주의 사상을 장려했다. 베를린에서 반유대주의 물결이 거세어지자, 아인슈타인은 '물리학에서의 볼셰비키주의자' 범주로 구분되었고, 그가 시오니즘 운동을 대중적으로 지지하기 시작하자 우익집단들의 그에 대한 격노가 거세졌다. 아인슈타인은 베를린에서 적대를 받았으나 유럽의 다른 도시에서 그에게 요청한 것 때문에 상대성이론을 강의하러 유럽의 여러 도시들을 널리 다녔는데, 보통 3등열차를 타고다녔고 늘 바이올린을 지니고 있었다. (from http://preview.britannica.co.kr/spotlights/nobel/list/B14a2262b.html)
         spell 이 맞는지는 모르겠지만.. 만약에 아인슈타인의 이름이 Ein Stein 이 맞다면.. a stone 이로군요...-_-a 약간은 아이러니한..ㅋㅋ - [임인택]
  • 압축알고리즘/홍선,수민 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 여사모 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 영어학습방법론 . . . . 2 matches
         See Also [http://community.freechal.com/ComService/Activity/PDS/CsPDSList.asp?GrpId=1356021&ObjSeq=6 일반영어공부론], Caucse:일반영어공부론, Caucse:영어세미나20021129
          ex) speculate (수박을 먹으며 곰곰히 생각하다) 원뜻 : 곰곰히 생각하다. 이것이 다른 사람과 이야기하거나 책을 읽을때 수박이란게 먼저 생각난다면 곰곰히 생각하다와 아무 상관없는 것이 연상되어 도리어 단어를 제대로 쓰는 것에 해를 가한다. 즉 이미지가 원뜻과 상관없는게 나오면 방해가 된다는 것
  • 우리홈만들기 . . . . 2 matches
          * 참고로 PHP는 모르겠지만 ZP서버에서 JSP를 하려면 특정 위치에서 해야함 --; -광식-
          * 게시판 게시판 게시판. 게시판을 만들어보아야 할텐데요. 참고로 저는 전혀 모르는 상태이고요. 같이 스터디 하실분 없나요? 목표는, 'php, cgi, jsp 중 하나를 선택해서 게시판을 만든다.' 일단 저는 php 로 볼 생각입니다만. 같이 하실 분 계시면 토의해서(하루빨리) 하나 정해서 공부하죠! -남훈-
          * 나도 게시판 만드는데 필요한 JSP나 PHP배울 생각은 있는데..왠지 남훈이가 하루면 될 분량을 나는 1주일은 넘게 붙잡아야 할 것 같은 생각이 든다..--; 지혜는 PHP해봤고, 광식이는 JSP해봤고 남훈이는 빠르고.. 아아~ 나는 무엇인가..ㅜㅜ -혜영이-
          * DeleteMe)난 cgi를 한번도 안해보왔는데. ~~ JSP밖에 안했어~~
          * 나도 같은 생각인데. 현재의 웹 개발쪽 추세는 소 & 중형인 경우는 주로 PHP를, 중 & 대형인 경우는 Java 관련 or MS 관련 JSP & ASP라 보고 있음. 공부목적이 아닌 그냥 즐기기용이다 하더라도 PHP 나 Python 이 더 쉽게 접근할 수 있을 것이라 생각.~ - ["1002"]
          * 나모 5.0을 깔았음 ^^;; jsp를 지원해서 훨씬 좋다~~ 인제 게시판이닷
  • 윈도우단축키 . . . . 2 matches
          * ctrl + space - 마우스 휠기능
          * alt + space + x - 창 최대화
  • 이승한/PHP . . . . 2 matches
          * asp.net에서 보았던 ODBC 를 이용한 DB와의 통신보다 간단하고 빠른듯.
          * htmlspecilchars(); //& " ' < > 등 HTML에서 사용하는 키워드를 다른 키워드로 바꿔준다. ex>& -> & " ->"
          * <? 와 ?>로 되어있다. (ASP는 <% %>를 사용하여 타이핑하기 불편하다.)
  • 이영호/개인공부일기장 . . . . 2 matches
          asprotect 언패킹 방법.
         21 (목) - Compilers, C++공부 시작(C++자체가 쉬워 7일만에 끝낼거 같음. -> C언어를 안다고 가정하고 C++를 가르쳐 주는 책을 보기 시작.), 기본문법, namespace, function overloading, class 추상화, 은닉성까지 완벽하게 정리.
  • 이영호/기술문서 . . . . 2 matches
         [http://blog.naver.com/post/postView.jsp?blogId=pjfile&logNo=40012816514] - setsockopt() && Windows lib version
         [http://bbs.kldp.org/viewtopic.php?t=21673] - printf & sprintf 팁
  • 이영호/문자열검색 . . . . 2 matches
         strstr, strcase, strspn등과 비슷한 함수를 제작하는 것이었다면 이 답은 틀렸다.
          fgets(buf, sizeof(buf), stdin); // 문자열이라고 했으니 space를 포함한다.
  • 자료실 . . . . 2 matches
         [[HTML(<p align=center><iframe src="/jsp/pds/pds_session.jsp" FRAMEBORDER="no" width=100% height=100%></iframe></p>)]]
  • 정규표현식/스터디/반복찾기/예제 . . . . 2 matches
         brlapi.key dictionaries-common grub.d ld.so.conf nanorc rc.local speech-dispatcher xulrunner-1.9.2
  • 정모/2011.10.5 . . . . 2 matches
          * [Spring/탐험스터디]
          * AOP(Aspect-Oriented Programming)은 트랜잭션 처리 등 핵심기능은 아니지만 코드에 포함되어 유지보수를 어렵게 하는 부가기능을 분리해내는 패러다임으로 OOP(Object-Oriented Programming)를 대체하는 것은 아니고 보완하는 역할을 한다.
          * 오랜만에 정모를 참가했네요.. 날짜가 바뀌어서 이제 학교 나오는 4일 내내 수업 끝나고 집에 가는 날이 없어졌네요 아이 좋아~ (쳇) 여하튼.. 지원이의 세미나 후기를 보면서 전에 구글 블로그에 거기 참여한 사람들 뒷통수 찍은 사진 올라왔길래 '넌 도데체 어딨냐' 이러면서 찾았었는데 사진 보면서 대략의 위치를 파악했네요 다시한번 찾아봐야지... 라고 했지만 남자 뒤통수 밖에 안보이네요 -_-; [http://4.bp.blogspot.com/-BvALjPoMRYs/ToQet8xHkbI/AAAAAAAAANw/apBSQ_1QJiI/s1600/ADL_0932+%25281%2529.JPG, 어디 숨어있나] 퀴즈도 재미있었습니다. 모두들 진실은 말 하지 않는군요 -ㅅ-; 흠흠.. - [권순의]
  • 정모/2012.7.11 . . . . 2 matches
          * [서민관]학우의 ''Lisp & CLOS''
          * Spring - simple Wiki 만들기 진행.
          * 후기가 좀 늦었네요. OMS로 Lisp 쪽에서의 객체 시스템에 대해서 다뤄 봤는데 들을만 했는지 어떤지 모르겠네요 ;;; 데블스 캠프 때도 그렇지만 세미나는 항상 준비하는 사람이 제일 많이 배우는 것 같군요. 그 외에도 서울 어코드 사업이나 MT 준비 등 이래저래 할 이야기가 많은 정모였습니다. 근데 서울 어코드는 어떻게 할 건지 좀 궁금하군요. 또 서류 써야 하나... - [서민관]
  • 제12회 한국자바개발자 컨퍼런스 후기 . . . . 2 matches
          * 관련 홈페이지 : [http://jco.zdnet.co.kr/12th/default.asp JCO 등록 및 발표자료 다운 (2월 22일부터)], [http://www.jco.or.kr/ JCO 홈페이지]
         || 16:00 ~ 16:50 || 대용량 고가용성 분산 캐쉬서버(infinispan)를 활용한 웹서비스 (이용혁) || 대박날때 후회말고, 성능큭정 자주하자!/성능측정도구 nGrinder (김광섭) || 모바일 웹 개발 플랫폼 (현철주) || IT 개발자 환경의 문제점과 개선점 등 (김효상-IT노조) || 분산 애플리케이션 개발을 위한 기업 통합(EIPs) 전략 (차정호) || SW 융합의 메카 인천에서 놀자! || 되돌아 보는 스프링 프레임워크 (KSUG 커뮤니티) ||
         || 17:00 ~ 17:50 || 쓸모있는 소프트웨어 작성을 위한 설계 원칙 (김민재) || Java Secure Coding Practice (박용우) || 개발자가 알아야하는 플랫폼 전략과 오픈 API 기술 동향 (옥상훈) || 반복적인 작업이 싫은 안드로이드 개발자에게 (전성주) || 개발자가 알아야할 오픈소스 라이선스 정책 (박수홍) || 이클립스 + 구글 앱 엔진으로 JSP 서비스하기 (OKJSP 커뮤니티) || 여성개발자의 수다 엿듣고 싶은 그들만의 특별한 이야기 (여자개발자모임터 커뮤니티) ||
  • 채팅원리 . . . . 2 matches
         ReceiveEvent : 클라이언트의 이벤트를 받는 부분이다. 이 이벤트가 StatusDisplay 클래스에 적용된다. 각각의 이벤트는 다음과 같다.
         서버가 시작하면 ReceiveEvent 클래스에서 클라이언트로부터 전달되는 Event를 기다리는 동시에 StatusDisplay 쓰레드와 다른 쓰레드들을 시작한다.
  • 코드레이스/2007/RUR_PLE . . . . 2 matches
         http://rur-ple.sourceforge.net/images/newspaper_start.png
         http://rur-ple.sourceforge.net/images/newspaper_end.png
  • 콤비반장의메모 . . . . 2 matches
          만화 형사 가제트(Inspector Gadget)에서 콤비 반장(Chief Quimby)은 형사 가제트에게 비밀 지령을 내릴땐 항상 자동 폭파되는 특별한 메모지를 사용하곤 했다. 그러나 인터넷 시대를 맞이한 콤비 반장은 이제 메모지 대신 한번만 사용할 수 있는 파일을 사용하려고 한다. ["콤비반장의메모"]와 같은 일회용 정보는 컴퓨터로 어떻게 구현할 수 있을까.
          암호화와 동시에 접근제어(AccessControl)가 필요한 문제인것 같아요. 접근제어는 다분히 시스템 의존적이라 일반적인 해결이 쉽지 않은 문제죠. http://elicense.com/what/music.asp 이런식의 해법도 이미 나와있더군요. --["데기"]
  • 파스칼삼각형/sksmsvlxk . . . . 2 matches
         using namespace std; //new 가 어디 포함되는지 몰라서
          //using namespace std 그냥 사용했음..
  • 함수포인터 . . . . 2 matches
         [http://www.codeproject.com/atl/atl_underthehood_.asp 2. 함수포인터]
         [http://www.codeproject.com/atl/atl_underthehood_.asp 3. thunk]
  • 희경/엘레베이터 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 05학번 . . . . 1 match
         using namespace std;
  • 05학번만의C Study/숙제제출1/이형노 . . . . 1 match
         using namespace std;
  • 05학번만의C++Study/숙제제출1/이형노 . . . . 1 match
         using namespace std;
  • 05학번만의C++Study/숙제제출1/정서 . . . . 1 match
         using namespace std;
  • 05학번만의C++Study/숙제제출1/조현태 . . . . 1 match
         책 읽어보고, using namespace std; 쓰는이유, 뭐 이런것을 익히고 자신만의 C++스타일도 찾을겸.
  • 05학번만의C++Study/숙제제출1/허아영 . . . . 1 match
         using namespace std;
  • 05학번만의C++Study/숙제제출2/허아영 . . . . 1 match
         using namespace std;
  • 05학번만의C++Study/숙제제출4/최경현 . . . . 1 match
         using namespace std;
  • 06 SVN . . . . 1 match
         5. Add that folder and files except debug folder and .ncb, .vsp, .suo, useroptionfiles.
  • 1002/Journal . . . . 1 match
         그림을 보고 나니, Inheritance 나 Delegation 이 필요없이 이루어진 부분이 있다는 점 (KeywordGenerator 클래스나 BookSearcher, HttpSpider 등) Information Hiding 이 제대로 지켜지지 않은것 같다는 점, (Book 과 관련된 데이터를 얻고, 검색하여 리스트를 만들어내는 것은 BookMapper 에서 통일되게 이루어져야 한다.) 레이어를 침범한것 (각각의 Service 클래스들이 해당 로직객체를 직접 이용하는것은 그리 보기 좋은 모양새가 아닌듯 하다. 클래스 관계가 복잡해지니까. 그리고 지금 Service 가 서블릿에 비종속적인 Command Pattern 은 아니다. 그리고 AdvancedSearchService 와 SimpleSearchService 가 BookMapper 에 촛점을 맞추지 않고 Searcher 클래스들을 이용한 것은 현명한 선택이 아니다.)
         구조를 살피면서 리팩토링, KeywordGenerator 클래스와 HttpSpider 등의 클래스들을 삭제했다. 테스트 96개는 아직 잘 돌아가는중. 리팩토링중 inline class 나 inline method , extract method 나 extract class 를 할때, 일단 해당 소스를 복사해서 새 클래스를 만들거나 메소드를 만들고, 이를 이용한뒤, 기존의 메소드들은 Find Usage 기능을 이용하면서 이용하는 부분이 없을때까지 replace 하는 식으로 했는데, 테스트 코드도 계속 녹색바를 유지하면서, 작은 리듬을 유지할 수 있어서 기분이 좋았다.
         기존의 AcceptanceTest 들이 작동을 못한다. (Python 에서 정규표현식 이용. 데이터 파싱 & 추출. Prometheus UI 가 바뀌면 다시 바뀜) 전에 구경한 것처럼 XPath 를 이용하는 방법을 궁리해보거나, Prometheus 쪽에서 XML + XSLT 를 이용하는 방법을 궁리했다. 하지만, 그러기엔 현재 Prometheus 의 JSP 부분을 전부 바꾸는데 부담이 크리라 판단, Servlet Controller 중 Service 클래스 부분에 대해 테스트 코드를 붙이는 방법을 생각해 냈다. 하지만, 막상 작성해보고 나니 그 또한 테스트 코드의 크기가 크긴 하다.
         현재 : http://www.savie.co.kr/SITE/data/html_dir/2002/10/01/200210010019.asp. 결혼도 하고 세살된 딸도 있단다. 현재의 사진을 보니 남궁원씨 닮아가는군. M&A 전문 회사 대표라고 한다.
         지금 이전 노래방 프로그램 만들때 이용했었던 Audio Compression Manager 부분 이용하라고 하면 아마 다시 어떻게 API를 이용하는지 회상하는데 2일쯤 걸릴것이다. DX Media SDK 부분을 다시 이용하라고 하면 아마 하루정도 Spike 가 다시 필요할 것이다. 즉, 이전에 만들어놓은 소스가 있다고 그 지식이 현재 나의 일부라고 하기엔 문제가 있다.
         중간 개개의 모듈을 통합할때쯤에 이전에 생각해둔 디자인이 제대로 기억이 나지 않았다.; 이때 Sequence Diagram 을 그리면서 프로그램의 흐름을 천천히 생각했다. 어느정도 진행된 바가 있고, 개발하면서 개개별 모듈에 대한 인터페이스들을 정확히 알고 있었기 때문에, Conceptual Model 보다 더 구체적인 Upfront 로 가도 별 무리가 없다고 판단했다. 내가 만든 모듈을 일종의 Spike Solution 처럼 접근하고, 다시 TDD를 들어가고 하니까 중간 망설임 없이 거의 일사천리로 작업하게 되었다.
          * SE 시간에 CBD (CBD & Business 라는 측면. 3강 연속) 를 배울때마다 느끼는 점이 있다면, 다른 공학 (기계, 전자, 건축) 들의 개념들을 이용하여 Software 를 Hardware 화 시킨다는 느낌이 든다. 늘 '표준' 을 강조하시는 교수님. 컴포넌트쪽과 QA쪽에서 그 이름이 빠질 수 없는 교수님이시기에, 그리고 평소 수업때 자신의 나이만큼 연륜있으신 말씀을 하시기에 마음이 흔들리지 않을 수 없고, 결국 '톱니바퀴들 중 하나'라는 생각을 하고 나면 약간 한스럽다. 그래서 교수님께서는 늘 'Domain Expert' & 'Speciality' 를 강조하시지만.
  • 1thPCinCAUCSE/ExtremePair전략 . . . . 1 match
         using namespace std;
  • 1~10사이 숫자 출력, 5 제외 (continue 문 사용) . . . . 1 match
         using namespace std;
  • 2002년도ACM문제샘플풀이/문제C . . . . 1 match
         using namespace std;
  • 2005MFC스터디 . . . . 1 match
         교재 판매 점 : [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=200401310006]
  • 2011년MT . . . . 1 match
          * http://www.cosmospension.com/home/page9_1.htm
  • 2dInDirect3d/Chapter3 . . . . 1 match
         Specular color
          === Specular Color ===
         #define CUSTOM_VERTEX_FVF D3DFVF_XYZ | D3DFVF_RHW | D3DFVF_DIFFUSE | D3DFVF_SPECULAR
          D3DCOLOR specular;
  • 2thPCinCAUCSE/ProblemA/Solution/상욱 . . . . 1 match
         using namespace std;
  • 3 N+1 Problem/조동영 . . . . 1 match
         using namespace std;
  • 3DGraphicsFoundationSummary . . . . 1 match
          * 원근투영 (Perspective projection) : 우리 눈에 보이는 대로(원근감 살려서) 깊이감 살리는데 좋다.
  • 3N 1/김상섭 . . . . 1 match
         using namespace std;
  • 3N+1/김상섭 . . . . 1 match
         using namespace std;
  • 3N+1Problem/강소현 . . . . 1 match
         using namespace std;
  • 3N+1Problem/곽세환 . . . . 1 match
         using namespace std;
  • 3N+1Problem/문보창 . . . . 1 match
         using namespace std;
  • 3N+1Problem/신재동 . . . . 1 match
         using namespace std;
  • 3n 1/Celfin . . . . 1 match
         using namespace std;
  • 3n 1/이도현 . . . . 1 match
         using namespace std;
  • 50~100 사이의 3의배수와 5의 배수 출력 . . . . 1 match
         using namespace std;
  • 5인용C++스터디/더블버퍼링 . . . . 1 match
         SetBkMode(hMemDC,TRANSPARENT);
          // TODO: Add your specialized creation code here
  • 5인용C++스터디/윈도우에그림그리기 . . . . 1 match
          DispatchMessage(&mSg);
  • 5인용C++스터디/타이머보충 . . . . 1 match
         #include <afxdisp.h> // MFC Automation classes
  • 8queen/강희경 . . . . 1 match
         using namespace std;
  • 8queen/곽세환 . . . . 1 match
         using namespace std;
  • 8queen/문원명 . . . . 1 match
         using namespace std;
  • 8queen/민강근 . . . . 1 match
         using namespace std;
  • 8queen/손동일 . . . . 1 match
         using namespace std;
  • API/WindowsAPI . . . . 1 match
          DispatchMessage(&Message);
  • A_Multiplication_Game/곽병학 . . . . 1 match
         using namespace std;
  • AcceleratedC++ . . . . 1 match
         책설명 Seminar:AcceleratedCPlusPlus
          || [http://lab.msdn.microsoft.com/express/visualc/default.aspx VS2005C++Express] || .net 2005의 VSC++버전의 Express Edition ||
  • AcceleratedC++/Chapter10 . . . . 1 match
          // write each remaining argument with a space before it
  • AcceleratedC++/Chapter14 . . . . 1 match
          '''템플릿의 구체화(template specialization)'''
  • AcceleratedC++/Chapter3 . . . . 1 match
         using namespace std;
  • AdventuresInMoving:PartIV/김상섭 . . . . 1 match
         using namespace std;
  • AdventuresInMoving:PartIV/문보창 . . . . 1 match
         using namespace std;
  • Ajax . . . . 1 match
          * The Document Object Model manipulated through JavaScript to dynamically display and interact with the information presented
         Like DHTML, LAMP, or SPA, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together. In fact, derivative/composite technologies based substantially upon Ajax, such as AFLAX are already appearing.
  • Ajax2006Summer/프로그램설치 . . . . 1 match
         3. Workspace 설정 후 '''Help''' - '''Software Updates''' - '''Find and Install''' 을 선택합니다.
  • AliasPageNames . . . . 1 match
         # $Id: AliasPageNamesDefaultKo,v 1.1 2009/01/02 17:26:39 root Exp root $
         # $aliaspage=$data_dir.'/text/AliasPageNames';
         DeleteThisPage,DeletePage,DeleteMe
  • AnEasyProblem/강성현 . . . . 1 match
         using namespace std;
  • AnEasyProblem/권순의 . . . . 1 match
         using namespace std;
  • AndOnAChessBoard/허준수 . . . . 1 match
         using namespace std;
  • AngularJS . . . . 1 match
          <button ng-click="todos.splice($index,1)">x</button>
  • Ant . . . . 1 match
         게다가, 팀 단위 작업을 한다고 할때, 작업하는 컴퓨터와 [IDE] 들이 각각 다른 경우, IDE 에 따라서 classpath, 배포디렉토리 경로들도 다를 것이다.
  • AntOnAChessboard/김상섭 . . . . 1 match
         using namespace std;
  • AntOnAChessboard/문보창 . . . . 1 match
         using namespace std;
  • AntOnAChessboard/하기웅 . . . . 1 match
         using namespace std;
  • Apache . . . . 1 match
          JSP를 돌리기위해서 mod_jk로 jsp 를 tomcat 에 넘겨주는 방식으로 운영되고 있음. tomcat webserver로 접속하려면, [http://zeropage.org:8080]으로 접속하면 됨.
  • Applet포함HTML/상욱 . . . . 1 match
          pluginspage = "http://java.sun.com/products/plugin/index.html#download">
  • Applet포함HTML/영동 . . . . 1 match
          pluginspage="http://java.sun.com/products/plugin/index.html#download">
  • Applet포함HTML/진영 . . . . 1 match
          pluginspage = "http://java.sun.com/products/plugin/index.html#download">
  • AproximateBinaryTree/김상섭 . . . . 1 match
         using namespace std;
  • AsemblC++ . . . . 1 match
         [http://www.google.co.kr/search?num=20&hl=ko&newwindow=1&client=firefox-a&rls=org.mozilla:ko-KR:official&q=disassembler&spell=1 역어셈블러 구글검색]
  • AssemblyStudy . . . . 1 match
          * [http://charsyam.springnote.com/pages/2429832 OS만들기]
  • Atom . . . . 1 match
         The completed Atom syndication format specification was submitted to the IETF for approval in June 2005, the final step in becoming an RFC Internet Standard. In July, the Atom syndication format was declared ready for implementation[1]. The latest Atom data format and publishing protocols are linked from the Working Group's home page.
  • AudioFormatSummary . . . . 1 match
         || mp3 || ? || [http://www.ipm.fraunhofer.de/fhg/ipm_en/profil/lab_equipment/index.jsp Fraunhofer] || 공짜 아님. 손실압축. ||
  • AustralianVoting/Leonardong . . . . 1 match
         using namespace std;
  • AustralianVoting/곽세환 . . . . 1 match
         using namespace std;
          int votesPerCandidates[20] = {{0}};
          votesPerCandidates[i] = 0;
          votesPerCandidates[votes[i][rank[i]] - 1]++;
          cout << votesPerCandidates[i] << " ";
          if (votesPerCandidates[i] > 0.5 * numberOfVoters)
          if (votesPerCandidates[i] == 0)
          sameVote = votesPerCandidates[i];
          else if (sameVote != votesPerCandidates[i])
          if (votesPerCandidates[i] == 0)
          if (minVote > votesPerCandidates[i])
          minVote = votesPerCandidates[i];
          if (votesPerCandidates[votes[i][rank[i]] - 1] == minVote)
          if (votesPerCandidates[votes[i][rank[i]] - 1] == minVote)
          if (sameVote == votesPerCandidates[i])
  • AustralianVoting/문보창 . . . . 1 match
         using namespace std;
  • AutomatedJudgeScript/문보창 . . . . 1 match
         using namespace std;
  • BabyStepsSafely . . . . 1 match
         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.
          assert("is prime", isPrime(n));
          if(isPrime(i))
          assert("is prime", isPrime(n));
          if(isPrime(i))
          static boolean isPrime(int n)
  • BarMacro . . . . 1 match
         ||<colspan="2">[[Bar(10%)]]||
  • BasicJava2005/3주차 . . . . 1 match
          * C/C++의 #include 와 using namespace의 결합형
  • Basic알고리즘/팰린드롬/조현태 . . . . 1 match
         using namespace std;
  • BeeMaja/김상섭 . . . . 1 match
         using namespace std;
  • BeeMaja/문보창 . . . . 1 match
         using namespace std;
  • BeeMaja/조현태 . . . . 1 match
         using namespace std;
  • BeeMaja/하기웅 . . . . 1 match
         using namespace std;
  • BeeMaja/허준수 . . . . 1 match
         using namespace std;
  • Bicoloring/문보창 . . . . 1 match
         using namespace std;
  • Bigtable/DataModel . . . . 1 match
         === SPLIT ===
         1. split 허용
  • BirthdatCake/하기웅 . . . . 1 match
         using namespace std;
  • BirthdayCake/허준수 . . . . 1 match
         using namespace std;
  • Boost/SmartPointer . . . . 1 match
         using namespace boost;
         typedef shared_ptr<Vertex3D> Vertex3DSPtr;
         typedef vector<Vertex3DSPtr> Vertexs; // 단어 틀렸다는거 알지만 그냥 씀 -_-
         typedef shared_ptr<Vertexs> VertexsSPtr;
          VertexsSPtr vertexs(new Vertexs);
          Vertex3DSPtr vertex(new Vertex3D);
  • BoostLibrary/SmartPointer . . . . 1 match
         using namespace boost;
         typedef shared_ptr<Vertex3D> Vertex3DSPtr;
         typedef vector<Vertex3DSPtr> Vertexs; // 단어 틀렸다는거 알지만 그냥 씀 -_-
         typedef shared_ptr<Vertexs> VertexsSPtr;
          VertexsSPtr vertexs(new Vertexs);
          Vertex3DSPtr vertex(new Vertex3D);
  • Bridge/권영기 . . . . 1 match
         using namespace std;
  • BusSimulation/상협 . . . . 1 match
         using namespace std;
  • C++스터디_2005여름 . . . . 1 match
          using namespace std;
  • C++스터디_2005여름/도서관리프로그램/조현태 . . . . 1 match
         using namespace std;
  • CCNA . . . . 1 match
          - 이더넷 인터페이스(라우터에서 내부 컴퓨터방향), 시리얼 인터페이스(인터넷 혹은 다른 라우터, 그러니까 isp업체방향)
  • CMM . . . . 1 match
         Capability Maturity Model. 미국 Software 평가모델의 표준. ISO 표준으로는 ["SPICE"] 가 있다.
          * [http://www.zdnet.co.kr/hotissue/devcolumn/article.jsp?id=38590 2001/06/06 마소 컬럼]
  • CPPStudy_2005_1 . . . . 1 match
          [http://lab.msdn.microsoft.com/express/visualc/default.aspx VS2005C++Express] .net 2005의 VSC++버전의 Express Edition
  • CPPStudy_2005_1/STL성적처리_3 . . . . 1 match
         using namespace std;
  • CPPStudy_2005_1/STL성적처리_3_class . . . . 1 match
         using namespace std;
  • CPPStudy_2005_1/STL성적처리_4 . . . . 1 match
         using namespace std;
  • CSS . . . . 1 match
         [http://user.chollian.net/~spacekan/] - CSS 2.0 첫 배우기 [Tutorial]
  • CVS . . . . 1 match
         cvspserver stream tcp nowait root /usr/sbin/tcpd /usr/bin/env - /usr/bin/cvs -f --allow-root=/usr/local/cvsroot pserver
  • CarmichaelNumbers/문보창 . . . . 1 match
         using namespace std;
         bool isPrime(int n);
          if (isPrime(n))
         bool isPrime(int n)
  • CategoryHomepage . . . . 1 match
         Note that such pages are "owned" by the respective person, and should not be edited by others, except to leave a message to that person. To do so, just append your message to the page, after four dashes like so:
  • Chapter II - Real-Time Systems Concepts . . . . 1 match
         RenameThisPage - Name Space 에 대해서 지켜주기 바람. 그리고 영문제목띄어쓰기에 대해서는 FrontPage 가장 윗 문단 참조바람 --석천
         스케쥴러는 DISPATCHER라고도 불리우며 우선순위가 높은 태스크를 수행시킨다.
         === Interrupt Response ===
  • CheckTheCheck/Celfin . . . . 1 match
         using namespace std;
  • CheckTheCheck/곽세환 . . . . 1 match
         using namespace std;
  • CheckTheCheck/문보창 . . . . 1 match
         using namespace std;
  • ChocolateChipCookies/조현태 . . . . 1 match
         using namespace std;
  • ChocolateChipCookies/허준수 . . . . 1 match
         using namespace std;
  • Chopsticks/문보창 . . . . 1 match
         using namespace std;
  • ClassifyByAnagram/1002 . . . . 1 match
         hotspot 으로 프로파일링 돌린뒤 중간 쓸데없어보이는 코드들 마구마구 삭제. 가장 병목지점은 Anagram.register, {{{~cpp WordElement}}} (지금은 input 갯수 n 에 대해 n 번 실행)
  • ClassifyByAnagram/상규 . . . . 1 match
         using namespace std;
         P3 1GHz 512MB WinXP VC++7.0 Maximize Speed Optimization 4.1초
  • Class로 계산기 짜기 . . . . 1 match
         using namespace std;
  • ClipMacro . . . . 1 match
         [[Clip(OneStarKospi)]]
         잘 안되네요. 윈XP pro !SP2 , Internet Explore 6.0 !SP2 에서 테스트 했습니다. paste와 copy는 별 반응없고, Unload 괜히 눌렀다가 위의 그림만 지웠네요 ^^;
         익스플로러 XP프로 SP2에서 잘 되는군요. print screen키를 누르신다음에 paste해보세요 -- Anonymous [[DateTime(2005-03-31T16:55:09)]]
  • CodeRace/20060105/Leonardong . . . . 1 match
         for word in f.read().split():
  • CodeRace/20060105/도현승한 . . . . 1 match
         using namespace std;
  • CodeRace/20060105/아영보창 . . . . 1 match
         using namespace std;
  • CommentEachOther . . . . 1 match
         [http://img235.imageshack.us/img235/4908/jspark7vu.jpg]
  • CommonPermutation/문보창 . . . . 1 match
         using namespace std;
  • ComponentObjectModel . . . . 1 match
         Despite this, COM remains a viable technology with an important software base – for example the popular DirectX 3D rendering SDK is based on COM. Microsoft has no plans for discontinuing COM or support for COM.
         COM 은 '언어'가 아닌 '기술'이다. 이는 ASP 가 VBScript 언어를 의미하지 않는 것과 같다.
  • ComputerGraphicsClass/Exam2004_1 . . . . 1 match
         Projection 에서 View Volume 안에 있는 물체에 대한 View Plane 이, Orthogonal Projection 과 Perspective Projection 에서 결과물에 어떠한 차이를 보이게 하는지 쓰시오.
  • ComputerNetworkClass/Report2006/BuildingWebServer . . . . 1 match
          * [http://msdn.microsoft.com/library/en-us/winsock/winsock/winsock_functions.asp Winsock Functions]
  • ComputerNetworkClass/Report2006/PacketAnalyzer . . . . 1 match
         __intn 1, 2, 4, or 8 bytes depending on the value of n. __intn is Microsoft-specific.
  • ContestScoreBoard/문보창 . . . . 1 match
         using namespace std;
          int numberSuccessProblem;
          team[i].numberSuccessProblem = 0;
          team[numTeam].numberSuccessProblem++;
          if (team[rankTeam[top]].numberSuccessProblem < team[rankTeam[j]].numberSuccessProblem)
          else if (team[rankTeam[top]].numberSuccessProblem == team[rankTeam[j]].numberSuccessProblem)
          cout << rankTeam[i] << " " << team[rankTeam[i]].numberSuccessProblem << " " << team[rankTeam[i]].penalty << endl;
  • ContestScoreBoard/신재동 . . . . 1 match
         using namespace std;
  • ContestScoreBoard/차영권 . . . . 1 match
         using namespace std;
  • ContestScoreBoard/허아영 . . . . 1 match
         using namespace std;
  • Counting/김상섭 . . . . 1 match
         using namespace std;
  • Cpp/2011년스터디 . . . . 1 match
         조작은 WASD와 ,.로합니다. space는 아직 못합니다 ㅜㅠ
  • CppStudy_2002_2/STL과제/성적처리 . . . . 1 match
         using namespace std;
  • CppUnit . . . . 1 match
          * Library 화일 생성 : {{{~cpp ...cppunitexamplesexamples.dsw }}} 을 연뒤 {{{~cpp WorkSpace }}}의 {{{~cpp FileView }}}에서 {{{~cpp CppUnitTestApp files }}} 에 Set as Active Project로 맞춰준다.(기본값으로 되어 있다.) 그리고 컴파일 해주면 lib 폴더에 library 화일들이 생성될 것이다.
         using namespace std;
  • CryptKicker2/문보창 . . . . 1 match
         using namespace std;
  • CuttingSticks/김상섭 . . . . 1 match
         using namespace std;
  • CuttingSticks/문보창 . . . . 1 match
         using namespace std;
  • CuttingSticks/하기웅 . . . . 1 match
         using namespace std;
  • CxImage 사용 . . . . 1 match
          // TODO: Add your specialized creation code here
  • DPSCChapter4 . . . . 1 match
         '''Decorator(161)''' Attach Additional responsibilities and behavior to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.
  • DataCommunicationSummaryProject/Chapter5 . . . . 1 match
          * extra spectrum과 새로운 modulation techniques으로써 가능. CDMA 선호(증가된 스펙트럼의 효율성과 자연스러운 handoff 메카니즘)
          === Spectrum Requirements ===
          * Extra Spectrum 필요성 제안.
  • DataSmog . . . . 1 match
         http://image.wowbook.com/book/large_image/89-374-2705-2.gif [[BR]][http://www.wowbook.com/generic/book/info/book_detail.asp?isbn=ISBN89-374-2705-2 데이터스모그]
  • Debugging/Seminar_2005 . . . . 1 match
          * fully implemented and fully debugged, before the developer(s) responsible for that feature move on to the next feature -> debugging The development Process
  • DelegationPattern . . . . 1 match
         ["ResponsibilityDrivenDesign"] , ["Refactoring"], ["DelegationPattern"] 을 꾸준히 지켜주면 좋은 코드가 나올 수 있다. (["DesignPattern"] 이 유도되어짐)
  • DermubaTriangle/김상섭 . . . . 1 match
         using namespace std;
  • DermubaTriangle/문보창 . . . . 1 match
         using namespace std;
  • DermubaTriangle/조현태 . . . . 1 match
         using namespace std;
  • DermubaTriangle/하기웅 . . . . 1 match
         using namespace std;
  • DermubaTriangle/허준수 . . . . 1 match
         using namespace std;
  • DesignPatterns/2011년스터디/1학기 . . . . 1 match
          1. High Cohesion Low Coupling과 SOLID(SRP, OCP, LSP, ISP, DIP)에 대해 다시 생각해보는 시간이 되었다.
          1. SRP(Single Response Principle)에 대해 얘기하면서 '책임'이란 무엇인가에 대한 이야기가 나왔다. 삽질 경험이 없는 사람에게 객체지향 원칙을 설명할 때 '책임'이 무엇인지 어떻게 이해시켜야 할지 모르겠다. 오늘 얘기하면서 낸 결론도 경험이 없으면 이해하기 어렵다는 것…
  • DesigningObjectOrientedSoftware . . . . 1 match
         Object 의 ClassResponsibiltyCollaboration 에 대한 개념이 잘 설명되어있는 책.
  • DevOn . . . . 1 match
          * [Lisp]을 이용한 실시간 멀티미디어 프로그래밍
  • DevelopmentinWindows/APIExample . . . . 1 match
          DispatchMessage(&msg);
  • Doublets/문보창 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/곽세환 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/김회영 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/문보창 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/황재선 . . . . 1 match
         using namespace std;
  • EightQueenProblem/강인수 . . . . 1 match
         using namespace std;
  • EightQueenProblem/이창섭 . . . . 1 match
         using namespace std;
  • EightQueenProblem/정수민 . . . . 1 match
         using namespace std;
  • EightQueenProblem/조현태 . . . . 1 match
         using namespace std;
  • EightQueenProblem/조현태2 . . . . 1 match
         using namespace std;
  • EightQueenProblem/허아영 . . . . 1 match
         using namespace std;
  • EmbedAudioFilesForFireFox . . . . 1 match
          <param name="ShowDisplay" value="0" />
  • EnglishSpeaking/TheSimpsons/S01E05 . . . . 1 match
         Okay, our main force will be split into two groups.
         [English Speaking/2011년스터디]
  • ErdosNumbers/문보창 . . . . 1 match
         using namespace std;
  • ErdosNumbers/조현태 . . . . 1 match
         using namespace std;
  • EuclidProblem/곽세환 . . . . 1 match
         using namespace std;
  • EuclidProblem/문보창 . . . . 1 match
         using namespace std;
  • EuclidProblem/이동현 . . . . 1 match
         using namespace std;
  • Expat . . . . 1 match
         To use the Expat library, programs first register handler functions with Expat. When Expat parses an XML document, it calls the registered handlers as it finds relevant tokens in the input stream. These tokens and their associated handler calls are called events. Typically, programs register handler functions for XML element start or stop events and character events. Expat provides facilities for more sophisticated event handling such as XML Namespace declarations, processing instructions and DTD events.
  • ExploringWorld/20040315-새출발 . . . . 1 match
         [[HTML(<font color=red><B>)]]미션 1 : Java-Servlet, jsp, php 로 Hello World 찍어오자! [[HTML(</B></font>)]]을 해결하기 위해 어떤 결과를 거쳤나?
          * Tomcat 설치 port 8080, How To Program Java(학교 교재)의 뒷부분에 JSP 부분을 참고하였다.
          * PHP는 서블릿 JSP - '쉽게따라하기' 제목의 책을 보았는데 쉽지 않았다. 개념이해 하지 못했다.
          * JSP, Servlet Container란 무엇인가? -> 시간상 이번주가 불가능해서 다음주에 여행자가 안내자에게 설명해 주기로 하였습니다.
  • ExploringWorld/20040506-무제 . . . . 1 match
          * [http://ipsc.ksp.sk/ ISPC],[http://icpc.baylor.edu/icpc/default.htm ICPC] 를 풀면서 느낀 좌절
  • FactorialFactors/문보창 . . . . 1 match
         using namespace std;
  • FactorialFactors/조현태 . . . . 1 match
         using namespace std;
  • Favorite . . . . 1 match
         [(zeropage)SpiralArray]
         [http://web.mit.edu/rhel-doc/4/RH-DOCS/rhel-isa-ko-4/s1-acctsgrps-rhlspec.html 리눅스 권한]
  • FoundationOfASP . . . . 1 match
         = ASP 기초 =
          * ASP 기초를 배운다.
         == taeyo's ASP ==
          * 아주 간단한 실습 : hello.asp 파일을 불러올시 자기이름을 100번찍음
  • FromDuskTillDawn/조현태 . . . . 1 match
         using namespace std;
  • GTK+ . . . . 1 match
         GTK+ has been designed from the ground up to support a range of languages, not only C/C++. Using GTK+ from languages such as Perl and Python (especially in combination with the Glade GUI builder) provides an effective method of rapid application development.
  • GarbageCollection . . . . 1 match
         컴퓨터 환경에서 가비지 컬렉션은 자동화된 메모리 관리의 한가지 형태이다. 가비지 컬렉터는 애플리케이션이 다시는 접근하지 않는 객체가 사용한 메모르 공간을 회수하려고 한다. 가비지 컬렉션은 John McCarthy 가 1959년 Lisp 언어에서 수동적인 메모리 관리로 인한 문제를 해결하기 위해서 제안한 개념이다.
  • Gof/Composite . . . . 1 match
          * 종종 컴포넌트-부모 연결은 ChainOfResponsibilityPattern에 이용된다.
  • Gof/State . . . . 1 match
          1. It localizes state-specific behavior and partitions bahavior for different states.
  • GotoStatementConsideredHarmful . . . . 1 match
         기사 : http://www.zdnet.co.kr/it_summary_2003/it2003_newtech/article.jsp?id=60491
  • Graphical Editor/Celfin . . . . 1 match
         using namespace std;
  • HASH구하기/강희경,김홍선 . . . . 1 match
         using namespace std;
  • HASH구하기/권정욱,곽세환 . . . . 1 match
         using namespace std;
  • HASH구하기/류주영,황재선 . . . . 1 match
         using namespace std;
  • HASH구하기/신소영 . . . . 1 match
         using namespace std;
  • HASH구하기/조동영,이재환,노수민 . . . . 1 match
         using namespace std;
  • HanoiProblem/상협 . . . . 1 match
         using namespace std;
  • HanoiProblem/은지 . . . . 1 match
         using namespace std;
  • HanoiProblem/재동 . . . . 1 match
         using namespace std;
  • HanoiTowerTroublesAgain!/문보창 . . . . 1 match
         using namespace std;
  • HanoiTowerTroublesAgain!/이도현 . . . . 1 match
         using namespace std;
  • HanoiTowerTroublesAgain!/조현태 . . . . 1 match
         using namespace std;
          bool isPut = FALSE;
          isPut = TRUE;
          if (FALSE == isPut)
  • HanoiTowerTroublesAgain!/하기웅 . . . . 1 match
         using namespace std;
  • HardcoreCppStudy/첫숙제/Overloading/김아영 . . . . 1 match
         using namespace std;
  • HardcoreCppStudy/첫숙제/ValueVsReference/임민수 . . . . 1 match
         using namespace std;
  • Hartal/Celfin . . . . 1 match
         using namespace std;
  • Hartals/상협재동 . . . . 1 match
         using namespace std;
  • HelpOnCvsInstallation . . . . 1 match
          1. 로그인은 단 한번만 하면 됩니다. 한번 로그인 하면 그 정보가 {{{~/.cvspass}}}파일에 보존됩니다.
  • HelpOnFormatting . . . . 1 match
         위키위키 문법을 무시하게 하기 위해서 중괄호 세개를 {{{ {{{이렇게}}} }}} 사용하게 되면 글꼴이 고정폭 글꼴로 보여지게 되며 ({{{monospace font}}}) 만약에 이 문법을 여러 줄에 걸쳐 사용하게 되면, 중괄호 블럭의 모든 공백이 보호되어 프로그램 코드를 직접 삽입하여 보여 줄 수 있습니다.
  • HelpTemplate . . . . 1 match
         === Display ===
  • Hessian . . . . 1 match
         이를 컴파일 하기 위해서는 hessian-2.1.3.jar 화일과 jsdk23.jar, resin.jar 화일이 classpath 에 맞춰줘야 한다. (이는 resin 의 lib 폴더에 있다. hessian jar 화일은 [http://caucho.com/hessian/download/hessian-2.1.3.jar hessian] 를 다운받는다)
  • 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.
  • HowManyPiecesOfLand?/문보창 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/김회영 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/문보창 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/허아영 . . . . 1 match
         using namespace std;
  • HowToBuildConceptMap . . . . 1 match
          * Specific examples of concepts can be attached to the concept labels (e.g., golden retriver is a specific example of a dog breed).
  • ImmediateDecodability/김회영 . . . . 1 match
         using namespace std;
  • ImmediateDecodability/문보창 . . . . 1 match
         using namespace std;
  • IntelliJUIDesigner . . . . 1 match
         이를 classpath 에 추가해준다.
  • InterMap . . . . 1 match
         Aladdin http://www.aladdin.co.kr/catalog/book.asp?ISBN=
  • InterestingCartoon . . . . 1 match
         그냥 페이지를 나누어도 상관없을듯 합니다. NoSmok 의 경우 NoSmok:애니메이션명대사 , NoSmok:만화속명대사 가 따로있긴 합니다. Responsibility 가 2개 이상이라 느껴진다면 이를 분리하는것도 하나의 방법이겠죠. (한편으로는, 이 페이지의 컨텐츠에 비해 너무 Rigid 하게 나가는 거 아닌가 하는 생각이 듭니다. 이 페이지로부터 다른 사람이 얻어가는, 또는 자신이 이익이 얻는 부분은 어떤건가요? 또는 어떠한 내용이 있다면 사람들로부터 더 활발한 이야기꺼리를 끌어낼 수 있을까요?) --[1002]
  • Interpreter/Celfin . . . . 1 match
         using namespace std;
  • IsThisIntegration?/김상섭 . . . . 1 match
         using namespace std;
  • IsThisIntegration?/하기웅 . . . . 1 match
         using namespace std;
  • IsThisIntegration?/허준수 . . . . 1 match
         using namespace std;
  • JTDStudy . . . . 1 match
          * [http://java.sun.com/javase/downloads/index.jsp]
  • JTDStudy/두번째과제/장길 . . . . 1 match
          this.dispose();
  • JUnit . . . . 1 match
          * http://www.yeonsh.com/index.php?display=JUnit - 연승훈씨의 홈페이지. Cook Book (주소변경)
  • Java Study2003/첫번째과제/장창재 . . . . 1 match
         HotSpot:
         System.out.println("Hello World!"); // Display the string
  • Java/SwingCookBook . . . . 1 match
          * Abeille Forms Designer - http://www.jetaware.com/forms_product.jsp
  • Java2MicroEdition . . . . 1 match
          그림을 보면 맨 아래에 MID, 즉 휴대전화의 하드웨어 부분이 있고 그 위에는 Native System Software가 존재하며 그 상위에 CLDC가, 그리고 MIDP에 대한 부분이 나오는데 이 부분을 살펴보면, MIDP Application과 OEM-Specific Classes로 나뉘어 있는 것을 알 수 있다. 여기서의 OEM-Specific Classes라는 것은 말 그대로 OEM(Original Equipment Manufacturing) 주문자의 상표로 상품을 제공하는 것이다. 즉, 다른 휴대전화에서는 사용할 수 없고, 자신의(같은 통신 회사의) 휴대전화에서만 독립적으로 수행될 수 있도록 제작된 Java또는 Native로 작성된 API이다. 이는 자신의(같은 통신 회사의) 휴대전화의 특성을 잘 나타내거나 또는 MIDP에서 제공하지 않는 특성화된 클래스 들로 이루어져 있다. 지금까지 나와있는 많은 MIDP API들에도 이런 예는 많이 보이고 있으며, 우리나라의 SK Telecom에서 제공하는 SK-VM에도 이런 SPEC을 가지고 휴대전화의 특성에 맞는 기능, 예를 들어 진동 기능이나, SMS를 컨트롤하는 기능 들을 구현하고 있다. 그림에서 보듯이 CLDC는 MIDP와 OEM-Specific Classes의 기본이 되고 있다.
          * [http://zeropage.org/~dduk/development/j2me/midp-2_0-fr-spec-ko.zip midp 2.0 한국어 스펙]
  • JavaScript/2011년스터디/7월이전 . . . . 1 match
          * http://www.synapsoft.co.kr/11/recruit1.jsp 의 스펙을 읽고 Map을 화면에 띄움.
  • JollyJumpers/Celfin . . . . 1 match
         using namespace std;
  • JollyJumpers/Leonardong . . . . 1 match
          seriesChar = inputString.split()
  • JollyJumpers/iruril . . . . 1 match
          String [] stringArray = buf.split(" ");
  • JollyJumpers/강희경 . . . . 1 match
         using namespace std;
  • JollyJumpers/곽세환 . . . . 1 match
         using namespace std;
  • JollyJumpers/김회영 . . . . 1 match
         using namespace std;
  • JollyJumpers/문보창 . . . . 1 match
         using namespace std;
  • JollyJumpers/신재동 . . . . 1 match
          String [] numbersStr = line.split(" ");
  • JollyJumpers/오승균 . . . . 1 match
         using namespace std;
  • JollyJumpers/이승한 . . . . 1 match
         using namespace std;
  • JollyJumpers/임인택3 . . . . 1 match
         > Pid = spawn(jolly:jollyInt/0).
  • JollyJumpers/조현태 . . . . 1 match
         namespace JollyJumpers
          String[] textNums = text.Split(' ');
  • JollyJumpers/허아영 . . . . 1 match
         using namespace std;
  • KIV봉사활동/예산 . . . . 1 match
          * [http://item.gmarket.co.kr/challenge/neo_goods/goods.asp?goodscode=129914186 모기장] : 20500 원
  • Karma . . . . 1 match
         [http://www.yearofmoo.com/2013/01/full-spectrum-testing-with-angularjs-and-karma.html]
  • Knapsack . . . . 1 match
         === specfication ===
  • KnapsackProblem/김태진 . . . . 1 match
         using namespace std;
  • KnightTour/재니 . . . . 1 match
         using namespace std;
  • LCD-Display/김상섭 . . . . 1 match
         using namespace std;
  • LightMoreLight/문보창 . . . . 1 match
         using namespace std;
  • LightMoreLight/허아영 . . . . 1 match
         using namespace std;
  • Linux/디렉토리용도 . . . . 1 match
          * /var/spool/mail : 수신 메일을 사용자 명으로 기록하는 디렉토리'''
  • LinuxSystemClass/Exam_2004_1 . . . . 1 match
          'split scheduling' 은 LWP 에서의 문제점이다.
  • LionsCommentaryOnUnix . . . . 1 match
         에릭 레이먼드의 사전에 [http://watson-net.com/jargon/jargon.asp?w=Lions+Book Lions+Book] 라고 등재되어 있는 이 유서 깊은 책은 처음에는 불법복제판으로 나돌다가(책 표지에 한 명은 망보고 한 명은 불법 복제하는 그림이 있다) 드디어 정식 출간하게 되었다. 유닉스의 소스 코드와 함께 주석, 그리고 라이온의 "간단 명료 쌈박"한 커멘트가 함께 실려있다.
  • LoadBalancingProblem . . . . 1 match
          - [http://ipsc.ksp.sk/problems/ipsc2002/b.php 원래 문제 링크]
  • LongestNap/문보창 . . . . 1 match
         using namespace std;
  • LoveCalculator/zyint . . . . 1 match
         using namespace std;
  • MFC/Control . . . . 1 match
         이외에도 common control 로서 애니메이트 컨트롤, tree 컨트롤, spin button 등의 컨트롤 들이 존재한다.
  • MFC/Serialize . . . . 1 match
          (float, double, BYTE, int, LONG, WORD, DWORD, CObject*, CString, SIZE, CSize, POINT, CPoint, RECT, CRect, CTime, CTimeSpan 이 오버라이딩 되어있다.)
         Introspection 기능이 있는 다른 언어들에서의 Serialize 하는 모습에 대해서는 반드시 관찰해볼 필요가 있음.~ --[1002]
  • MFCStudy_2001/MMTimer . . . . 1 match
          wsprintf((LPSTR) pThis->m_strOutput, "CTmrprocView::TimerProc() Called. Count = %ld", ++pThis->m_cCount);
  • MIT박사가한국의공대생들에게쓴편지 . . . . 1 match
         http://www.allblog.net/GoPage/goPageFrame.aspx?http%3a%2f%2focomet.jaram.org%2ftt%2findex.php%3fpl%3d158 에서 퍼옴.
  • MagicSquare/동기 . . . . 1 match
         using namespace std;
  • MagicSquare/영록 . . . . 1 match
         using namespace std;
  • MagicSquare/은지 . . . . 1 match
         using namespace std;
  • MagicSquare/재니 . . . . 1 match
         using namespace std;
  • MagicSquare/정훈 . . . . 1 match
         using namespace std;
  • Map/곽세환 . . . . 1 match
         using namespace std;
  • Map/권정욱 . . . . 1 match
         using namespace std;
  • Map/노수민 . . . . 1 match
         using namespace std;
  • Map/박능규 . . . . 1 match
         using namespace std;
  • Map/임영동 . . . . 1 match
         using namespace std;
  • Map/조재화 . . . . 1 match
         using namespace std;
  • Map/황재선 . . . . 1 match
         using namespace std;
  • Map연습문제/곽세환 . . . . 1 match
         using namespace std;
  • Map연습문제/김홍선 . . . . 1 match
         using namespace std;
  • Map연습문제/나휘동 . . . . 1 match
         using namespace std;
  • Map연습문제/박능규 . . . . 1 match
         using namespace std;
  • Map연습문제/유주영 . . . . 1 match
         using namespace std;
  • Map연습문제/임민수 . . . . 1 match
         using namespace std;
  • Map연습문제/임영동 . . . . 1 match
         using namespace std;
  • Map연습문제/조동영 . . . . 1 match
         using namespace std;
  • Map연습문제/조재화 . . . . 1 match
         using namespace std;
  • Map연습문제/황재선 . . . . 1 match
         using namespace std;
  • Marbles/문보창 . . . . 1 match
         using namespace std;
  • Marbles/신재동 . . . . 1 match
         using namespace std;
  • Metaphor . . . . 1 match
         Choose a system metaphor to keep the team on the same page by naming classes and methods consistently. What you name your objects is very important for understanding the overall design of the system and code reuse as well. Being able to guess at what something might be named if it already existed and being right is a real time saver. Choose a system of names for your objects that everyone can relate to without specific, hard to earn knowledge about the system. For example the Chrysler payroll system was built as a production line. At Ford car sales were structured as a bill of materials. There is also a metaphor known as the naive metaphor which is based on your domain itself. But don't choose the naive metaphor unless it is simple enough.
  • MineSweeper/곽세환 . . . . 1 match
         using namespace std;
  • MineSweeper/김상섭 . . . . 1 match
         using namespace std;
  • MineSweeper/김회영 . . . . 1 match
         using namespace std;
  • MineSweeper/문보창 . . . . 1 match
         using namespace std;
  • MineSweeper/신재동 . . . . 1 match
         using namespace std;
  • MineSweeper/허아영 . . . . 1 match
         using namespace std;
  • Minesweeper/이도현 . . . . 1 match
         using namespace std;
  • MoinMoinDiscussion . . . . 1 match
         Talk about the things on MoinMoinTodo and MoinMoinIdeas in this space...
  • MoinMoinDone . . . . 1 match
          * SGML-Entities were replaced when saving them a second time, i.e. & #160; without the space had a problem.
          * SpamSpamSpam appeared 3 times in WordIndex. Too much Spam!
  • MoinMoinFaq . . . . 1 match
         anonymously. Correcting spelling, formatting, or trivial word changes
  • MoinMoinWikis . . . . 1 match
          * [http://compsoc.dur.ac.uk/~tsp/cgi-bin/triki.cgi TrikiWiki] (private wiki for the Transformers holiday - uses a mildly hacked MoinMoin)
  • MoniWiki . . . . 1 match
         MoniWiki is a PHP based WikiEngine. WikiFormattingRules are imported and inspired from the MoinMoin. '''Moni''' is slightly modified sound means '''What ?''' or '''What is it ?''' in Korean and It also shows MoniWiki is nearly compatible with the MoinMoin.
  • MoniWikiACL . . . . 1 match
         * @ALL protect deletefile,deletepage,rename,rcspurge,rcs,chmod,backup,restore
  • MoniWikiPlugins . . . . 1 match
          * rcspurge
  • Monocycle/김상섭 . . . . 1 match
         using namespace std;
  • Monocycle/조현태 . . . . 1 match
         using namespace std;
  • MoreMFC . . . . 1 match
          DispatchMessage (&msg);
  • MultiplyingByRotation/곽세환 . . . . 1 match
         using namespace std;
  • MultiplyingByRotation/문보창 . . . . 1 match
         using namespace std;
  • MySQL . . . . 1 match
         [http://zeropage.org/pub/MySQL-manual-split/manual_toc.html MySQL 도움말] : ZeroPage 내부에 두었으며, MySQL의 완전한 도움말
  • MySQL/PasswordFunctionInJava . . . . 1 match
          if(aStr.charAt(i) == ' ' || aStr.charAt(i) == '\t') continue; /* skipp space in password */
  • NUnit/C#예제 . . . . 1 match
         namespace NUnitByCShop
  • NamedPipe . . . . 1 match
          0, // not suspended
  • NumberBaseballGame . . . . 1 match
         === specfication ===
  • NumberBaseballGame/동기 . . . . 1 match
         using namespace std;
  • NumberBaseballGame/성재 . . . . 1 match
         using namespace std;
  • NumberBaseballGame/영록 . . . . 1 match
         using namespace std;
  • NumberBaseballGame/은지 . . . . 1 match
         using namespace std;
  • NumberBaseballGame/재니 . . . . 1 match
         using namespace std;
  • NumberBaseballGame/정훈 . . . . 1 match
         using namespace std;
  • NumericalAnalysisClass/Report2002_2 . . . . 1 match
         (4) Compute and plot the cubic N-spline S3(x)
  • OOP/2012년스터디 . . . . 1 match
         using namespace std;
  • Ones/문보창 . . . . 1 match
         using namespace std;
  • OpenCamp/두번째 . . . . 1 match
          * 후기는 내가 일등. 상대적으로 어려운 주제여서 그런지 사람이 좀 적었습니다. 조촐하게 했네요. 제 세션은 실습이라 시간은 매우 매우 길게 잡았음에도 불구하고 시간이 모자라더군요. 내가 하는 것과 같이 하는것의 차이를 극명하게 느낄수 있었습니다. 첫번째 보다는 speaker의 발표력이 조금은 나아졌다고 느겼습니다. 저도 자바에 대해 잘 몰랐기 때문에 유용한 세미나 였습니다. 이로써 항상 1학년에 맞춰주던 zeropage에서 벗어난 느낌입니다. 앞으로고 이런 고급 주제를 다루었으면 좋겠습니다. - [안혁준]
  • OperatingSystem . . . . 1 match
         In computing, an operating system (OS) is the system software responsible for the direct control and management of hardware and basic system operations. Additionally, it provides a foundation upon which to run application software such as word processing programs and web browsers.
  • OptimizeCompile . . . . 1 match
         ==== Reduction of space consumption ====
  • OurMajorLangIsCAndCPlusPlus/2006.2.06/김상섭 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/2006.2.06/하기웅 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/2006.2.06/허준수 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/print/하기웅 . . . . 1 match
         using namespace std;
         [OurMajorLangIsCAndCPlusPlus/print]
  • OurMajorLangIsCAndCPlusPlus/print/허준수 . . . . 1 match
         using namespace std;
  • PNGFileFormat/ImageData . . . . 1 match
          * [http://www.faqs.org/rfcs/rfc1950.html RFC-1950 (zlib spec.)]
  • PPProject/20041001FM . . . . 1 match
         using namespace std;
  • PairProgramming토론 . . . . 1 match
         이런 상황에서는 SoloProgramming이 낫다는 말을 하고 싶을 겁니다. 왕초보는 왕초보대로 짜고, 왕도사는 또 자기 마음대로(full-speed로) 짜고. 하지만, 이건 기본적으로 잘못된 관점에서 오는 문제입니다. 제대로 된 PairProgramming은 전체 팀은 물론 각 개인에게도 모두 이득을 줍니다.
  • Pairsumonious_Numbers/권영기 . . . . 1 match
         using namespace std;
  • Pairsumonious_Numbers/김태진 . . . . 1 match
         using namespace std;
  • ParserMarket . . . . 1 match
         Use a special pagename {{{~cpp ["parser/yourParser.py"]}}} and start your parser with the line {{{~cpp
  • PerformanceTest . . . . 1 match
          elasped_time = *(__int64*)&end - *(__int64*)&start;
  • Plugin/Chrome/네이버사전 . . . . 1 match
          var photos = req.responseXML.getElementsByTagName("photo");
  • PokerHands/Celfin . . . . 1 match
         using namespace std;
  • PokerHands/문보창 . . . . 1 match
         using namespace std;
  • Polynomial . . . . 1 match
         === specification ===
  • PolynomialCoefficients/문보창 . . . . 1 match
         using namespace std;
  • PowerOfCryptography/문보창 . . . . 1 match
         using namespace std;
  • PragmaticVersionControlWithCVS/CommonCVSCommands . . . . 1 match
         work> # then reset the flags in our workspace
  • PreviousFrontPage . . . . 1 match
         A WikiWikiWeb is a collaborative hypertext environment, with an emphasis on easy access to and modification of information. This wiki is also part of the InterWiki space.
  • PrimaryArithmetic/1002 . . . . 1 match
          one,two = eachLine.split()
  • PrimaryArithmetic/sun . . . . 1 match
          String [] numbers = line.split( " " );
  • PrimaryArithmetic/문보창 . . . . 1 match
         using namespace std;
  • PrimaryArithmetic/허아영 . . . . 1 match
         using namespace std;
  • PrimaryArithmetic/황재선 . . . . 1 match
          n1, n2 = raw_input().split()
  • PrimeNumberPractice . . . . 1 match
         using namespace std;
  • ProgrammingPearls . . . . 1 match
         || ["ProgrammingPearls/Column6"] || Perspective On Performance ||
         || ["ProgrammingPearls/Column10"] || Squeezing Space ||
  • ProgrammingPearls/Column6 . . . . 1 match
         == Perspective on Programming ==
  • ProgrammingWithInterface . . . . 1 match
         상속을 사용하는 상황을 국한 시켜야 할 것같다. 상위 클래스의 기능을 100%로 사용하면서 추가적인 기능을 필요로 하는 객체가 필요할 때! .. 이런 상황일 때는 상속을 사용해도 후풍이 두렵지 않을 것 같다. GoF의 책이나 다른 DP의 책들은 항상 말한다. 상속 보다는 인터페이스를 통해 다형성을 사용하라고... 그 이유를 이제야 알 것같다. 동감하지 않는가? Base 클래스를 수정할 때마다 하위 클래스를 수정해야 하는 상황이 발생한다면 그건 인터페이스를 통해 다형성을 지원하는게 더 낫다는 신호이다. 객체는 언제나 [[SOLID|SRP (Single Responsiblity Principle)]]을 지켜야 한다고 생각한다.
         상위 클래스가 가지는 메소드가 적다면 모두 [오버라이딩]하는 방법이 있지만 만약 귀찮을 정도로 많은 메소드가 있다면 오랜 시간이 걸릴 것이다. 그리고 만약 상위 클래스가 수정된다면 다시 그 여파가 하위 클래스에게 전달된다. 또 다른 방법으로 함수를 오버라이딩하여 예외를 던지도록 만들어 원치않는 호출을 막을 수 있지다. 하지만 이는 컴파일 타임 에러를 런타임 에러로 바꾸는 것이다. 그리고 LSP (Liskov Sustitution Principle : "기반 클래스는 파생클래스로 대체 가능해야 한다") 원칙을 어기게 된다. 당연히 ArrayList를 상속받은 Stack은 clear 메소드를 사용할 수 있어야 한다. 그런데 예외를 던지다니 말이 되는가?
  • ProjectCCNA/Chapter5 . . . . 1 match
          - 이더넷 인터페이스(라우터에서 내부 컴퓨터방향), 시리얼 인터페이스(인터넷 혹은 다른 라우터, 그러니까 isp업체방향)
  • ProjectGaia . . . . 1 match
          * [http://camellia.cse.cau.ac.kr/fs/FSBBS/board.asp?tb=fs_table&code=05484 수업 게시판]
  • ProjectGaia/계획설계 . . . . 1 match
          - 페이지ID | 첫RecordID | FreeSpace | ptrToFree -
          - FreeSpace -
          * LSP(Last Slot Pointer)는 슬롯에 있는 ID를 B-Search하기 위해서 가장 안쪽 슬롯의 위치를 가리키도록 함.
          * 삽입의 경우.. {{{~cpp FreeSpace>Slot_Size+Record_Size}}}와 비교후에 수행
          master page의 page 수를 읽고 가장 마지막 page로 간 다음, page header의 freespace size를 삽입 예정 레코드의 크기와 비교하여, 만약 해당 page에 충분한 공간이 있다면 그대로 추가 입력, 충분한 공간이 없다면 다음 page를 생성하고 넣어주는 비신장 가변길이 방법을 이용한다.
  • ProjectLegoMindstorm . . . . 1 match
          * [http://mindstorms.lego.com/eng/Hong_Kong_dest/Default.aspx 레고 마인드스톰 홈피]
  • ProjectPrometheus/CollaborativeFiltering . . . . 1 match
          *When a user does a specific well-defined action, bookPref is updated as "prefCoef*userPref+bookPref" and resorted. (some books at the end of the list might be eliminated for performance reasons)
  • PyIde . . . . 1 match
          * http://codespeak.net/pypy/ - 순수 파이썬으로 구현하는 python 이라고 한다. 관심이 가는중.
  • PyIde/Scintilla . . . . 1 match
         configFileAbsolutePath = os.path.abspath("stc-styles.rc.cfg")
         SetViewWhiteSpace(boolean)
  • PythonThreadProgramming . . . . 1 match
          time.sleep(sleeptime) #sleep for a specified amount of time.
  • PythonXmlRpc . . . . 1 match
          print "Dispatching: " , method, params
  • RUR-PLE . . . . 1 match
          * [RUR-PLE/Newspaper]
  • Random Walk2/곽세환 . . . . 1 match
         using namespace std;
  • RandomFunction . . . . 1 match
         using namespace std;
  • RandomWalk . . . . 1 match
         === specfication ===
  • RandomWalk/김아영 . . . . 1 match
         using namespace std;
  • RandomWalk/대근 . . . . 1 match
         using namespace std;
  • RandomWalk/문원명 . . . . 1 match
         using namespace std;
  • RandomWalk/변준원 . . . . 1 match
         using namespace std;
  • RandomWalk/성재 . . . . 1 match
         using namespace std;
  • RandomWalk/손동일 . . . . 1 match
         using namespace std;
  • RandomWalk/신진영 . . . . 1 match
         using namespace std;
  • RandomWalk/유상욱 . . . . 1 match
         using namespace std;
  • RandomWalk/이진훈 . . . . 1 match
         using namespace std;
  • RandomWalk/재니 . . . . 1 match
         using namespace std;
  • RandomWalk/종찬 . . . . 1 match
         using namespace std;
  • RandomWalk/창재 . . . . 1 match
         using namespace std;
  • RandomWalk/현민 . . . . 1 match
         using namespace std;
  • RandomWalk2/ClassPrototype . . . . 1 match
         using namespace std;
  • RandomWalk2/Leonardong . . . . 1 match
         using namespace std;
  • RandomWalk2/Vector로2차원동적배열만들기 . . . . 1 match
         using namespace std;
          * array보다 vector를 먼저 가르치는 대표적인 책으로 "진정한 C++"을 가르친다는 평가를 받고 있는Seminar:AcceleratedCPlusPlus
  • RandomWalk2/상규 . . . . 1 match
         using namespace std;
  • RandomWalk2/현민 . . . . 1 match
         using namespace std;
  • Randomwalk/조동영 . . . . 1 match
         using namespace std;
  • Refactoring/BigRefactorings . . . . 1 match
          * You have a class that is doing too much work, at least in part through many conditional statements.[[BR]]''Create a hierarchy of classes in which each subclass represents a special case.''
  • Refactoring/MakingMethodCallsSimpler . . . . 1 match
         A method returns a special code to indicate an error.
  • Refactoring/SimplifyingConditionalExpressions . . . . 1 match
          if ( _isPartTime) return 0;
         if (isSpecialDeal()){
         if (isSpecialDeal())
          * A method has conditional behavior that does not make clear the normal path of execution [[BR]] ''Use guard clauses for all the special cases.''
          double getSpeed() {
          return getBaseSpeed();
          return getBaseSpeed() - getLoadFactor() * _numberofCoconuts;
          return (_isNailed) ? 0 : getBaseSpeed(_voltage);
          │getSpeed │
         │getSpeed │ │getSpeed │ │getSpeed │
  • ReleasePlanning . . . . 1 match
         When the final release plan is created and is displeasing to management it is tempting to just change the estimates for the user stories. You must not do this. The estimates are valid and will be required as-is during the iteration planning meetings. Underestimating now will cause problems later. Instead negotiate an acceptable release plan. Negotiate until the developers, customers, and managers can all agree to the release plan.
  • ReverseAndAdd/Celfin . . . . 1 match
         using namespace std;
         bool isPanline;
          while(!isPanline)
          isPanline=true;
          isPanline=false;
          isPanline = false;
  • ReverseAndAdd/곽세환 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/김회영 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/문보창 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/이승한 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/허아영 . . . . 1 match
         using namespace std;
         bool isPalindrome(unsigned int *num, unsigned int length)
          bool isPal = false;
          isPal = true;
          isPal = true;
          isPal = false;
          return isPal;
          if(isPalindrome(store_numbers, length))
  • Robbery/조현태 . . . . 1 match
         using namespace std;
  • RoboCode/msm . . . . 1 match
         Upload:msm.NspAvenger_1.0.jar
  • RubyLanguage/Expression . . . . 1 match
         if song.artist == "Gillespie" then
  • SOLDIERS/송지원 . . . . 1 match
         using namespace std;
  • SOLDIERS/정진경 . . . . 1 match
         using namespace std;
  • STL/VectorCapacityAndReserve . . . . 1 match
         using namespace std;
  • STL/list . . . . 1 match
         using namespace std;
  • STL/map . . . . 1 match
         using namespace std;
  • STL/search . . . . 1 match
         using namespace std;
  • STL/set . . . . 1 match
         using namespace std;
  • STL/sort . . . . 1 match
         using namespace std;
  • STL/vector . . . . 1 match
         using namespace std;
  • STL/참고사이트 . . . . 1 match
         The Code Project, C++/STL/MFC 에 대한 소개 http://www.codeproject.com/cpp/stlintroduction.asp
         ObjectSpace 예제 : ObjectSpace는 300개가 넘는 예제를 가지고 있고, 따라서 초보자에게 아주 좋은 출발점을 제시해준다. ftp://butler.hpl.hp.com/stl/examples.zip
  • STLErrorDecryptor . . . . 1 match
         using namespace std;
  • Scheduled Walk/김홍선 . . . . 1 match
         using namespace std;
  • Scheduled Walk/소영&재화 . . . . 1 match
         using namespace std;
  • ScheduledWalk/권정욱 . . . . 1 match
         using namespace std;
  • ScheduledWalk/승균 . . . . 1 match
         using namespace std;
  • ScheduledWalk/유주영 . . . . 1 match
         using namespace std;
  • ScheduledWalk/임인택 . . . . 1 match
          String startPoint[] = pos.split(" ");
  • ScheduledWalk/재니&영동 . . . . 1 match
         using namespace std;
  • ScheduledWalk/진영&세환 . . . . 1 match
         using namespace std;
  • ScheduledWalk/창섭&상규 . . . . 1 match
          * 판의 모든 곳에 자취가 남았는지 확인할 수 있다.(IsAllCellsPassed)
         using namespace std;
          bool IsAllCellsPassed()
          while(MyBoard->IsAllCellsPassed()==false || journey->IsFinished()==false)
  • Score/1002 . . . . 1 match
         def ox(aList): return sum((len(e)*(len(e)+1))/2 for e in aList.split("X") if e!='')
  • Self-describingSequence/문보창 . . . . 1 match
         using namespace std;
  • Self-describingSequence/조현태 . . . . 1 match
         using namespace std;
  • SeminarHowToProgramIt . . . . 1 match
          * Coding Style -- esp. How to Name it (프로그래머를 위한 정명학. "子曰 必也正名乎...名不正則言不順 言不順則事不成" <논어> 자로편)
          * 참관자(aka Spectator) : 그들을 구경할 사람. (이 분들은 이 팀과 저 팀은 어떻게 다르게 하더라, 그 팀은 뭐를 하고, 그 팀은 뭐를 안하더라, 그랬더니 나중에 요렇게 저렇게 고생을 하더라 등의 관찰을 하고, 토론시에 언급해 주시면 모두에게 도움이 되겠습니다)
  • SeparationOfConcerns . . . . 1 match
          * http://www.acm.org/classics/may96/ - 해당 논문에서 추후 ResponsibilityDrivenDesign 에 해당되는 내용도 같이 있다. (72년 논문이란다.. 72년.;)
  • ServerBackup . . . . 1 match
         gpg --passphrase #{PASSWORD} --no-use-agent -c file
  • ServiceOrientedProgramming . . . . 1 match
          * [http://www.openwings.org/download/specs/ServiceOrientedIntroduction.pdf Introduction to service oriented programming]
  • ShellSort/문보창 . . . . 1 match
         using namespace std;
  • Shoemaker's_Problem/곽병학 . . . . 1 match
         using namespace std;
  • Shoemaker's_Problem/김태진 . . . . 1 match
         using namespace std;
  • Slurpys/곽세환 . . . . 1 match
         using namespace std;
  • Slurpys/문보창 . . . . 1 match
         using namespace std;
  • SmallTalk/강좌FromHitel/소개 . . . . 1 match
          ^MessageBox notify: i displayString
  • SmallTalk_Introduce . . . . 1 match
          ^MessageBox notify: i displayString
  • SmithNumbers/남상협 . . . . 1 match
         using namespace std;
  • SmithNumbers/문보창 . . . . 1 match
         using namespace std;
  • SmithNumbers/신재동 . . . . 1 match
         using namespace std;
  • SmithNumbers/이도현 . . . . 1 match
          sprintf(string, "%d", num);
  • SpiralArray/세연&재니 . . . . 1 match
         using namespace std;
  • SpiralArray/영동 . . . . 1 match
         using namespace std;
         [SpiralArray]
  • StackAndQueue/손동일 . . . . 1 match
         using namespace std;
  • StacksOfFlapjacks/문보창 . . . . 1 match
         using namespace std;
  • StacksOfFlapjacks/이동현 . . . . 1 match
         using namespace std;
  • Star/조현태 . . . . 1 match
         using namespace std;
  • Steps/김상섭 . . . . 1 match
         using namespace std;
  • Steps/문보창 . . . . 1 match
         using namespace std;
  • Steps/조현태 . . . . 1 match
         using namespace std;
  • Steps/하기웅 . . . . 1 match
         using namespace std;
  • SummationOfFourPrimes/김회영 . . . . 1 match
         using namespace std;
  • SummationOfFourPrimes/문보창 . . . . 1 match
         using namespace std;
  • SuperMarket/세연/재동 . . . . 1 match
         using namespace std;
  • SuperMarket/인수 . . . . 1 match
         using namespace std;
  • SuperMarket/재니 . . . . 1 match
         using namespace std;
  • TAOCP . . . . 1 match
         책사야겠네... [http://kangcom.com/common/bookinfo/bookinfo.asp?sku=199711260004 강컴]보다 싼 데 있으면 알려줘~~
  • TAOCP/BasicConcepts . . . . 1 match
          I - 인덱스(the index specification). 값이 1~6으로 rI1~rI6에 있는 내용과 메모리 주소를 더함
  • TCP/IP 네트워크 관리 / TCP/IP의 개요 . . . . 1 match
          *Transport layer : 양 종단 사이의 에러점검과 보정을 제공
  • TFP예제/Omok . . . . 1 match
          Position = string.split (Position, ",")
  • TFP예제/WikiPageGather . . . . 1 match
          lines = string.split (lines, "\n")
  • TabletPC . . . . 1 match
         see also : http://www.microsoft.com/windowsxp/tabletpc/default.asp
  • Telephone . . . . 1 match
          " "(''space'') .(마침표) ,(쉼표) !(느낌표)
         === Spec 실행 예 ===
         === Spec 추가사항 ===
  • TermProject/재니 . . . . 1 match
         using namespace std;
  • TextAnimation/권정욱 . . . . 1 match
         using namespace std;
  • The Trip/Celfin . . . . 1 match
         using namespace std;
  • TheGrandDinner/조현태 . . . . 1 match
         using namespace std;
  • TheGrandDinner/하기웅 . . . . 1 match
         using namespace std;
  • TheJavaMan/비행기게임 . . . . 1 match
         ||Plane||.||hp,speed,move,misile||.||
  • TheJavaMan/숫자야구 . . . . 1 match
          dispose(); // 모든 자원을 반납한다.
  • TheKnightsOfTheRoundTable/김상섭 . . . . 1 match
         using namespace std;
  • TheKnightsOfTheRoundTable/문보창 . . . . 1 match
         using namespace std;
  • TheKnightsOfTheRoundTable/하기웅 . . . . 1 match
         using namespace std;
  • TheKnightsOfTheRoundTable/허준수 . . . . 1 match
         using namespace std;
  • TheLagestSmallestBox/김상섭 . . . . 1 match
         using namespace std;
  • TheLagestSmallestBox/하기웅 . . . . 1 match
         using namespace std;
  • TheLargestSmallestBox/문보창 . . . . 1 match
         using namespace std;
  • TheLargestSmallestBox/허준수 . . . . 1 match
         using namespace std;
  • ThePriestMathematician/김상섭 . . . . 1 match
         using namespace std;
  • ThePriestMathematician/문보창 . . . . 1 match
         using namespace BigMath;
  • TheTrip/곽세환 . . . . 1 match
         using namespace std;
  • TheTrip/김상섭 . . . . 1 match
         using namespace std;
  • TheTrip/문보창 . . . . 1 match
         using namespace std;
  • TheTrip/이승한 . . . . 1 match
         using namespace std;
  • TheTrip/허아영 . . . . 1 match
         using namespace std;
  • ThinkRon . . . . 1 match
         --NoSmok:HerbertSimon from http://civeng1.civ.pitt.edu/~fie97/simonspeech.html
  • TopicMap . . . . 1 match
         Could you provide a more involved example markup and its corresponding rendering? As far as I understand it, you want to serialize a wiki, correct? You should ask yourself what you want to do with circular references. You could either disallow them or limit the recursion. What does "map" do? See also wiki:MeatBall:TransClusion''''''. -- SunirShah
  • TowerOfCubes/조현태 . . . . 1 match
         using namespace std;
  • Trace . . . . 1 match
         using namespace std;
  • TugOfWar/김회영 . . . . 1 match
         //using namespace std;
  • TugOfWar/문보창 . . . . 1 match
         using namespace std;
  • TugOfWar/이승한 . . . . 1 match
         using namespace std;
  • USACOYourRide/신진영 . . . . 1 match
         using namespace std;
  • UglyNumbers/김회영 . . . . 1 match
         using namespace std;
  • UglyNumbers/문보창 . . . . 1 match
         using namespace std;
  • UglyNumbers/송지원 . . . . 1 match
         using namespace std;
  • UpgradeC++ . . . . 1 match
          * 참가자 : [김태훈], [조재화], [이슬이], 남보담([spaurh]), [조응택]
  • UpgradeC++/과제2 . . . . 1 match
         using namespace std;
  • UserStoriesApplied . . . . 1 match
         Mike Cohn's User Stories Applied shows how software teams can drive development through user stories, simple, clear, brief descriptions of functionality valuable to real users. It covers user role modeling, gathering stories, working with managers, trainers, salespeople, and other proxies, writing user stories for acceptance testing, and using stories to prioritize, set schedules, and estimate release costs.
  • Vaccine . . . . 1 match
         || Kaspersky Anti Viru || 0 ||
  • VendingMachine/세연 . . . . 1 match
         using namespace std;
  • VendingMachine/세연/재동 . . . . 1 match
         using namespace std;
  • VendingMachine/재니 . . . . 1 match
         using namespace std;
  • VitosFamily/Celfin . . . . 1 match
         using namespace std;
  • WERTYU/Celfin . . . . 1 match
         using namespace std;
  • WERTYU/문보창 . . . . 1 match
         using namespace std;
  • WERTYU/허아영 . . . . 1 match
         using namespace std;
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 1 match
         http://blog.naver.com/declspec?Redirect=Log&logNo=10092640244
  • WebLogicSetup . . . . 1 match
         == JSP 등록 ==
          * JSP는 따로 등록해줄 필요가 없다.
         http://localhost:7001/nameOfFile.jsp 의 형식을 취한다.
  • WeightsAndMeasures/김상섭 . . . . 1 match
         using namespace std;
  • WeightsAndMeasures/문보창 . . . . 1 match
         using namespace std;
  • WeightsAndMeasures/신재동 . . . . 1 match
          numsStr = raw_input().split(' ')
  • WeightsAndMeasures/황재선 . . . . 1 match
          weight, strength = map(int, data.split())
  • WheresWaldorf/Celfin . . . . 1 match
         using namespace std;
  • WhyWikiWorks . . . . 1 match
          * any and all information can be deleted by anyone. Wiki pages represent nothing but discussion and consensus because it's much easier to delete flames, spam and trivia than to indulge them. What remains is naturally meaningful.
  • WinCVS . . . . 1 match
          * [http://aspn.activestate.com/ASPN/Downloads/ActiveTcl] ActiveTCL을 받자
  • XML/Csharp . . . . 1 match
         [http://www.c-sharpcorner.com/UploadFile/shehperu/SimpleXMLParser11292005004801AM/SimpleXMLParser.aspx Simple XML Parser in C#]
  • XMLStudy_2002/Resource . . . . 1 match
          *첫번째 : 다운로드 페이지로 이동 [http://msdn.microsoft.com/xml/general/xmlparser.asp] 안되면 MSDN 다운로드 페이지에서 다운받는다.
  • XOR삼각형/aekae . . . . 1 match
         using namespace std;
  • XOR삼각형/곽세환 . . . . 1 match
         using namespace std;
  • XpQuestion . . . . 1 match
         각 Practice 를 공부를 하다보면, 저것들이 이루어지기 위해서 공부해야 할 것들이 더 있음을 알게 된다. (의식적으로 알아낼 수 있어야 한다고 생각한다.) Refactoring 을 잘하기 위해선 OOP 와 해당 언어들을 더 깊이있게 이해할 필요가 있으며 (언어에 대해 깊은 이해가 있으면 똑같은 일에 대해서도 코드를 더 명확하고 간결하게 작성할 수 있다.) CrcCard 를 하다보면 역시 OOP 와 ResponsibilityDrivenDesign 에 대해 공부하게 될 것이다. Planning 을 하다보면 시간관리책이나 일거리 관리책들을 보게 될 것이다. Pair 를 하다보면 다른 사람들에게 자신의 생각을 명확하게 표현하는 방법도 '공부'해야 할 것이다. 이는 결국 사람이 하는 일이기에. 같이 병행할 수 있고, 더 중요한 것을 개인적으로 순위를 정해서 공부할 수 있겠다.
  • XpWeek . . . . 1 match
         [http://www.okjsp.pe.kr/upload/Agile_Voice.zip 기민한 문화 이야기]를 안 보신 분은 꼭 보고 오셨으면 합니다.
         http://www.mockobjects.com/MocksObjectsPaper.html
  • XpWeek/20041220 . . . . 1 match
         10시 30분~12시 : 기민한 문화 이야기 [http://www.okjsp.pe.kr/upload/Agile_Voice.zip 음성PPT] 보기
  • XpWeek/20041222 . . . . 1 match
         [http://kin.naver.com/browse/db_detail.php?d1id=1&dir_id=10106&docid=722107 jsp에서 ms타임을 년시분초로 바꾸어주는 방법]
  • Yggdrasil/temp . . . . 1 match
         using namespace std;
  • Z&D토론/학회명칭토론 . . . . 1 match
         See Also [http://zeropage.org/jsp/board/thin/?table=open&service=view&command=list&page=0&id=5086&search=&keyword=&order=num 2002년1월30일회의록]
  • Z&D토론백업 . . . . 1 match
         참고 : [http://zeropage.org/jsp/board/thin/?table=open&service=view&command=list&page=3&id=4926&search=&keyword=&order=num 2002년1월7일회의록]
  • ZIM/ConceptualModel . . . . 1 match
         ["ZIM/CRCCard"] : Class Responsiblity Collaborate Cards 가 아닌 '''Concept''' R... 입니다.
  • ZPHomePage . . . . 1 match
         들어오고 있죠~!! 근데 JSP를 잘 모르겠어요...-0-; --[윤성만]
         상금도 결정되었는데 얼렁 공지 올려요~.. 그런데... 집에서 jsp가 안되요... 톰캣이랑 jdk랑 다 잘 깔았는데... [윤성만]
  • ZeroPage . . . . 1 match
          * ZeroPage 가이드북 발간 - '''코드의 바다를 여행하는 ZeroPager를 위한 안내서''' [https://drive.google.com/file/d/0B5V4LW7YTwbjeDdDZk9ITmhvWmM/edit?usp=sharing 가이드북]
  • ZeroPageServer/계정신청상황 . . . . 1 match
         '''z''':ZeroPage Server 계정 '''m''': MySQL 계정 '''c''':CVS 계정 '''r''':메일을 보낸 여부, '''j''' : jsp권한 처리
  • ZeroPageServer/계정신청상황2 . . . . 1 match
          * z:ZeroPage Server Telnet 계정 m: MySQL 계정 c:CVS 계정 r:답변 메일을 보낸 여부, j : jsp권한 처리
  • ZeroWikian . . . . 1 match
          * [spaurh]
  • [Lovely]boy^_^/3DLibrary . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/Diary/12Rest . . . . 1 match
          * I modify above sentence.--; I test GetAsyncKeyState(), but it's speed is same with DInput.--; How do I do~~~?
  • [Lovely]boy^_^/Diary/2-2-9 . . . . 1 match
          * It's a first week after a mid-exams. I desperated at mid-exams, so I decide to study hard.
  • [Lovely]boy^_^/Diary/7/8_14 . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/Temp . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/BrokenNecklace . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/GreedyGiftGivers . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/MixingMilk . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/PrimePalinDromes . . . . 1 match
         using namespace std;
         bool IsPrime(const int& n);
         bool IsPalinDromes(const string& str);
          if(IsPalinDromes(IntConvertToString(i)))
          if(IsPrime(i))
         bool IsPalinDromes(const string& str)
         bool IsPrime(const int& n)
  • [Lovely]boy^_^/USACO/WhatTimeIsIt? . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/YourRideIsHere . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/[Lovely]boy^_^/USACO/Barn . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/영작교정 . . . . 1 match
          * I tried desperately to prevent the disaster.
  • abced reverse . . . . 1 match
         using namespace std;
  • aekae/* . . . . 1 match
         using namespace std;
  • callusedHand/projects/algorithms . . . . 1 match
          * '''IPSC''' http://ipsc.ksp.sk/
  • canvas . . . . 1 match
         using namespace std;
  • crossedladder/곽병학 . . . . 1 match
         using namespace std;
  • django/ModifyingObject . . . . 1 match
          # If the PK has been manually set, respect that.
  • eclipse단축키 . . . . 1 match
          * 문자열 "sysout" + Ctrl + Space : System.out.println(); 자동완성
         == Ctrl + Space ==
          * References in workspace 참조하고 있는 메소드 보여준다.
  • erunc0/OOP_UML . . . . 1 match
         http://www.codeproject.com/cpp/oopuml.asp
  • geniumin . . . . 1 match
         == Special Ability of Geniumin.. ==
          * spade..
  • hanoitowertroublesagain/이도현 . . . . 1 match
         using namespace std;
  • html5/drag-and-drop . . . . 1 match
          * http://dev.w3.org/html5/spec/dnd.html
  • html5/geolocation . . . . 1 match
         ||speed||진행 속도||
  • html5/others-api . . . . 1 match
          * http://cafe.naver.com/tonkjsp.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=1727
  • html5/문제점 . . . . 1 match
          9.HTML 5 standard or Google/Apple spec?:
  • html5practice/roundRect . . . . 1 match
          * roundRect function 는 [http://js-bits.blogspot.com/2010/07/canvas-rounded-corner-rectangles.html 이용] 하였음.
  • iText . . . . 1 match
         package spike;
  • java/reflection . . . . 1 match
          * classpath를 이용해 현재 프로젝트내의 class가 아닌 외부 패키지 class의 method를 호출하는 방법.
  • koi_aio/권영기 . . . . 1 match
         using namespace std;
  • koi_cha/곽병학 . . . . 1 match
         using namespace std;
  • minesweeper/Celfin . . . . 1 match
         using namespace std;
  • radiohead4us/PenpalInfo . . . . 1 match
         Comments: Hi~ I'm preety girl.*^^* I'm not speak english well. But i'm want good friend and study english.
  • sort/권영기 . . . . 1 match
         using namespace std;
  • study C++/ 한유선 . . . . 1 match
          using namespace std;
  • usa_selfish/권영기 . . . . 1 match
         using namespace std;
  • usa_selfish/김태진 . . . . 1 match
         using namespace std;
  • whiteblue/LinkedListAddressMemo . . . . 1 match
         using namespace std;
  • whiteblue/MagicSquare . . . . 1 match
         using namespace std;
  • whiteblue/MyTermProject . . . . 1 match
         using namespace std;
  • whiteblue/NumberBaseballGame . . . . 1 match
         using namespace std;
  • whiteblue/만년달력 . . . . 1 match
         using namespace std;
  • whiteblue/자료구조다항식구하기 . . . . 1 match
         using namespace std;
  • whiteblue/파일읽어오기 . . . . 1 match
         using namespace std;
  • wiz네처음화면 . . . . 1 match
          * zero one zero - six seven one two - four eight seven six (to keep from a spam ad.)
  • zennith/MemoryHierarchy . . . . 1 match
         3. Spartial Locality
         Q: Spartial Locality의 의미는 하위계층에 이왕 한번 접근하는거 그때 유닛단위로 묶어서 여러개 가져와서 나중에 필요할때 쓴다는 말인가여? 그렇다면 그렇게 유닛 단위로 묶는 기준은 뭐에여? - 상협
          A: 각각의 계층마다 다릅니다. 캐쉬에서 쓰이는 unit 과 가상메모리에서 쓰이는 page 의 크기 차이는 큽니다. 다만, spartial locality 를 위해서 사용된다는 점은 같겠죠.. 좀더 상세한 설명을 원하신다면.. 제게 개인적으로 물어보시거나, 아니면 공부 하시길 -["zennith"]
  • zennith/w2kDefaultProcess . . . . 1 match
         Spoolsrv.exe - 작업관리자에서 종료 불가
         스풀된 프린트/팩스 작업을 책임지는 spooler service
  • 가위바위보 . . . . 1 match
         === specfication ===
  • 가위바위보/동기 . . . . 1 match
         using namespace std;
  • 가위바위보/성재 . . . . 1 match
         using namespace std;
  • 가위바위보/영록 . . . . 1 match
         using namespace std;
  • 가위바위보/재니 . . . . 1 match
         using namespace std;
  • 강성현 . . . . 1 match
          * [Spring/탐험스터디] (2011.1 - 2)
          * Spring과 Java EE 개발에 대해 잘 모르는 채로 진행해서 이해도가 낮았음
         var array = text.replace(/\r\n|\r|\n/, ' ').split(' ').sort();
  • 강희경 . . . . 1 match
          *[http://www.kukkiwon.or.kr/tkskill/pomsae_index.asp?div=3]국기원
  • 개인키,공개키/강희경,조동영 . . . . 1 match
         using namespace std;
  • 개인키,공개키/김회영,권정욱 . . . . 1 match
         using namespace std;
  • 개인키,공개키/노수민,신소영 . . . . 1 match
         using namespace std;
  • 개인키,공개키/박능규,조재화 . . . . 1 match
         using namespace std;
  • 개인키,공개키/임영동,김홍선 . . . . 1 match
         using namespace std;
  • 구구단/aekae . . . . 1 match
         using namespace std;
  • 구구단/강희경 . . . . 1 match
         using namespace std;
  • 구구단/곽세환 . . . . 1 match
         using namespace std;
  • 구구단/김상윤 . . . . 1 match
         using namespace std;
  • 구구단/문원명 . . . . 1 match
         using namespace std;
  • 구구단/민강근 . . . . 1 match
         using namespace std;
  • 구구단/방선희 . . . . 1 match
         using namespace std;
  • 구구단/변준원 . . . . 1 match
         using namespace std;
  • 구구단/손동일 . . . . 1 match
         using namespace std;
  • 구조체 파일 입출력 . . . . 1 match
         using namespace std;
  • 권순의 . . . . 1 match
          * [https://docs.google.com/document/d/19UPP_2PVOo8xFJTEP-gHCx2gUoCK2B8qIEe09bviCIk/edit?usp=sharing 혼자 깔짝거리는 Linux Kernel]
          * [English Speaking/2011년스터디]
  • 그래픽스세미나/1주차 . . . . 1 match
          * Raster-Scan Display
  • 금고/김상섭 . . . . 1 match
         using namespace std;
  • 금고/문보창 . . . . 1 match
         using namespace std;
  • 금고/조현태 . . . . 1 match
         using namespace std;
  • 금고/하기웅 . . . . 1 match
         using namespace std;
  • 김상윤 . . . . 1 match
         using namespace std;
  • 논문검색 . . . . 1 match
          * [http://journals.4spe.org/ SPE TECHNICAL JOURNAL]
  • 논문번역/2012년스터디/김태진 . . . . 1 match
         주의: 이론 7은 선형 독립적인 집합에서 모든 벡터가 앞선 벡터들의 선형결합이라고 말하지 않았다. 선형 독립적인 집합에 있는 벡터는 다른 벡터들의 선형결합이 되는데 실패할지도 모른다. 연습문제 3번을 봐라. 예시4는 의 선형 의존적인 u와v를 R3(3차원)의 어떤 집합{u,v,w}로 일반화한다. 그 집합 {u,v,w}는 평면에서 w가 u와 v로 span(평면화)되면 선형 독립적이다(필요충분).
  • 다이얼로그박스의 엔터키 막기 . . . . 1 match
          // TODO: Add your specialized code here and/or call the base class
  • 단어순서/방선희 . . . . 1 match
         using namespace std;
  • 데블스캠프2003/ToyProblems/Random . . . . 1 match
         using namespace std;
  • 데블스캠프2003/다루어볼문제와관련세미나 . . . . 1 match
          * ToyProblems 와같은 식이면 좋을것 같은데요. 1학년 텀프로젝트가 있는데 그것 하나만 가지고도 SP, OOP 등의 프로그래밍철학과, STL 등을 다루기에 좋을것 같습니다. ([http://zeropage.org/pds/200361434244/2003C++TrmPrjSpec.ppt spec]) SP 와 OOP 는.. 누가할지.. 맡게되면 고생을할수도 있겠군요. 아래 JuNe 선배님의 CSP 나.. Tuple Space (전에 P2P 관련 문서에서 본것같은 기억이..-_-a ) 등과는 약간 맞지 않을수도 있겠지만요. (그것은 다른 도메인의 문제와 다루는게 좋을듯합니다) - [임인택]
          * 세미나 기간 중에 하루 "Parellel/Distributed Computing for Dummies"를 해드릴 수 있습니다. CSP와 Tuple Space 등을 다루게 될 것 같습니다. 학생들은 서너명씩 팀을 이루어 수십대의 컴퓨터를 동원 어떤 문제를 해결하는 경이적인 체험을 하게 될 것입니다. --JuNe
  • 데블스캠프2005/RUR-PLE/Newspaper . . . . 1 match
         = 데블스캠프2005/RUR-PLE/Newspaper =
  • 데블스캠프2005/RUR-PLE/Newspaper/Refactoring . . . . 1 match
         = 데블스캠프2005/RUR-PLE/Newspaper/Refactoring =
  • 데블스캠프2005/RUR-PLE/Sorting . . . . 1 match
          if next_to_a_beeper():#inspect whether it's empty column or not
  • 데블스캠프2006/CPPFileInput . . . . 1 match
         using namespace std;
  • 데블스캠프2006/SSH . . . . 1 match
          * index.html, index.php, index.jsp 같이 index 는 기본 파일로 지정됨
  • 데블스캠프2006/SVN . . . . 1 match
         5. Add that folder and files except debug folder and .ncb, .vsp, .suo, useroptionfiles.
  • 데블스캠프2006/월요일/연습문제/if-else/김건영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/if-else/윤성준 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/if-else/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/성우용 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/윤성준 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/이차형 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/임다찬 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/switch/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/성우용 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/윤성준 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/이차형 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/임다찬 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/연습문제/기타문제/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/월요일/함수/문제풀이/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/성우용 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/윤성준 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/이송희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제1/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제2/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제2/윤성준 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제2/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제2/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제3/이송희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제3/이장길 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제3/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제3/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/성우용 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/이송희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/이장길 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/정승희 . . . . 1 match
         using namespace std;
  • 데블스캠프2006/화요일/pointer/문제4/주소영 . . . . 1 match
         using namespace std;
  • 데블스캠프2008 . . . . 1 match
          || 9시 ~ 12시 || [임영동] || 토이프로그래밍 1 || [이승한] || Emacs || [유상욱] || 객체지향 || [김동준] || 쿼터스 || [이병윤] || arp spoofing and sniffing ||
  • 데블스캠프2009/목요일/연습문제/MFC/김태욱 . . . . 1 match
         // The system calls this to obtain the cursor to display while the user drags
  • 데블스캠프2009/목요일/연습문제/MFC/박준호 . . . . 1 match
         // The system calls this to obtain the cursor to display while the user drags
  • 데블스캠프2009/목요일/연습문제/MFC/송지원 . . . . 1 match
         // The system calls this to obtain the cursor to display while the user drags
  • 데블스캠프2009/목요일/연습문제/MFC/정종록 . . . . 1 match
         // The system calls this to obtain the cursor to display while the user drags
  • 데블스캠프2009/월요일/연습문제/HTML-CSS/박준호 . . . . 1 match
         <div id="title"> <a herf="www.naver.com">&nbsp;</a> </div>
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/서민관 . . . . 1 match
         using namespace std;
  • 데블스캠프2010/다섯째날/ObjectCraft/미션2/서민관 . . . . 1 match
         using namespace std;
  • 데블스캠프2010/일반리스트 . . . . 1 match
         using namespace std;
  • 데블스캠프2011/넷째날/Git/권순의 . . . . 1 match
         using namespace std;
  • 데블스캠프2011/셋째날/String만들기/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2011/셋째날/난해한프로그래밍언어 . . . . 1 match
          * 아희 표준: http://puzzlet.springnote.com/pages/219209
  • 데블스캠프2011/셋째날/후기 . . . . 1 match
          * 진짜 난해하네요. 세상엔 참 골때리는 사람이 많아요. Shakespear언어를 어디에선가 보고 비슷한 방식 chef는 대체 어떻게 짜는 건지 궁금했는데 알게되어 좋았습니다. 우리도 0oOㅇ○로 코딩하는 Zero언어를 만들어볼까요?
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김준석 . . . . 1 match
         namespace TestWindowFormDevils
  • 데블스캠프2012/넷째날/묻지마Csharp/김태진 . . . . 1 match
         namespace WindowsFormsApplication1
  • 데블스캠프2012/넷째날/후기 . . . . 1 match
          * 실제로 강사 당사자가 '''5일간''' 배운 C#은 실무(현업) 위주라 객체지향 관점이라던가 이런건 많이 못 배웠습니다. 함수 포인터와 비슷한 Delegate라던가 Multi Thread를 백그라운드로 돌린다던가 이런건 웬지 어린 친구들이 멘붕할듯 하고 저도 확신이 없어 다 빼버렸지요 ㅋㅋㅋㅋㅋㅋ namespace와 partial class, 참조 추가 dll 갖고 놀기(역어셈을 포함하여) 같은걸 재밌게도 해보고 싶었지만 예제 준비할 시간이 부족했어요ㅠ_- 개인적으로 마지막 자유주제 프로그램은 민관 군 작품이 제일 좋았어요 ㅋㅋ - [지원]
  • 데블스캠프2012/셋째날/코드 . . . . 1 match
         = LLVM+Clang 맛 좀 봐라! && Blocks가 어떻게 여러분의 코딩을 도울 수 있을까? && 멀티코어 컴퓨팅의 핵심에는 Grand Central Dispatch가 =
  • 데블스캠프2012/셋째날/후기 . . . . 1 match
         = LLVM+Clang 맛 좀 봐라! && Blocks가 어떻게 여러분의 코딩을 도울 수 있을까? && 멀티코어 컴퓨팅의 핵심에는 Grand Central Dispatch가! =
  • 랜웍/이진훈 . . . . 1 match
         using namespace std;
  • 레밍딜레마 . . . . 1 match
         시리즈 물인데, 같은 시리즈의 하나인 혜영이가 남긴 감상 [http://zeropage.org/jsp/board/thin/?table=multimedia&service=view&command=list&page=0&id=145&search=&keyword=&order=num 네안데르탈인의 그림자] 와 같은 짧고 뜻 깊은 이야기이다. 왜 이 책을 통해서 질문법을 통한 실용적이며, 진짜 실행하는, 이루어지는 비전 창출의 중요성을 다시 한번 생각하게 되었다. ["소크라테스 카페"] 에서 저자가 계속 주장하는 질문법의 힘을 새삼 느낄수 있었다.
  • 렌덤워크/조재화 . . . . 1 match
         using namespace std;
  • 마방진/Leonardong . . . . 1 match
         using namespace std;
  • 마방진/곽세환 . . . . 1 match
         using namespace std;
  • 마방진/문원명 . . . . 1 match
         using namespace std;
  • 마방진/민강근 . . . . 1 match
         using namespace std;
  • 마방진/변준원 . . . . 1 match
         using namespace std;
  • 마방진/임민수 . . . . 1 match
         using namespace std;
  • 마방진/장창재 . . . . 1 match
         using namespace std;
  • 마방진/조재화 . . . . 1 match
         using namespace std;
  • 만년달력/강희경,Leonardong . . . . 1 match
         using namespace std;
  • 만년달력/방선희,장창재 . . . . 1 match
         using namespace std;
  • 만년달력/손동일,aekae . . . . 1 match
         using namespace std;
  • 만년달력/이진훈,문원명 . . . . 1 match
         using namespace std;
  • 만년달력/재니 . . . . 1 match
         using namespace std;
  • 명령줄 전달인자 . . . . 1 match
         using namespace std;
  • 몸짱프로젝트 . . . . 1 match
         [몸짱프로젝트/MinimalCostSpanningTree]
         || . || [몸짱프로젝트/DisplayPumutation] ||
  • 몸짱프로젝트/BinarySearchTree . . . . 1 match
         using namespace std;
  • 무엇을공부할것인가 . . . . 1 match
         There are some more skills that are especially important:
  • 문자반대출력/조현태 . . . . 1 match
         using namespace std;
  • 문자열검색/조현태 . . . . 1 match
         using namespace std;
  • 문자열연결/조현태 . . . . 1 match
         using namespace std;
  • 미로찾기/곽세환 . . . . 1 match
         using namespace std;
  • 미로찾기/이규완오승혁 . . . . 1 match
         #include <ctime> using namespace std;
  • 미로찾기/조현태 . . . . 1 match
         using namespace std;
  • 반복문자열/조현태 . . . . 1 match
         using namespace std;
  • 반복문자열/허아영 . . . . 1 match
         using namespace std;
  • 벡터/곽세환,조재화 . . . . 1 match
         using namespace std;
  • 벡터/권정욱 . . . . 1 match
         using namespace std;
  • 벡터/김수진 . . . . 1 match
         using namespace std;
  • 벡터/김태훈 . . . . 1 match
         using namespace std;
  • 벡터/김홍선,노수민 . . . . 1 match
         using namespace std;
  • 벡터/유주영 . . . . 1 match
         using namespace std;
  • 벡터/임민수 . . . . 1 match
         using namespace std;
  • 벡터/임영동 . . . . 1 match
         using namespace std;
  • 벡터/조동영 . . . . 1 match
         using namespace std;
  • 벡터/황재선 . . . . 1 match
         using namespace std;
  • 보드카페 관리 프로그램 . . . . 1 match
         using namespace std;
  • 보드카페 관리 프로그램/강석우 . . . . 1 match
         using namespace std;
  • 비밀키/강희경 . . . . 1 match
         using namespace std;
  • 비밀키/김홍선 . . . . 1 match
         using namespace std;
  • 비밀키/노수민 . . . . 1 match
         using namespace std;
  • 비밀키/박능규 . . . . 1 match
         using namespace std;
  • 비밀키/임영동 . . . . 1 match
         using namespace std;
  • 비밀키/조재화 . . . . 1 match
         using namespace std;
  • 비밀키/황재선 . . . . 1 match
         using namespace std;
  • 빵페이지/마방진 . . . . 1 match
         using namespace std;
  • 삼총사CppStudy/숙제1/곽세환 . . . . 1 match
         using namespace std;
  • 새싹교실/2011/데미안반 . . . . 1 match
          * A언어 : ALGOL을 말합니다. 고급 프로그래밍 언어(어셈블리나 기계어를 저급 프로그래밍 언어라고 합니다)로 각광받던 포트란ForTran에 대항하기 위해 유럽을 중심으로 개발된 프로그래밍 언어입니다. ALGOL은 Algorithm Language의 약자로서, 이름 그대로 알고리즘 연구개발을 위해 만들어졌습니다. 하지만 ALGOL은 특정한 프로그래밍 언어를 지칭하기 보다는 C언어나 파스칼과 같이 구조화된 프로그래밍 언어를 지칭하는 말(ALGOL-like programming language)로 쓰입니다. [http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=1040101&docId=68855131&qb=Q+yWuOyWtCBC7Ja47Ja0IEHslrjslrQ=&enc=utf8§ion=kin&rank=1&search_sort=0&spq=0&pid=ghtBIz331ywssZ%2BbORVssv--324794&sid=TYBj6x1TgE0AAE@GUeM 출처 링크! 클릭하세요:)]
  • 서지혜 . . . . 1 match
          1. English Speaking Study
          * see also [EnglishSpeaking/2012년스터디]
          * see also [Spring/탐험스터디]
          1. English Speaking Study
          * see also [EnglishSpeaking/2012년스터디]
          * see also [Spring/탐험스터디]
          1. [Spring/탐험스터디/wiki만들기]
          * Spring Study는 참 오래 하는듯
          * 하지만 아직도 beneficiary일 뿐 contributor가 아니다.. spring project에 기여하기 프로젝트를 했으면 어땟을까? 처음엔 작게 bug fix부터..
  • 성적처리프로그램 . . . . 1 match
         using namespace std;
  • 소수구하기/상욱 . . . . 1 match
         using namespace std;
          bool isPrimeNumber = true;
          isPrimeNumber = false;
          if (isPrimeNumber) {
          isPrimeNumber = true;
  • 소수구하기/영동 . . . . 1 match
         using namespace std;
  • 소수구하기/영록 . . . . 1 match
         using namespace std;
  • 손동일 . . . . 1 match
         using namespace std;
  • 숙제1/최경현 . . . . 1 match
         using namespace std;
  • 숫자를한글로바꾸기/조현태 . . . . 1 match
         using namespace std;
  • 숫자야구/ 변준원 . . . . 1 match
         using namespace std;
  • 숫자야구/Leonardong . . . . 1 match
         using namespace std;
  • 숫자야구/aekae . . . . 1 match
         using namespace std;
  • 숫자야구/강희경 . . . . 1 match
         using namespace std;
  • 숫자야구/곽세환 . . . . 1 match
         using namespace std;
  • 숫자야구/문원명 . . . . 1 match
         using namespace std;
  • 숫자야구/민강근 . . . . 1 match
         using namespace std;
  • 숫자야구/방선희 . . . . 1 match
         using namespace std;
  • 숫자야구/손동일 . . . . 1 match
         using namespace std;
  • 숫자야구/장창재 . . . . 1 match
         using namespace std;
  • 숫자야구/조재화 . . . . 1 match
         using namespace std;
  • 스택/Leonardong . . . . 1 match
         using namespace std;
  • 스택/aekae . . . . 1 match
         using namespace std;
  • 스택/조재화 . . . . 1 match
         using namespace std;
  • 시간맞추기/문보창 . . . . 1 match
         using namespace std;
  • 시간맞추기/조현태 . . . . 1 match
         using namespace std;
  • 식인종과선교사문제/조현태 . . . . 1 match
         using namespace std;
  • 실습 . . . . 1 match
         13) 오른쪽 Project Workspace 창에서 Class View Tab을 선택한다.
  • 실시간멀티플레이어게임프로젝트 . . . . 1 match
         시간이 되면 AspectOrientedProgramming을 현 프로젝트에 적용하는 방법을 알려드립니다.
  • 안전한장소패턴 . . . . 1 match
         [attachment:sp.jpg]
         실제로, 그룹 내에는 언제나 어느 정도의 개인적 충돌이나 불화가 있게 마련이다. 그런 이슈에 대해서 이야기 할 수 있도록 세션이 끝난 뒤에 사람들이 모이는 것(AfterHoursPattern)이 도움이 된다.
  • 안혁준 . . . . 1 match
         [http://local.wasp.uwa.edu.au/~pbourke/geometry/lineline3d/] 두 선분사이의 최단거리
  • 알고리즘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?
  • 알고리즘5주숙제/김상섭 . . . . 1 match
         using namespace std;
  • 알고리즘5주숙제/하기웅 . . . . 1 match
         using namespace std;
  • 알고리즘8주숙제/test . . . . 1 match
         using namespace std;
  • 알고리즘8주숙제/문보창 . . . . 1 match
         using namespace std;
  • 압축알고리즘/수진&재동 . . . . 1 match
         using namespace std;
  • 압축알고리즘/슬이,진영 . . . . 1 match
         using namespace std;
  • 오목/진훈,원명 . . . . 1 match
          // TODO: Add your specialized code here and/or call the base class
  • 웹에요청할때Agent바꾸는방법 . . . . 1 match
          theUrl = 'http://msdn2.microsoft.com/zh-cn/library/ms130214.aspx'
  • 위시리스트 . . . . 1 match
          * http://www.aladin.co.kr/shop/wproduct.aspx?ISBN=8991268838
  • 위키설명회2005/PPT준비 . . . . 1 match
         리스트: 공백과 * 한개; 1., a., A., i., I. 숫자로 된 items; 1.#n start numbering at n; space alone indents.
  • 유선 . . . . 1 match
          * spell with flickr 이걸로 배너같은걸로 대신해도 좋을듯... - [eternalbleu]
  • 윤성준 . . . . 1 match
         using namespace std;
  • 이승한/.vimrc . . . . 1 match
         set backspace=indent,eol,start
  • 이승한/질문 . . . . 1 match
         using namespace std;
  • 이영호/nProtect Reverse Engineering . . . . 1 match
         3. gcupdater(실행시 항상 서버에 접속하여 파일 3개를 받아온다. guardcat.exe, INST.dat, gc_proch.dll을 순서대로 받아와 자체적으로 wsprintf를 이용하여 복사한다.-아마 디버거에 API를 걸리기 싫었는지 모른다. createprocess로 guardcat.exe를 실행시킨다.)
  • 이영호/끄적끄적 . . . . 1 match
          sprintf(buf->name, "%s of %s",
          j==1?"Clubs":j==2?"Diamonds":j==3?"Hearts":"Spades");
  • 이차함수그리기/조현태 . . . . 1 match
         using namespace std;
  • 인터프리터/권정욱 . . . . 1 match
         using namespace std;
  • 임인택/AdvancedDigitalImageProcessing . . . . 1 match
          http://www.google.co.kr/url?sa=U&start=6&q=http://www.isprs.org/istanbul2004/comm4/papers/509.pdf&e=747
  • 임인택/삽질 . . . . 1 match
         <jsp:useBean id="User" class="common.User" scope="page" />
  • 자료병합하기/조현태 . . . . 1 match
         using namespace std;
  • 잔디밭/권순의 . . . . 1 match
         using namespace std;
  • 장용운 . . . . 1 match
          * 카스파로프(Kasparov, 회장)
  • 정규표현식/스터디/메타문자사용하기 . . . . 1 match
          ||{{{[:space:]}}} ||빈칸을 포함한 모든 공백문자 {{{[\f\n\r\t\v]}}} ||
  • 정규표현식/스터디/문자집합으로찾기 . . . . 1 match
         spac1.xls
  • 정렬/Leonardong . . . . 1 match
         using namespace std;
  • 정렬/aekae . . . . 1 match
         using namespace std;
  • 정렬/강희경 . . . . 1 match
         using namespace std;
  • 정렬/곽세환 . . . . 1 match
         using namespace std;
  • 정렬/문원명 . . . . 1 match
         using namespace std;
  • 정렬/민강근 . . . . 1 match
         using namespace std;
  • 정렬/방선희 . . . . 1 match
         using namespace std;
  • 정렬/변준원 . . . . 1 match
         using namespace std;
  • 정렬/손동일 . . . . 1 match
         using namespace std;
  • 정렬/조재화 . . . . 1 match
         using namespace std;
  • 정모/2002.7.11 . . . . 1 match
          * ["DeepAspectOnC"] - C 를 더 깊고 공부 하자는 스터디
  • 정모/2011.3.28 . . . . 1 match
          * [Spring/탐험스터디]
          * [김수경]은 SpringFramework를 공부하는 봄싹 스웨--터--거 3월 스터디에 참가함.
          * 널 sea sparrow로 날려버리겠어 - 해적
  • 정모/2011.3.7 . . . . 1 match
         = Weekly Retrospective =
          * [Spring/탐험스터디]
          * 사람이 적어 예전에 실패한 SpringSecurity를 이용하여 동네API와 OAuth 연동하는 실습을 함.
  • 정모/2011.4.4/CodeRace . . . . 1 match
         using namespace std;
  • 정모/2013.5.6/CodeRace . . . . 1 match
         namespace CodeRace
          s = line.Split(' ');
  • 정모/2013.9.4 . . . . 1 match
          * 클린 코드 : SRP(Single Responsibility Principle), DIP(Dependency Inversion Principle) 방식을 공부하였고 디자인패턴 중 템플릿 메소드에 대해서 공부하였습니다.그리고 스레드에 대해서 공부 하였습니다. trello와 github연동하는 방법이 있습니다.상당히 유용할 것같으므로 관심있으신분들은 조금만 찿아보시면 쉽게 하실수있습니다.
  • 정혜진 . . . . 1 match
         email: aspiry 골뱅이 한메일 점 넷
  • 제곱연산자 전달인자로 (Setting) . . . . 1 match
         using namespace std;
  • 조영준/CodeRace/130506 . . . . 1 match
         namespace CodeRace
          s = line.Split(' ');
  • 조재화 . . . . 1 match
          * csp
  • 중위수구하기/조현태 . . . . 1 match
         using namespace std;
  • 지금그때2004/토론20040331 . . . . 1 match
         == 회고(Retrospective) ==
  • 진법바꾸기/문보창 . . . . 1 match
         using namespace std;
  • 최소정수의합/조현태 . . . . 1 match
         using namespace std;
  • 큐/Leonardong . . . . 1 match
         using namespace std;
  • 큐/aekae . . . . 1 match
         using namespace std;
  • 큐/조재화 . . . . 1 match
         using namespace std;
  • 큰수찾아저장하기/문보창 . . . . 1 match
         using namespace std;
  • 큰수찾아저장하기/조현태 . . . . 1 match
         using namespace std;
  • 타도코코아CppStudy/0724/선희발표_객체지향 . . . . 1 match
          서브클래스가 수퍼클래스의 변수와 메소드들을 상속받을 때 필요에 따라 정의가 구체화(specification)되며, 상대적으로 상위층의 클래스 일수록 일반화(generalization) 된다고 말한다.
  • 타도코코아CppStudy/0728 . . . . 1 match
         using namespace std;
  • 타도코코아CppStudy/0811 . . . . 1 match
         || ZeroWiki:RandomWalk || 정우||Upload:class_random.cpp . || 왜 Worker가 Workspace를 상속받지? 사람이 일터의 한 종류야?--; 또 에러뜨네 cannot access private member. 이건 다른 클래스의 변수를 접근하려고 해서 생기는 에러임. 자꾸 다른 클래스의 변수를 쓰려 한다는건 그 변수가 이상한 위치에 있다는 말도 됨 ||
         || Seminar:SpiralArray || . || . || . ||
  • 타도코코아CppStudy/객체지향발표 . . . . 1 match
          서브클래스가 수퍼클래스의 변수와 메소드들을 상속받을 때 필요에 따라 정의가 구체화(specification)되며, 상대적으로 상위층의 클래스 일수록 일반화(generalization) 된다고 말한다.
  • 토이/숫자뒤집기/김정현 . . . . 1 match
          String[] strings= String.valueOf(num).split("");
  • 파스칼삼각형/Leonardong . . . . 1 match
         using namespace std;
  • 파스칼삼각형/aekae . . . . 1 match
         using namespace std;
  • 파스칼삼각형/강희경 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/곽세환 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/김홍기 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/문보창 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/문원명 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/손동일 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/송지원 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/윤종하 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/임상현 . . . . 1 match
         using namespace std;
  • 파스칼삼각형/조현태 . . . . 1 match
         using namespace std;
  • 파스칼의삼각형/조재화 . . . . 1 match
         using namespace std;
  • 파일 입출력 . . . . 1 match
         using namespace std;
  • 파일 입출력_1 . . . . 1 match
         using namespace std;
  • 파일 입출력_2 . . . . 1 match
         using namespace std;
  • 파일 입출력_3 . . . . 1 match
         using namespace std;
  • 페이지제목띄어쓰기토론 . . . . 1 match
         문제를 시스템과 관련해서 제한을 두지 말고 생각해봅시다. 한글 띄어쓰기가 더 사용하기에 좋은지, 아니면 붙여쓰더라도 별다른 불편이 없는지. 만약 띄어쓰는게 더 좋은 방법이라고 모인모인을 수정해볼수도 있겠죠? 예를들어, 한글의 경우 마음대로 띄어쓰기를 하는 경우가 중복된 페이지를 생성하는데 문제가 된다면, 검색시나 새로운 페이지 생성시 white space 를 제외한 검색으로 페이지를 보여줄수도 있겠지요. 생각해보면 다른 '구현' 방법도 찾을 수 있을것 같습니다. 문제는, '문제'자체가 어떠한게 더 좋은 방법인지를 이야기해보도록 합시다. -- 이선우
  • 포인터 swap . . . . 1 match
         using namespace std;
  • 프로그래머의편식 . . . . 1 match
         블로깅을 하다가 우연히 읽게 된 글인데 공감되는 부분이 많습니다. 원문은 [http://sparcs.kaist.ac.kr/~ari/each/article.each.469.html 여기]에 있습니다.
  • 프로그래밍/ACM . . . . 1 match
          * BigInteger, String.split, 대부분의 io 라이브러리 등 제한
  • 프로그래밍/DigitGenerator . . . . 1 match
          String [] bits = str.split("");
  • 프로그래밍/Score . . . . 1 match
          String [] group = line.split("X");
  • 프로그래밍/장보기 . . . . 1 match
          contents = line.split(" ");
  • 프로그래밍언어와학습 . . . . 1 match
         http://www.zdnet.co.kr/anchordesk/todays/jwkim/article.jsp?id=45258&forum=1 에 글에 대해서
          * 학교에서 C++ 배운다고 하드웨어 건드리나. -_-; (전전공이라면 몰라도..) 컴퓨터공학과의 경우 학교에서 C++ 배워도 어셈블러 레벨까지 다루는 사람이 별로 없다고 할때, C++ 을 배웠다고 시스템레벨 까지의 깊은 이해가 필요없었다는 점인데.. 글을 읽으면, 마치 '교육용 언어로 C, C++ 을 배웠다면 시스템 레벨까지 이해할 것' 처럼 쓴 것 같다고 생각. (C, C++ 포인터를 레퍼런스 이상의 개념으로 쓴적이 있었나.. --a) 차라리 '우리는 전전공 출신에 하드웨어제어 해본 사람 뽑습니다' 라고 할것이지..쩝. Domain-Specific 한 부분을 생각치 않고서는 시스템 프로그래머에게서는 늘 자바와 Script Language 는 '군인을 나약하게 만드는 무기' 일 수밖에 없으니까.
  • 프로그래밍잔치/첫째날 . . . . 1 match
          I. '''ZeroWiki Name Space 설명, 토론 앞으로의 발전 방향 토론 (["페이지이름"]) '''
          * namespace 의 첫번째 규칙 5
  • 피보나치/Leonardong . . . . 1 match
         using namespace std;
  • 피보나치/aekae . . . . 1 match
         using namespace std;
  • 피보나치/곽세환 . . . . 1 match
         using namespace std;
  • 피보나치/김상섭 . . . . 1 match
         using namespace std;
  • 피보나치/김상윤 . . . . 1 match
         using namespace std;
  • 피보나치/김정현 . . . . 1 match
         using namespace std;
  • 피보나치/김홍선 . . . . 1 match
         using namespace std;
  • 피보나치/문원명 . . . . 1 match
         using namespace std;
  • 피보나치/민강근 . . . . 1 match
         using namespace std;
  • 피보나치/방선희 . . . . 1 match
         using namespace std;
  • 피보나치/손동일 . . . . 1 match
         using namespace std;
  • 피보나치/이동현,오승혁 . . . . 1 match
         using namespace std;
  • 피보나치/조재화 . . . . 1 match
         using namespace std;
  • 피보나치/조현태 . . . . 1 match
         using namespace std;
  • 하노이탑/윤성복 . . . . 1 match
         using namespace std;
  • 하노이탑/이재혁김상섭 . . . . 1 match
         using namespace std;
  • 하노이탑/조현태 . . . . 1 match
         using namespace std;
  • 하욱주/Crap . . . . 1 match
         using namespace std;
  • 한자공/시즌1 . . . . 1 match
          * Window -> Preference 에서 General -> Workspace로 들어간 뒤 Text file encoding을 Other(UTF-8)로 변경.
  • 허아영/Cpp연습 . . . . 1 match
         using namespace std;
  • 현종이 . . . . 1 match
         using namespace std;
  • 호너의법칙/조현태 . . . . 1 match
         using namespace std;
  • 후각발달특별세미나 . . . . 1 match
         using namespace std;
Found 1414 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.4759 sec