E D R , A S I H C RSS

Full text search for "key"

key


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 몸짱프로젝트/BinarySearchTree . . . . 70 matches
          def setNode(self, aNode, aKey):
          aNode.setKey(aKey)
          def getNode(self, aNode, aKey):
          if aNode.key == aKey or aNode.key == -1:
          elif aNode.key > aKey:
          return self.getNode( aNode.left, aKey )
          return self.getNode( aNode.right, aKey )
          def search(self, aRoot, aKey):
          if aRoot == None or aRoot.key == -1:
          elif aRoot.key == aKey:
          elif aRoot.key > aKey:
          return self.search( aRoot.left, aKey )
          return self.search( aRoot.right, aKey )
          def insert(self, aRoot, aKey):
          if self.search( aRoot, aKey ) == False:
          node = self.getNode(aRoot, aKey)
          self.setNode( node, aKey )
          def delete(self, aRoot, aKey):
          if self.search( aRoot, aKey ) == True:
          node = self.getNode(aRoot, aKey)
  • 서민관 . . . . 37 matches
          void (*put)(char *key, int value);
          int (*get)(char *key);
          BOOL (*contains)(char *key);
          void (*remove)(char *key);
         void put(char *key, int value);
         int get(char *key);
         BOOL contains(char *key);
         void removePairFromMap(char *key);
         typedef struct KeyValuePair {
          char *key;
          struct KeyValuePair *next;
         } KeyValuePair;
         // functions for KeyValuePair List
         KeyValuePair *createPair(char *key, int value) {
          KeyValuePair *ret = (KeyValuePair *)malloc(sizeof(KeyValuePair));
          memset(ret, 0, sizeof(KeyValuePair));
          ret->key = (char *)malloc(sizeof(char) * (strlen(key) + 1));
          strcpy(ret->key, key);
         void removePair(KeyValuePair **pair) {
          free((*pair)->key);
  • InvestMulti - 09.22 . . . . 35 matches
          '''if user.has_key(ID) == False:'''
          temp = ID + nation.keys()[i] + items.keys()[j]
          print 'This Nation has these items :: ' ,items.keys()[0] ,' , ', items.keys()[1]
          print items.keys()[0] , ' :: ' , items.values()[0] , ' bytes '
          print items.keys()[1] , ' :: ' , items.values()[1] , ' bytes '
          print '1. ' ,items.keys()[0]
          print '2. ' ,items.keys()[1]
          INVEST = user[ID] + user[NATION] +items.keys()[0]
          print 'You invested to ' , items.keys()[0], 'as much ', quantity , 'in', user[NATION]
          INVEST = user[ID] + user[NATION] + items.keys()[1]
          print 'You invested to ' , items.keys()[1], 'as much ', quantity , 'in', user[NATION]
          print 'This Nation has these items :: ' ,items.keys()[0] ,' , ', items.keys()[1]
          print items.keys()[0] , ' :: ' , items.values()[0] , ' bytes '
          print items.keys()[1] , ' :: ' , items.values()[1] , ' bytes '
          temp = ID + nation.keys()[i] + items.keys()[j]
          print items.keys()[j] , ' in ' , nation.keys()[i] , ' : ', user[temp]
          print 'This Nation has these items :: ' ,items.keys()[0] ,' , ', items.keys()[1]
          print items.keys()[0] , ' :: ' , items.values()[0] , ' bytes '
          print items.keys()[1] , ' :: ' , items.values()[1] , ' bytes '
          print '1. ' ,items.keys()[0]
  • 숫자야구/장창재 . . . . 28 matches
          int key_first = rand()%10;
          int key_second = rand()%10;
          while (key_first == key_second)
          key_second= rand()%10;
          int key_third = rand()%10;
          while (key_first == key_third || key_second == key_third)
          key_third = rand()%10;
          int key = key_first*100 + key_second*10 + key_third;
          cout << key_first << key_second << key_third << endl;
          while (i != key)
          if (key_first == input_first)
          if (key_second == input_second)
          if (key_third == input_third)
          if (key_first == input_second)
          if (key_first == input_third)
          if (key_second == input_third)
          if (key_second == input_first)
          if (key_third == input_first)
          if (key_third == input_second)
  • ClassifyByAnagram/sun . . . . 26 matches
          * genKey() 메소드의 성능 개선. qsort2([http://www.cs.bell-labs.com/cm/cs/pearls/sortanim.html ProgrammingPerals 참고]) 이용.
          Object key = genKey( str );
          Object value = result.get( key );
          result.put( key, list );
          private Object genKey( String str )
          Object key = genKey( str );
          Object value = result.get( key );
          result.put( key, list );
          private Object genKey( String str )
          StringBuffer keyBuf = new StringBuffer( table.size()*2 );
          Object keyElement;
          for( Enumeration e=table.keys(); e.hasMoreElements(); ) {
          keyElement = e.nextElement();
          keyBuf.append( keyElement );
          keyBuf.append( table.get( keyElement ));
          return keyBuf.toString();
          Object key = genKey( str );
          Object value = result.get( key );
          result.put( key, list );
          private Object genKey( String str )
  • OpenGL스터디_실습 코드 . . . . 24 matches
          * 1. use up, down, left, right key in your key board. then its direction of viewpoint will be changed.
         //angle change in case of finding key event command.
         void SpecialKeys(int key, int x, int y)
          if(key == GLUT_KEY_UP)
          if(key == GLUT_KEY_DOWN)
          if(key == GLUT_KEY_LEFT)
          if(key == GLUT_KEY_RIGHT)
          if(key > 356.0f)
          if(key < -1.0f)
          if(key > 356.0f)
          if(key < -1.0f)
          glutSpecialFunc(SpecialKeys);
          * 1. use up, down, left, right key in your key board to move star in that way.
         //key event function
         void SpecialKeys(int key, int x, int y)
          if(key == GLUT_KEY_DOWN)
          else if(key == GLUT_KEY_UP)
          else if(key == GLUT_KEY_LEFT)
          else if(key == GLUT_KEY_RIGHT)
          if(key > 365.0f)
  • 2학기파이선스터디/ 튜플, 사전 . . . . 19 matches
         - 매핑형에서는 키(key)를 이용해 값(value)에 접근하다.
         1. D.keys() : 사전에서 키들을 리스트로 리턴
         3. D.items() : (key, value) 리스트로 리턴
         4. D.has_key(key) : 멤버십 테스트. D가 key를 가지고 있는가 검사. 있으면 참(1), 없으면 거짓(0)을 리턴.
          key in D 와 같다.
         7. D.get(key , x) : 값이 존재하면 D[key] 즉 값을 리턴, 아니면 x를 리턴
         8. D.setdefalut(key , x) : get 과 같으나 값이 존재하지 않을 때 값을 설정 (D[key] = x)
         9. D.update(b) : for k in b.keys(): D[k]=b[k] 즉, 사전 b의 아이템들을 D에 추가시킨다.
         >>> for key in D.keys():
          print key, D[key]
         >>> for key in D:
          print key, D[key]
  • 10학번 c++ 프로젝트/소스 . . . . 16 matches
          char key;
          key=getch();
          if(key=='1')
          char key=getch();
          if(key=='1') // 모드 전환
          if(key=='3') //스탑워치 출발
          key=getch();
          if(key=='3') //일시정지
          key=getch();
          if(key=='1') // 모드 전환
          if(key=='2')
          key=getch();
          if(key=='1') // 모드 전환
          if(key=='3') // 일시정지 시점부터 다시시작
          key=getch();
          if(key=='1') // 모드 전환
  • 방울뱀스터디/만두4개 . . . . 14 matches
         def keypress(event = None):
          global key
          key = event.keysym
          print key
          if key in ['Right', 'Left', 'Up', 'Down', 'Space']:
          dir = key
          if direction == 'Right' and key != 'Right':
          elif direction == 'Left' and key != 'Left':
          elif direction == 'Up' and key != 'Up':
          elif direction == 'Down' and key != 'Down':
          #elif key in ['Space']:
          # if key in ['Right', 'Left', 'Up', 'Down']:
          root.bind("<Key>", keypress)
  • 비밀키/권정욱 . . . . 13 matches
          int key1, key2;
          cin >> key1;
          ch = text + key1;
          cin >> key2;
          if (key1 != key2) {
          ch = text - key2;
          int key;
          cin >> key;
          ch = text[i] + key;
          cout << "키값은 : " << key << "입니다.\n";
          fout << "키값은 : " << key << "입니다.\n";
  • AseParserByJhs . . . . 12 matches
          //pM->bRotKey = TRUE;
          pM->bRotKey = TRUE;
          pM->bPosKey = TRUE;
         // pM->AddKeyNum (); // == pM->keyNum++
          pM->rotkeyNum++;
          pM->poskeyNum++;
          pNodeList [i]->SetKeyNum (1);
          if (!pNodeList [i]->bPosKey)
          pNodeList [i]->poskeyNum = 1;
          if (!pNodeList [i]->bRotKey)
          pNodeList [i]->rotkeyNum = 1;
          if (pNodeList [i]->rotkeyNum > 1)
          pNodeList [i]->SetKeyNum (pNodeList [i]->rotkeyNum);
          if (pNodeList [i]->poskeyNum > pNodeList [i]->rotkeyNum)
          pNodeList [i]->SetKeyNum (pNodeList [i]->poskeyNum);
         // fscanf (s, "%d", &(pM->pRotKey[nTmpCount].time)); fgetchar ();
          fscanf (s, "%d", &(pM->pRotKey[nTmpCount].time)); fgetchar ();
          if (pM->pRotKey[nTmpCount].time > *max_time) *max_time = pM->pRotKey[nTmpCount].time;
         // AngleAxis2Quat (&pM->pRotKey[nTmpCount].q, v, -t);
          AngleAxis2Quat (&pM->pRotKey[nTmpCount].q, v, t);
  • ZeroPageServer/SubVersion . . . . 12 matches
          * rsa key pair 를 만들어서 키를 등록하는 방법
          Linux 계정이 있다면 ssh-keygen 을 이용해서 생성시키는 방법도 존재한다. 이 방법이 훨씬더 빠르게 생성된다.
         3. key comment 를 알아보기 쉽게 변경한다. 단순히 키의 주석을 다는 것이므로 아무걸로 해도 무관하다.
          keyphrase 는 주의해서 만들어야한다. 이는 private-key에 암호를 부여하는 기능으로 키파일이 악의적
         4. Save Public Key 를 눌러서 키를 저장한다.
          상단에 Public key for pasting into OpenSSH authorized_keys file 란에 있는 내용을 복사해서
          ~/.ssh/authorized_keys 에 붙여넣는다. (내용을 전체를 복사해야 된다. 그렇지 않으면 인증이 안된다. 전체는 한줄로 이루어진다)
          authorized_keys known_hosts
          root@zeropage:~/.ssh# vi authorized_keys
         5. Save Private Key 룰 눌러서 키를 저장한다.
          {{{~cpp PubkeyAuthentication yes}}}[[HTML(<BR/>)]]
          {{{~cpp AuthorizedKeysFile %h/.ssh/authorized_keys}}}[[HTML(<BR/>)]]
  • 비행기게임/BasisSource . . . . 12 matches
          (event.type == KEYDOWN and event.key==K_ESCAPE):
          if event.type == KEYDOWN :
          if event.key == K_0 :
          keystate = pygame.key.get_pressed()
          direction1 = keystate[K_RIGHT] - keystate[K_LEFT]
          direction2 = keystate[K_DOWN] - keystate[K_UP]
          firing = keystate[K_SPACE]
          for shot in pygame.sprite.groupcollide(shots,enemy_sprite,1,1).keys():
          for shot in pygame.sprite.groupcollide(shots,enemy_sprite,1,1).keys():
          for shot in pygame.sprite.groupcollide(item_sprite, player1, 1, 0).keys() :
  • SolarSystem/상협 . . . . 11 matches
         bool keys[256];
          case WM_KEYDOWN:
          keys[wParam] = TRUE;
          case WM_KEYUP:
          keys[wParam] = FALSE;
          if((active && !DrawGLScene()) || keys[VK_ESCAPE])
          if(keys[VK_F1])
          keys[VK_F1]=FALSE;
          if(keys[VK_LEFT])
          if(keys[VK_RIGHT])
          if(keys[VK_UP])
          if(keys[VK_DOWN])
          if(keys[VK_RETURN])
  • 로그인없이ssh접속하기 . . . . 11 matches
         a@A:~> ssh-keygen -t rsa
         Generating public/private rsa key pair.
         Enter file in which to save the key (/home/a/.ssh/id_rsa):
         Your public key has been saved in /home/a/.ssh/id_rsa.pub.
         The key fingerprint is:
         a@A:~> cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
         ssh b@B chmod 600 .ssh/authorized_keys
          * A에서 B 서버로 접속하기 위해서 는 A 에서 private_key 인 id_rsa 가 꼭 있어야 하고, 이것의 public_key 가 해당 B 서버의 authorized_keys 안에 추가되어 있어야 한다. authorized_keys 안에는 여러개를 넣을 수 있다.
  • Bigtable/DataModel . . . . 10 matches
         데이터 저장 형식은 3차원 테이블형태. 행(row key), 열(column), 깊이(timestamp)
          1. Key - value
          1. row key : url(또는 데이터값의 대표, 제목등)
          1. + 마지막 row key
          1. 약 64KB마다 존재하는 row key를 블록의 인덱스로 한다.
          1. 명시적인 자료구조가 아니라 SSTable에서 row key들로 구분되어진 범위이다.
          1. 블록 인덱스로 선택된 row key부터 다음 블록 인덱스로 선택된 row key가 나올 때 까지를 하나의 블록 단위로 한다.
          1. 태블릿 ID(row key)와 태블릿 서버 매핑해줌.
          1. key : 태블릿 ID(row key)
  • JavaScript/2011년스터디/URLHunter . . . . 10 matches
          function keyevent(){
          switch(event.keyCode){
          <body onload="init();" onkeydown="keyevent();">
         document.onkeydown = KeyInput;
         function KeyInput(e){
          var code = (window.event)? window.event.keyCode: e.which;
          function keyboard(){
          switch(event.keyCode){
          <body onload="firprint();" onkeydown="keyboard();">
  • Omok/상규 . . . . 10 matches
         #define UP_KEY 0x48
         #define DOWN_KEY 0x50
         #define LEFT_KEY 0x4B
         #define RIGHT_KEY 0x4D
         #define ESC_KEY 0x1B
         #define SPACE_KEY 0x20
          int key;
          key=getch();
          if(key==NULL)
          key=getch();
          if(key==UP_KEY && y>0) y--;
          else if(key==DOWN_KEY && y<18) y++;
          else if(key==LEFT_KEY && x>0) x--;
          else if(key==RIGHT_KEY && x<18) x++;
          else if(key==SPACE_KEY)
          } while(key!=ESC_KEY);
  • Omok/은지 . . . . 10 matches
          int key;
          key = getch();
          if (key == NULL)
          key = getch();
          if (key == up)
          else if (key == down)
          else if (key == right)
          else if (key == left)
          if (key == space)
         }while(key != esc);
  • Omok/재니 . . . . 10 matches
         int key, x = 9, y = 9;
          key = getch();
          if (key == 0x20)
          if (key == 0x1b)
          if(key == 0x00)
          key = getch();
          if (key == 0x48)
          if (key == 0x50)
          if (key == 0x4b)
          if (key == 0x4d)
  • TkinterProgramming/Calculator2 . . . . 10 matches
         class Key(Button):
          def doKeypress(self, event):
          key = event.char
          if key != '\b':
          self.current = self.current + key
          def keyAction(self, key):
          self.display.insert(END, key)
          self.current = self.currnet + key
          KEY = 0
          keys = [
          ('7', 'Un-1', 'O', KC2, KEY, '7'),
          ('8', 'Vn-1', 'P', KC2, KEY, '8'),
          ('9', 'n', 'Q', KC2, KEY, '9'),
          ('X', '[', 'R', KC4, KEY, '*')],
          ('4', 'L4', 'T', KC2, KEY, '4'),
          ('5', 'L5', 'U', KC2, KEY, '5'),
          ('6', 'L6', 'V', KC2, KEY, '6'),
          ('-', ']', 'W', KC4, KEY, '-')],
          ('1', 'L1', 'Y', KC2, KEY, '1'),
          ('2', 'L2', 'Z', KC2, KEY, '2'),
  • html5practice/즐겨찾기목록만들기 . . . . 10 matches
          var key = "";
          key = localStorage.key(i);
          value = localStorage.getItem(key);
          pairs += "<tr><td onclick=doRemoveFavorite(this)>"+key+"</td>\n<td>"+value+"</td></tr>\n";
          var key = "";
          key = localStorage.key(i);
          value = localStorage.getItem(key);
          pairs += "<tr><td onclick=doSetFavorite(this)>"+key+"</td>\n<td>"+value+"</td></tr>\n";
  • 개인키,공개키/류주영,문보창 . . . . 10 matches
          int key = 74;
          //cin >> key;
          if((int(ch) + key) < 256)
          for(int j=0;j<key;j++)
          for(int j=0;j<((int(ch) + key)%256);j++)
          int key;
          cin >> key;
          if((int(ch) + key) < 256)
          for(int j=0;j<key;j++)
          for(int j=0;j<((int(ch) + key)%256);j++)
  • 새싹교실/2012/AClass/5회차 . . . . 10 matches
         int binary (int arr[], int low, int high, int key);
         int key;
         scanf("%d",&key);
         search=binary(arr,0,9,key);
         int binary(int arr[], int low, int high, int key)
         if(arr[mid]==key)
         else if(arr[mid]>key)
         int key;
         scanf("%d",&key);
         printf("%c",key+code[i]);
  • ErdosNumbers/임인택 . . . . 8 matches
          if allNames.has_key(name) and (minErdosNum == -1 or minErdosNum>allNames[name]) :
          self.assertEqual(True, allNames.has_key('Smith, M.N.'))
          self.assertEqual(True, allNames.has_key('Martin, G.'))
          self.assertEqual(True, allNames.has_key('Erdos, P.'))
          self.assertEqual(True, allNames.has_key('Reisig, W.'))
          self.assertEqual(True, allNames.has_key('Chen, X.'))
          self.assertEqual(True, allNames.has_key('Jablonski, T.'))
          self.assertEqual(True, allNames.has_key('Hsueh, Z.'))
  • Gnutella-MoreFree . . . . 8 matches
         이상적인 P2P는 e-Donkey라고 생각 되어진다. 물론 지금의 e-Donkey는 아니다. 내가 생각하는 부분으로
         고쳐져야 겠지. 하지만 지금의 e-Donkey처럼 개인이 서버를 가질 수 있고 또한 이 서버를 가지고 찾는
         라우팅시 연결된 모든 nodeList에서 key->Origin를 찾아내어 key->Origin를 제외한 모든 node에 받은 pong 또는 queryHit를 전달
         key_Value* key = m_pComm->m_TableRouting.FindValue(&Ping->Header.Guid);
         통해 받았던 핑인지 검사하고 if(key == NULL) 받았던 핑이 아니라 새로운 핑이라면 m_pComm->m_TableRouting.Insert(&Ping->Header.Guid, this) 처럼 라우팅 테이블에 넣고 Pong을 보내준다.
  • JavaScript/2011년스터디/JSON-js분석 . . . . 8 matches
          * toJSON에서 key를 파라메터로 넘기는 이유(코드내에서 사용하지는 않는다)
          Date.prototype.toJSON = function (key) {
          Boolean.prototype.toJSON = function (key) { // 왜 key를 넣는거지!!
          Boolean.prototype.toJSON = function (key) {
          * line 177 : Date.prototype.toJSON = function (key) 에서 key는 왜 넘겨주는가?
          * line 237 : value는 왜 holder[key]로 가져오는가?
  • MineFinder . . . . 8 matches
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=57&filenum=1 1차일부분코드] - 손과 눈에 해당하는 부분 코드를 위한 간단한 예제코드들 모음. 그리고 지뢰찾기 프로그램을 제어하는 부분들에 대해 Delegation 시도. (CMinerControler 클래스는 처음 '막 짠' 코드로부터 지뢰찾기 제어부분 함수들을 클래스화한것임)
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=58&filenum=1 1차제작소스]
         일종의 애니메이션을 하는 캐릭터와 같다. 타이머가 Key Frame 에 대한 이벤트를 주기적으로 걸어주고, 해당 Key Frame 에는 현재 상태에 대한 판단을 한뒤 동작을 한다. 여기서는 1초마다 MineSweeper 의 동작을 수행하게 된다.
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=59&filenum=1 2차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=60&filenum=1 3차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=60&filenum=2 4차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=61&filenum=1 5차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=62&filenum=1 6차제작소스]
          * [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=63&filenum=1 98호환버그수정소스]
  • ProgrammingLanguageClass/Report2002_1 . . . . 8 matches
         <condition> → <less_keyword> | <greater_keyword> | <equal_keyword>
         <less_keyword> → <
         <greater_keyword> → >
         <equal_keyword> → ==
          <greater_keyword> parsed.
          <greater_keyword> parsed.
  • R'sSource . . . . 8 matches
         global keyGamer
         keyGamer = name
         global keyRace
         keyRace = ''
          print '%s replay.' % keyGamer
          print '★★★ %s %d번째 페이지 탐색중....' % (keyGamer, flag)
          # pattern = re.compile('.*<a.*<a.*\"(http.*)\".*' + keyGamer + '.*')
          pattern = re.compile('.*<a.*<a.*\".(.*)\".*' + keyGamer + '.*')
  • ProjectPrometheus/AT_RecommendationPrototype . . . . 7 matches
          if self.bookViewList.has_key(aBook):
          if self.lightReviewBookList.has_key(aBook):
          if self.heavyReviewBookList.has_key(aBook):
          if self.bookViewList.has_key(aBook):
          if self.bookRelation.has_key(aBook):
          for book in self.bookRelation.keys():
          for book in self.bookRelation.keys():
  • 개인키,공개키/박능규,조재화 . . . . 7 matches
          int key=100;
          array[i]+=key;
          int open_key;
          cin >> open_key;
          array[i]+=open_key; //(256-key == open_key)
  • 개인키,공개키/박진영,김수진,나휘동 . . . . 7 matches
          int key = 70;
          result = int(ch) + key;
          int key1;
          cin >> key1;
          int key = 256-key1;
          result = int(ch) - key;
  • 유용한팁들 . . . . 7 matches
         a@A:~> ssh-keygen -t rsa
         Generating public/private rsa key pair.
         Enter file in which to save the key (/home/a/.ssh/id_rsa):
         Your public key has been saved in /home/a/.ssh/id_rsa.pub.
         The key fingerprint is:
         a@A:~> cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
         ssh b@B chmod 600 .ssh/authorized_keys
  • AcceleratedC++/Chapter7 . . . . 6 matches
         || '''Key''' || 요소의 검색을 위해서 사용되는 검색어. 한개의 요소를 다른 요소와 구분하는 역할을 한다. 키는 요소의 변경시에 변경되지 않는 값이다. 이에 반하여 vector의 인덱스는 요소의 제거와 추가시 인덱스가 변화한다. 참조)DB의 WikiPedia:Primary_key 를 알아보자. ||
          * 상기에서 지정된 map<string, int>는 "string에서 int로의 map"라는 용어로 부름. string type key, int type value
          * 최초로 등장한 string key에 대해서 map<k, v>은 새로운 요소를 생성. value-initialized.
          * map은 []연산자를 통해 키값을 통해서 접근이 가능하나, 이 경우 string type key이기 때문에 모든 배열의 요소를 돌기위해서 일반적인 방식을 선택하였다. map의 각각의 요소는 '''pair'''라는 자료의 타입으로 구성. map은 pair의 first 요소에는 key, second 요소에는 value를 담는다.
          따라서 한번 성성된 Key는 변경이 불가하다.
          cout << it->first << " occurs on line(s): "; // key 값인 string을 출력한다.
  • ClassifyByAnagram/상규 . . . . 6 matches
          string key = Word;
          sort(key.begin(), key.end());
          if(Anagrams.find(key) == Anagrams.end())
          Anagrams[key] = list<string>();
          Anagrams[key].push_back(Word);
  • JSP/SearchAgency . . . . 6 matches
          out.write(" <input type=text name='keyword'>");
          String line = request.getParameter("keyword");
          <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  • MobileJavaStudy/SnakeBite/FinalSource . . . . 6 matches
          private final int snakeYRange;
          snakeYRange = boardInnerHeight / snakeCellWidth;
          snake = new Snake(5, snakeXRange, snakeYRange);
          appleY = Math.abs(random.nextInt()) % snakeYRange;
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
  • MobileJavaStudy/SnakeBite/Spec2Source . . . . 6 matches
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
  • MobileJavaStudy/SnakeBite/Spec3Source . . . . 6 matches
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
          public void keyPressed(int keyCode) {
          int gameAction = getGameAction(keyCode);
  • ProjectGaia/계획설계 . . . . 6 matches
         == key 순차 파일 A안 ==
          키 순차화일은 키 순서로 정렬된 화일을 말한다.(교재122p부터) 여기서 키는 primary key(첫번째 필드)가 된다.
          * ② page 내 레코드 중 가장 큰 key값,
          key값이 20인 레코드를 검색하고 싶다면, master page의 table을 보고 해당 page ID를 찾은 다음, page 내부에서 검색하게 된다.
          레코드를 검색한 후 해당 key 값과 일치하는 key의 레코드를 지우고 삽입하게 된다. 가변길이 레코드.
  • STL/map . . . . 6 matches
          * dictionary 구조란 '''key''' 와 '''value'''가 존재하며, '''key'''를 이용하여 '''value'''를 찾는 자료구조이다.
         // map<key_type, value_type>
          === key 넣기 ===
          * map 은 내부에 STL의 pair 를 이용하여 구현한다. 그래서, iterator 가 가리키는 것은 pair<key_type, value_type> 형이다.
          cout << "key: " << (*i).first
  • TheJavaMan/테트리스 . . . . 6 matches
          addKeyListener(new MyKeyHandler());
          class MyKeyHandler extends KeyAdapter
          public void keyPressed(KeyEvent e) {
          String keyCode = KeyEvent.getKeyText(e.getKeyCode());
          if( keyCode == "Left" ) {
          if( keyCode == "Right" ) {
          if( keyCode == "Down" ) {
          if( keyCode == "Up" ) {
  • 비밀키/나휘동 . . . . 6 matches
          char key;
          cin >> key;
          ch += key;//암호화
          char key;
          cin >> key;
          ch -= key;//복호화
  • 비밀키/노수민 . . . . 6 matches
          int key,index=-1;
          cin >> key;
          cout << char( int(buffer[index]) + key) << " ";
          int key,index=-1;
          cin >> key;
          cout << char( int(buffer[index]) -n key) << " ";
  • 2010JavaScript/역전재판 . . . . 5 matches
         <div id='item_box'><span class='keyword'><br><br><br><br><br>hello</span></div>
          키워드는 <span class='keyword'>키워드!!</span>요렇게 ㅎㅎ
         span.keyword { /*키워드의 속성을 지정*/
          키워드는 <span class='keyword'>키워드!!</span>요렇게 ㅎㅎ
          * [http://www.openjs.com/scripts/events/keyboard_shortcuts/shortcut.js]
  • Bigtable기능명세 . . . . 5 matches
         client는 b+ 트리를 이용해 row key 탐색을 할 수 있다.
          1. 읽기시 row key 또는 key로 검색가능
          1. 쓰기시 key:value로만 쓰기 가능
         key와 value가 실제 저장되는 분산 파일 시스템
  • ClassifyByAnagram/JuNe . . . . 5 matches
          key=list(eachWord);key.sort();key=''.join(key)
          anagrams.setdefault(key,[]).append(eachWord)
  • MoniWikiPo . . . . 5 matches
         #: ../plugin/Comment.php:79 ../plugin/Keywords.php:256
         msgid "KeyWords search for \"%s\""
         #: ../plugin/KeywordView.php:16 ../plugin/Tour.php:16
         #: ../plugin/KeywordView.php:66 ../plugin/Tour.php:68
         #: ../plugin/KeywordView.php:68 ../plugin/Tour.php:70
         #: ../plugin/KeywordView.php:69 ../plugin/Tour.php:71
         #: ../plugin/KeywordView.php:74 ../plugin/Tour.php:77
         #: ../plugin/Keywords.php:221
         #: ../plugin/Keywords.php:225
         msgid "add keywords"
         #: ../plugin/Keywords.php:228
         msgid "Update keywords"
         #: ../plugin/Keywords.php:230
         msgid "Add keywords"
         #: ../plugin/Keywords.php:231
         #: ../plugin/Keywords.php:232
         #: ../plugin/Keywords.php:255
         msgid "You are not able to add keywords."
         #: ../plugin/Keywords.php:319
         #: ../plugin/Keywords.php:354
  • NSIS/Reference . . . . 5 matches
         || InstallDirRegKey || . || . ||
         || WriteRegStr || root_key subkey key_name value || 레지스트리에 기록. root키의 경우 다음이 가능. HKCR - HKEY_CLASSES_ROOT ||
         || || || HKLM - HKEY_LOCAL_MACHINE ||
         || || || HKCU - HKEY_CURRENT_USER ||
         || || || HKU - HKEY_USERS ||
         || || || HKCC - HKEY_CURRENT_CONFIG ||
         || || || HKDD - HKEY_DYN_DATA ||
         || || || HKPD - HKEY_PERFORMANCE_DATA ||
         || DeleteRegKey || [/ifempty] root_key subkey || 레지스트리 키 삭제 ||
         || EnumRegKey || . || . ||
          DeleteRegKey HKLM SOFTWARE\myApp
  • NSIS/예제2 . . . . 5 matches
         InstallDirRegKey HKLM SOFTWARE\NSIS_Example2 "Install_Dir"
          ; 윈도우를 위한 Uninstall key를 레지스트리에 저장
          ; 윈도우를 위한 Uninstall key를 레지스트리에 저장
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2"
          DeleteRegKey HKLM SOFTWARE\NSIS_Example2
         InstallDirRegKey HKLM SOFTWARE\NSIS_Example2 "Install_Dir"
          ; 윈도우를 위한 Uninstall key를 레지스트리에 저장
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2"
          DeleteRegKey HKLM SOFTWARE\NSIS_Example2
         InstallRegKey: "HKLM\SOFTWARE\NSIS_Example2\Install_Dir"
         CreateShortCut: "$SMPROGRAMS\Example2\Uninstall.lnk"->"$INSTDIR\uninstall.exe" icon:$INSTDIR\uninstall.exe,0, showmode=0x0, hotkey=0x0
         CreateShortCut: "$SMPROGRAMS\Example2\Example2 (notepad).lnk"->"$INSTDIR\notepad.exe" icon:$INSTDIR\notepad.exe,0, showmode=0x0, hotkey=0x0
         DeleteRegKey: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2
         DeleteRegKey: HKLM\SOFTWARE\NSIS_Example2
  • ProjectPrometheus/Journey . . . . 5 matches
          똑같은 코드를 ["Jython"] 으로 돌릴 경우 POST 로 넘긴 한글 keyword 가 제대로 넘어가질 않아요. 인코딩을 바꿔주면 될 것 같은데 못찾아서;--["1002"]
         bs.search(keyword);
         Client (클래스 이용자) 는 Library 에게 keyword 를 던지며 검색을 요청하면, Library는 그 keyword를 이용, 검색하여 Client 에게 돌려준다.
         하지만, 실제로 Library 내부에서는 많은 일들이 작동한다. 즉, keyword 를 해당 HTTP에서 GET/POST 스타일로 바꿔줘야 하고 (일종의 Adapter), 이를 HttpSpider 에게 넘겨주고 그 결과를 파싱하여 객체로 만든 뒤 Client 에게 돌려줘야 한다.
  • SummationOfFourPrimes/1002 . . . . 5 matches
         Hit any key to close this window...
         Hit any key to close this window...
         Hit any key to close this window...
         Hit any key to close this window...
         Hit any key to close this window...
  • TheJavaMan/숫자야구 . . . . 5 matches
         import java.awt.event.KeyEvent;
         import java.awt.event.KeyListener;
         public class LowerPanel extends Panel implements ActionListener, KeyListener{
          ok.addKeyListener(this);
          public void keyPressed(KeyEvent e) {
          * @see java.awt.event.KeyListener#keyReleased(java.awt.event.KeyEvent)
          public void keyReleased(KeyEvent arg0) {
          * @see java.awt.event.KeyListener#keyTyped(java.awt.event.KeyEvent)
          public void keyTyped(KeyEvent arg0) {
  • html5/web-storage . . . . 5 matches
          * 기존 key/value 값을 저장하던 cookie의 단점 보완 (크기제한, 스크립트 저장, 영구 저장 등)
          getter DOMString key(in unsigned long index);
          getter any getItem(in DOMString key);
          setter creator void setItem(in DOMString key, in any value);
          deleter void removeItem(in DOMString key);
  • 개인키,공개키/김회영,권정욱 . . . . 5 matches
         const int key = 50;
          ch = text + key;
          int key2;
          cin >> unsecret >> key2;
          ch = (text + key2) % askii;
  • 데블스캠프2011/둘째날/Machine-Learning/SVM/namsangboy . . . . 5 matches
          if not wordfreqdic[eachclass].has_key(word):
          wordlist.update(wordfreqdic[eachclass].keys())
          if not wordindexdic.has_key(word):
          if not docwordfreq.has_key(wordidx):
          docwordlist = docwordfreq.keys()
  • 만세삼창VS디아더스1차전 . . . . 5 matches
          for k in brain.keys:
          for k in 인수.brain.keys:
          for k in 인수.brain.keys:
          for k in 인수.brain.keys:
         for k in 인수.brain.keys:
  • 비밀키/박능규 . . . . 5 matches
          int key;
          cout << "key 를 입력하세요(단,숫자) : ";
          cin >> key;
          fout << (char)((int)a+key);
          cout << (char)((int)a+key);
  • 새싹교실/2012/주먹밥 . . . . 5 matches
         function key(){
         <body onKeyDown='key();'>
         function key(){
         <body onKeyDown='key();'>
          -> keyword : javascript image resize crop
  • 새싹교실/2013/양반/3회차 . . . . 5 matches
         숫자 key와 n을 입력받고, 입력 받은 두 값에 대응하는 도형을 출력하시오.
         key값이 1이면
         key값이 2이면
         key값이 3이면
         2 // key
  • ClassifyByAnagram/1002 . . . . 4 matches
          for key in anAnagramTable.iterkeys():
          out.write(' '.join(anAnagramTable[key]) + "\n")
          if self.anagrams.has_key(aw):
  • CodeRace/20060105/민경선호재선 . . . . 4 matches
          if (map.containsKey(word)) {
          Set set = map.keySet();
          String key2 = (String)it.next();
          int count = map.get(key2);
          list.add(new Data(key2, count));
  • MoniWiki/HotKeys . . . . 4 matches
         마우스 없이 거의 모든 기본적인 동작을 HotKeys로 쓸 수 있다.
          ||K||action=keywords || ||
          * http://unixpapa.com/js/key.html
          * MoinMoin:MoinMoinExtensions/Hotkeys
          * AccesskeyStandards
  • NSIS/예제3 . . . . 4 matches
         [http://zeropage.org/~reset/zb/download.php?id=KDP_board_image&page=1&page_num=20&category=&sn=&ss=on&sc=on&keyword=&prev_no=&select_arrange=headnum&desc=&no=50&filenum=1 만들어진Installer] - 실행가능.
          ; 윈도우 프로그램추가/삭제 관리자를 위한 Uninstall 관련 key를 레지스트리에 저장
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris"
          DeleteRegKey HKLM SOFTWARE\ZPTetris
         CreateShortCut: "$SMPROGRAMS\ZPTetris\Uninstall.lnk"->"$INSTDIR\uninstall.exe" icon:$INSTDIR\uninstall.exe,0, showmode=0x0, hotkey=0x0
         CreateShortCut: "$SMPROGRAMS\ZPTetris\ZPTetris.lnk"->"$INSTDIR\tetris.exe" icon:,0, showmode=0x0, hotkey=0x0
         DeleteRegKey: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris
         DeleteRegKey: HKLM\SOFTWARE\ZPTetris
  • ProjectPrometheus/AT_BookSearch . . . . 4 matches
          params = {'keyword':'한글'}
          params = {'keyword':'897087223X'}
          params = {'keyword':'한글3'}
          params = {'keyword':'한글 3'}
  • SelfDelegation . . . . 4 matches
          void put(const T1& keyObject, const T2& valueObject) {
          hashTable.put(keyObject, valueObject, this); // 문법 안맞는거 같다. 그냥 그런가 보다 하자.
         void HashTable::put(const T1& keyObject, const T2& valueObject, Dictionary* collection)
          hash = collection->hashOf(keyObject);
  • SmallTalk/강좌FromHitel/소개 . . . . 4 matches
          i, Key: Integer;
          Key := 6500000; // 존재하지 않는 값.
          if Data[i] = key then
         | data key |
         key := 6500000. "존재하지 않는 값"
          (data at: i) = key ifTrue: [
  • SmallTalk_Introduce . . . . 4 matches
          i, Key: Integer;
          Key := 6500000; // 존재하지 않는 값.
          if Data[i] = key then
         | data key |
         key := 6500000. "존재하지 않는 값"
          (data at: i) = key ifTrue: [
  • TkinterProgramming/SimpleCalculator . . . . 4 matches
          for key in ('123', '456', '789', '-0.'):
          keyF = frame(self, TOP)
          for char in key:
          button(keyF, LEFT, char, lambda w=display, s='%s' % char: w.set(w.get() + s))
  • html5/form . . . . 4 matches
         == Keygen ==
          * {{{<keygen name="key" keytype="rsa"></keygen>}}}
  • 고한종/on-off를조절할수있는코드 . . . . 4 matches
          char keyOnOff;
          keyOnOff=getch();
          //이 부분은 scanf_s("%c",&keyOnOff);로도 쓸 수 있지만 scanf_s와 scanf의 차이도 잘 모르고 scanf는 사실 매우 어려운 함수;
          switch(keyOnOff)
  • 데블스캠프2005/Python . . . . 4 matches
         임의의 객체 저장. 자료의 순서를 갖지 않는다. 키(key)를 이용해 값(value)에 접근한다.
         >>> dic.keys() 키들을 리스트로 리턴
         >>> dic.items() (key, value)을 리스트로 리턴
         >>> if 'soccer' in dic: 사전이 key를 가지고 있는지 검사. 있으면 True리턴
  • 비밀키/김홍선 . . . . 4 matches
          int key, count=0, i=0;
          cin >> key;
          int temp = int (arr[i]) + key;
          int temp = int (arr[i]) - key;
  • 비밀키/임영동 . . . . 4 matches
          int key;
          cin>>key;
          (*i)+=key;
          (*i)-=key;
  • 비밀키/조재화 . . . . 4 matches
          int key;
          cin >> key;
          array[i] += key;
          array[i] -= key;
  • 비밀키/황재선 . . . . 4 matches
          int key;
          cout << "Key 입력 : ";
          cin >> key;
          data[i] += key;
          data[i] -= key;
  • 영호의바이러스공부페이지 . . . . 4 matches
         If they don't match the virus will infect the file. Using two key MS-DOS
          Encryption is perhaps one of the key parts of writing a virus. If you
         function that can be used to cifer and decifer data with the same key.
         byte to encrypt^ ^key ^result
  • 이규완 . . . . 4 matches
          int key;
          scanf("%d", &key);
          str[i] = (str[i] + key)%256;
          str[i] = (str[i] - key)%256;
  • DataCommunicationSummaryProject/Chapter9 . . . . 3 matches
          * CCK(Complementary Code Keying)라고 불리는DSSS의 2.4GHZ를 사용한다. 물론 기존의 기계와 호환성을 기진다. MAC하는 방법은 CSMA/CA(여기서 A는 avoidance이다 유선과는 틀리다) half-duples이다.shared이다. 대역폭이 11Mbps이지만 오보헤드가 심하다. 여기에다가 쉐어드이니 장에가 심하면 1-2Mbps밖에 안된다.하지만 데이터 전송률은 쓸만하다. 이러한 낭비를 줄이려고 차세대로 갈수록 물리적인 데이터 율을 줄인다.
          * 네트워크 상에 같은 enctyption key를 쓴다. 하나 도난당하면 전체 네트워크가 노출된다.
          * 40-bit key : 해킹 금방 하겠지
          * built-in key management system - 이건 잘 모르겠다. 가증한 키는 제한되어 있고, 해킹하는 데에는 선형시간이 걸린다.
  • Googling . . . . 3 matches
         || "''keyword''" || 검색어를 문장단위로 검색한다. 의미가 확장되어서 검색되지 않는다. ||
         || -''keyword'' || 지정된 키워드를 제거한 결과값을 보여준다. ||
         || +''keyword'' || 키워드를 반드시 포함한 결과를 보여준다. 일반적으로 stopword로 지정된 것을 검색할 때 이용한다. ||
  • HelpOnProcessingInstructions . . . . 3 matches
          * {{{#keywords}}} ''keyword1,keyword2'': 페이지에 대한 키워드를 설정한다.
  • IndexedTree/권영기 . . . . 3 matches
          void update(int address, int item, int key);
         void IndexedTree::update(int address, int item, int key){
          if(key == 1)temp = item - tree[address];
  • OurMajorLangIsCAndCPlusPlus/XML/김상섭허준수 . . . . 3 matches
         tree_pointer get_keyword(char *line, stack_pointer sta)
          root = get_keyword(line,sta);
          get_keyword(line,sta);
  • SmallTalk/문법정리 . . . . 3 matches
          * Keyword messages
          * 키워드란 콜론(:)이 뒤에 붙는 식별자이다.(a keyword is an Identifier followed by colon ":" )
          * 각 키워드에 인수가 있을 때, 선택자는 하나 이상의 키워드이다.(the selector is one or more keywords, when called each keyword is followed by an argument object) -> 세번째 예시 참고
          * Keyword 메세지는 가장 낮은 우선 순위를 가진다.Keyword message have the lowest precedence.
  • ZeroPageServer/set2005_88 . . . . 3 matches
          * SSH의 pair key 로그인 환경설정 (~/.ssh/authorized_keys 파일을 통해서 가능함)
          * pair key 사용으로 굳이 패스워드를 외울 필요없음 ^^ㅋㅋ;
  • 개인키,공개키/강희경,조동영 . . . . 3 matches
          int open_key;
          cin >> open_key;
          num += open_key;
  • 개인키,공개키/임영동,김홍선 . . . . 3 matches
          int key=30, count=0, i=0,temp;
          int temp = int (arr[i]) + key;
          temp = (int (arr[i]) - key +256)%256;
  • 고한종/배열을이용한구구단과제 . . . . 3 matches
          char keyOnOff;
          keyOnOff=getch();
          switch(keyOnOff)
  • 새싹교실/2013/라이히스아우토반/3회차 . . . . 3 matches
          char key;
          key=getchar();
          switch (key) {
  • 시간맞추기/허아영 . . . . 3 matches
          printf("and press any key exactly...");
          printf("and press any key exactly...");
          printf("and press any key exactly...");
  • 정모/2011.7.11 . . . . 3 matches
          * 이번주에는 제가 OMS를 하고, 회고는 시간이 없어서 하지 못했지요. OMS를 원래는 제 노트북을 연결해서 하려고 했으나.... 제대로 작동하지 않는다는 사실을 깨닫고 급 바꿔야만 했죠 -,.- 결국 keynote도 쓰지 못하고 ppt로 전환하는바람에 ppt효과도 사망.. 아무튼 한참동안 고민한 주제중에는 나름 잘 골랐던거 같아요. 오늘은 제 후기가 뭐 이런지...;; -[김태진]
          * DP 세미나 참여 때문에 일찍 끝나서 뭔가 약간 아쉬웠습니다. 데블스캠프도 마치고 새로운 스터디/프로젝트도 시작되어서 사실 공유할 수 있는 것들이 많았을텐데 (저 같은 경우 DB2 Certi Program에 대해 좀 공유하고 싶었고..) 다음주를 기약 해야겠어요. 태진이의 OMS는 MacBook의 디스플레이가 원활했다면 keynote로 더 좋은 presentation이 될 수 있었을텐데 아쉬웠을 것 같아요. 본의 아니게 (주제가 Apple이다 보니) 선배님들이 많이 (농담조로) 디스했는데 발표는 좋았답니다. 역시 태진이는 기대치를 높여주는 친구에요. - [지원]
          * DP 일정이 급하게 잡혀서 짧게 진행했네요. keynote로 진행되는 OMS를 보나 했더니 케이블때문에 못 봐서 아쉽습니다. Apple사 제품은 조금씩 만져만보고 직접 써본적이 거의 없어서 OMS 재미있게 들었습니다. - [김수경]
  • 지영민/ㅇㅈㅎ게임 . . . . 3 matches
          char key;
          key=getchar();
          switch (key) {
  • 2010PHP . . . . 2 matches
          * 내용에 /* keyword */ 형태로 쓰면 keyword에 해당되는 이모티콘이 삽입되게 한다.
  • 3N+1Problem/황재선 . . . . 2 matches
         http://bioinfo.sarang.net/wiki/AlgorithmQuiz_2f3Plus1 에서 yong27님의 소스코드를 보았다. 소스가 정말 깔끔했다. 실행속도가 빨라서 그 원인을 분석해가며 지난번 작성했던 코드를 수정했다. 나의 목적은 0.001초라도 빠르게 결과를 출력하는 것이었다. 실행시간을 최소화하기위해 클래스마저 없앴다. 특히 두 부분을 수정하니 실행시간이 현저히 줄었다. 하나는 클래스 멤버변수를 제거하고 지역변수화한 경우인데 왜 그런지 모르겠다. 둘째는 사전형 타입인 cycleDic 에서 key를 문자열에서 숫자로 바꾼 부분이었다. 지난번 구현시 무엇때문에 수치형을 문자열로 변환하여 key로 만들었는지 모르겠다. -- 재선
  • CheckTheCheck/문보창 . . . . 2 matches
          int key = int(chess[i][j]);
          key < int('a') ? enemy = 'k' : enemy = 'K';
  • DPSCChapter2 . . . . 2 matches
         Our story begins with a tired-looking Don approaching Jane's cubicle, where Jane sits quietly typing at her keyboard.
          4. Automatic Adjudication. The system determines whether a claim can be paid and how much to pay if and only if there are no inconsistencies between key data items associated with the claim. If there are inconsistencies, the system "pends" the claim for processing by the appropriate claims adjudicator.
  • DesignPatternsAsAPathToConceptualIntegrity . . . . 2 matches
         During our discussions about the organization of design patterns there was a comment about the difficulty of identifying the “generative nature” of design patterns. This may be a good property to identify, for if we understood how design patterns are used in the design process, then their organization may not be far behind. Alexander makes a point that the generative nature of design patterns is one of the key benefits. In practice, on the software side, the generative nature seems to have fallen away and the more common approach for using design patterns is characterized as “when faced with problem xyz…the solution is…” One might say in software a more opportunistic application of design patterns is prevalent over a generative use of design patterns.
         2. The following methodologies are listed according to their key design criteria for modularization:
  • Eclipse . . . . 2 matches
          * [http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-ui-home/accessibility/keys.html Eclipse 단축키 모음] [http://eclipse-tools.sourceforge.net/shortcuts.html Eclipse Keyboard Shortcuts]
          * 2.0 -> 3.0 으로 버전업 되면서 수많은 단축키 들이 생겼다. 더불어 좀더 세부적인 Key Map 수정을 할수 있게 되었다.
         || Alt+Shift+Q + ? || Window->Preference->workspace->key->Advenced 의 Help Me... 옵션을 키고 Alt+Shift+Q를 누르고 기다려 보자 ||
  • Emacs . . . . 2 matches
         (global-set-key [(control shift tab)]'tabbar-backward)
         (global-set-key [(control tab)]'tabbar-forward)
  • FooBarBaz . . . . 2 matches
          * ''Baz! The return key on my keyboard is stuck!''
  • JavaScript/2011년스터디 . . . . 2 matches
         7. 테이블에 Primary Key 만들기
         alter table tablename add primary key (키를 줄 컬럼명1 , 키를 줄 컬럼명2, ...)
         8. 테이블에 Primary Key 삭제하기
         alter table tablename drop primary key;
  • JavaScript/2011년스터디/7월이전 . . . . 2 matches
          * walk(holder, key)
          * javascript는 하면 할수록 안되는거같습니다.ㅠㅇㅜ keypress가 왜 한번씩만 입력받는지 고민하느라 시간을 다썻어요. 아주 간단한 에제부터 하면서 다시 event를 받는것을 해봐야겠습니다. 아예 그것뿐만이 아니라 HTML같은 전반적인 것을 공부해야 겠다는 생각이 들었습니다. 아, 이쪽보다 동네 홈페이지를 가지고 장난치는게 더 재밋는것 같네요ㅋ - [박정근]
  • LUA_6 . . . . 2 matches
         > mt.__index = function(x,key)
         >> if key == 'copy_value' then return { value = x.value } end
  • LispLanguage . . . . 2 matches
          * Practical Common LISP: http://www.gigamonkeys.com/book/
         [http://clojure.org/ Clojure] : Rich Hickey가 제작한 Lisp 방언 중 하나. JVM 상에서 돌아가는 Lisp 구현체로, Java API를 직접 불러서 사용하는 것이 가능하다.
  • MatrixAndQuaternionsFaq . . . . 2 matches
          languages is to make use of the "typedef" keyword. Both 3x3 and 4x4
          have been specified using keyframe animation or inverse kinematics.
  • PragmaticVersionControlWithCVS/Getting Started . . . . 2 matches
         keyword substitution: kv
         keyword substitution: kv
  • RegularExpression/2011년스터디 . . . . 2 matches
          var str='<body onload="firprint(;" onkeydown="keyboard);"> <input value="pause" onclick="pause();"/>';
  • STL/Tutorial/연습문제규칙 . . . . 2 matches
         26 <-- 암호표1 key, value 연속
         26 <-- 암호표 2 key, value 연속
  • TourMacro . . . . 2 matches
         #keywords linux,GNU
         [[Tour(arena=keylinks,GPL)]]
  • UbuntuLinux . . . . 2 matches
         CTRL + ALT + Left/right arrow key. Switches to the new side of the cube for me.
         CTRL + ALT + SHIFT + Left/Right arrow key- Takes the in focused app around cube.
  • WeightsAndMeasures/신재동 . . . . 2 matches
         >>> l.sort(key=lambda x:x.foo)
         >>> l.sort(key=operator.attrgetter('foo'))
  • WikiKeyword . . . . 2 matches
          * http://www.kwiki.org/?KwikiKeywords : Kwiki use keywords. Keywords are listed in the left sidebar and each keywords link to another pages related with it.
          * http://search.wikicities.com/wiki/Help:Keyword
          * http://openclipart.org/cgi-bin/wiki.pl?Keyword_Organization
  • WikiSlide . . . . 2 matches
          * WordIndex: A list of all words in page titles (i.e. a list of keywords/concepts in the Wiki)
         Within the editor, the usual hotkeys work:
  • [Lovely]boy^_^/EnglishGrammer/PresentPerfectAndPast . . . . 2 matches
          A. Tom is looking for his key. He can't find it. He has lost his key.(= He lost it and he still doesn't hav it.)
  • cookieSend.py . . . . 2 matches
          str = [key+'='+data for key,data in aDict.items()]
  • 김수경 . . . . 2 matches
          * [http://zeropage.org/?mid=fresh&category=&search_target=title&search_keyword=2pm 2pm반]
          * [http://zeropage.org/?mid=fresh&category=&search_target=title&search_keyword=%5B%EA%BD%83%EB%8B%98%EB%B0%98%5D 꽃님반]
  • 데블스캠프2005/게임만들기/제작과정예제 . . . . 2 matches
          테스트를 위해서는 key_Right()와 같은 변수안에 넣고, 해당하는 키를 눌러보면 실행이 된다.
          테스트를 위해서는 key_Left()와 같은 변수안에 넣고, 랜덤으로 만드는 함수를 호출한후, 호출해 보면 된다.
  • 맞춤교육 . . . . 2 matches
          - SeeAlso [http://ucc.media.daum.net/uccmix/news/foreign/others/200502/24/fnnews/v8451147.html?u_b1.valuecate=4&u_b1.svcid=02y&u_b1.objid1=16602&u_b1.targetcate=4&u_b1.targetkey1=17161&u_b1.targetkey2=845114 한국엔 인재가 없다]
  • 새싹교실/2012/개차반 . . . . 2 matches
          * 포인터 개념이나 scanf에서 &가 쓰이는 이유 등 여러가지 keyword에 대해 설명하기 위함
          * keyword
          * 키워드 (Keyword)
  • 새싹교실/2013/라이히스아우토반/2회차 . . . . 2 matches
          * keyword
          * keyword
  • 소수구하기 . . . . 2 matches
         723만자리짜리 소수가 발견되었다네요 [http://ucc.media.daum.net/uccmix/news/foreign/others/200406/08/hani/v6791185.html?u_b1.valuecate=4&u_b1.svcid=02y&u_b1.objid1=16602&u_b1.targetcate=4&u_b1.targetkey1=17161&u_b1.targetkey2=6791185&nil_profile=g&nil_NewsImg=4 관련기사] - [임인택]
  • 주민등록번호확인하기/문보창 . . . . 2 matches
          int key = (int)num.charAt(12) - 48;
          if (key == sum)
  • 2010Python . . . . 1 match
          * [박정근] - python의 특이한 배열? keyindex를 지정가능하고 순서대로 출력도 가능함. 그리고 python은 지정하는것이 특기인 듯
  • AudioFormatSummary . . . . 1 match
         || ape || ? || [http://www.monkeysaudio.com/] || 무손실압축. flac과 비견됨 ||
  • BigBang . . . . 1 match
          * set(집합, 순서가 없는 리스트, 중복을 허용 안함), multiset, map(key와 value가 짝을 지어서 set으로 저장된다), multimap (set과 map은 input 될 때, valanced tree 형태로 저장되기 때문에 search time이 항상 log n을 유지할 수 있다. 즉, 들어온 순서와 정렬 순서가 일치하지 않게 된다.)
  • Bioinformatics . . . . 1 match
         GenBank flatfile은 DNA-centered의 보고서이다. DNA중심이라는 것은 어떤 단백질의 유전자 정보를 저장하고 있는 DNA영역이 DNA위의 coding region이라고 불린다. 반대로 대부분의 Protein seq. DB들은 Protein-centered의 관점이며, 이는 단백질과 유전자 사이는 accesion number(유전자를 접근하기위한 DB의 key값) ... 진행중
  • BuildingWikiParserUsingPlex . . . . 1 match
          if self.interWikiMap.has_key(wikiMapName):
  • CPPStudy_2005_1/STL성적처리_3 . . . . 1 match
         Press any key to continue
  • CSS . . . . 1 match
         [CssMarket], [http://165.194.17.5/zero/index.php?keyword=CSS&mode=result&directGo=1&url=zeropage&range=%C0%FC%C3%BC CSS 검색결과]
  • CVS/길동씨의CVS사용기ForLocal . . . . 1 match
         keyword substitution: kv
  • CVS/길동씨의CVS사용기ForRemote . . . . 1 match
         keyword substitution: kv
  • ClassifyByAnagram/박응주 . . . . 1 match
          if self._anagrams.has_key(s):
  • ClassifyByAnagram/인수 . . . . 1 match
          * 먼저 입력받을때에는 key : 어떤 알파벳이 몇번 나왔나 저장한 map 컨테이너, value : 그 string들의 list. 이런식으로 저장해준다.
  • CleanCode . . . . 1 match
          * [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]
  • CodeRace/20060105/Leonardong . . . . 1 match
          if word in result.keys():
  • ComputerNetworkClass/Exam2006_2 . . . . 1 match
         integrigy(modification -> keyed MD5)
          일반적인 메일 전송 프로토콜의 이해와 MIME 프로토콜에 대한 간단한 이해. 그리고 E(MD(5), PrivateKeyOfSnd) 의 해석 방법과 계층적 인증에 대한 이해를 묻는 문제였음.
  • Cpp에서의멤버함수구현메커니즘 . . . . 1 match
         Press any key to continue
  • DateMacro . . . . 1 match
         #keywords macro
  • DylanProgrammingLanguage . . . . 1 match
         Dylan is an advanced, object-oriented, dynamic language which supports rapid program development. When needed, programs can be optimized for more efficient execution by supplying more type information to the compiler. Nearly all entities in Dylan (including functions, classes, and basic data types such as integers) are first class objects. Additionally Dylan supports multiple inheritance, polymorphism, multiple dispatch, keyword arguments, object introspection, macros, and many other advanced features... --Peter Hinely
  • EightQueenProblemSecondTryDiscussion . . . . 1 match
         제가 보기에 현재의 디자인은 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 오브젝트 을에게 물어봅니다. "내가 너를 귀찮게 하고 있니?" --김창준
  • FrontPage . . . . 1 match
          * [https://docs.google.com/spreadsheet/ccc?key=0AuA1WWfytN5gdEZsZVZQTzFyRzdqMVNiS0RDSHZySnc&usp=sharing 기자재 목록]
  • Gof/Adapter . . . . 1 match
         A class adapter uses multiple inheritance to adapt interfaces. The key to class dapters is to use one inheritance branch to inherit the interface and another branch to inherit the implementation. The usual way to make this distinction in C++ is to inherit the interface publicly and inherit the implementation privately. We'll use this convention to define the TextShape adapter.
  • Gof/Command . . . . 1 match
         Command Pattern은 request 를 객체화함으로서 toolkit 객체로 하여금 불특정한 어플리케이션 객체에 대한 request를 만들게 한다. 이 객체는 다른 객체처럼 저장될 수 있으며 pass around 가능하다. 이 pattern의 key는 수행할 명령어에 대한 인터페이스를 선언하는 추상 Command class에 있다. 이 인터페이스의 가장 단순한 형태에서는 추상적인 Execute operation을 포함한다. 구체화된 Command subclass들은 request에 대한 receiver를 instance 변수로 저장하고 request를 invoke하기 위한 Execute operation을 구현함으로서 receiver-action 짝을 구체화시킨다. The receiver has the knowledge required to carry out the request.
  • Gof/Facade . . . . 1 match
         Choices operating system [CIRM93] 은 많은 framework를 하나로 합치기 위해 facade를 사용한다. Choices에서의 key가 되는 추상객체들은 process와 storge, 그리고 adress spaces 이다. 이러한 각 추상객체들에는 각각에 대응되는 서브시스템이 있으며, framework로서 구현된다. 이 framework는 다양한 하드웨어 플랫폼에 대해 Choices에 대한 porting을 지원한다. 이 두 서브시스템은 '대표자'를 가진다. (즉, facade) 이 대표자들은 FileSystemInterface (storage) 와 Domain (address spaces)이다.
  • HelpContents . . . . 1 match
         #keywords help,도움말
  • HelpForBeginners . . . . 1 match
         #keywords help,wiki,위키위키
  • HelpOnEditing . . . . 1 match
         #keywords help,문법,위키,위키 포매팅,포매팅
  • HelpOnFormatting . . . . 1 match
         #keywords Formatting,Help,wiki,포매팅,문법
  • HelpOnLinking . . . . 1 match
         #keywords inter wiki,moniwiki,wiki,wiki name,링크
  • HelpOnUserPreferences . . . . 1 match
         #keywords preferences,user
  • InterMap . . . . 1 match
         ZDic http://dic.zdnet.co.kr/frame_desc.html?key= # ZDnet 의 IT 용어 사전
  • JavaScript/2011년스터디/윤종하 . . . . 1 match
          var items = [ "click", "keypress" ];
  • LawOfDemeter . . . . 1 match
          thingy.addElementWithKey(foo.getKey(), foo);
         This is what we are trying to prevent. (We also have an example of Asking instead of Telling in foo.getKey
         SortedList's add method is addElementWithKey()
         foo's method to query its key is getKey()
  • Linux/필수명령어/용법 . . . . 1 match
         -b : 단어의 뒤에 오는 공백 문자는 정렬 키(key) 값으로 무시하도록 한다.
  • MoinMoinFaq . . . . 1 match
          page, where you can search by keyword in title, by full text, with
  • MoniWiki . . . . 1 match
         #keywords MoniWiki, WikiEngine, GPL
  • MoniWikiOptions . . . . 1 match
          * 수자는 accesskey를 지정하기 위해 쓰이는 값이다. "alt-1, alt-4"라는 식으로 지정된다.
  • MoreEffectiveC++/Efficiency . . . . 1 match
         자 여기서의 열쇠(keyword)가 바로 '''lazy''' 이다.
  • MoreEffectiveC++/Miscellany . . . . 1 match
          * '''새로운 개념의 추가''' : RTTI, namespace, bool, mutable과 explicit keyword, enum을 위한 오벌드(overload) 연산자 능력, 클래스 정의 내부에서 이용한 완전한 정적 클래스 멤버 초기화 증력
  • OpenCamp/첫번째 . . . . 1 match
          * 13:10~13:30 Keynote 변형진
          * 1학년 때 데블스캠프에 잠깐 참가했을 때 수업시간에 배우는게 다가 아니라는 것을 느꼈었습니다. 이번 오픈캠프에서도 생각하지 않고 있었던 웹 분야에 대해 많은걸 알게 되어 좋았습니다. 처음 keynote에서 개발자에 미치는 영향력에 대해 설명하셨을 때부터 집중이 확 된 것 같습니다. 겨울방학 때 웹쪽을 공부해야겠다는 생각이 들었고, 자바스크립트로 구현하는 OOP부터 조금 어려웠지만 나중에 많은 도움이 될거라고 생각합니다. 책까지 받게 되어 너무 좋았지만 (+밥까지 얻어 먹게 되어) 뭔가 죄송하다는 생각도 들었습니다!_! 피곤하실텐데도 열심히 발표하거나 행사진행을 위해 애쓰시는 모습을 보며 가끔 공부가 힘들다고 투정하는 저를 반성하기도 했습니다. 덧: 생중계 코딩이 가장 인상적이었습니다~! - [구자경]
          * 데블스도 그렇고 이번 OPEN CAMP도 그렇고 항상 ZP를 통해서 많은 것을 얻어가는 것 같습니다. Keynote는 캠프에 대한 집중도를 높여주었고, AJAX, Protocols, OOP , Reverse Engineering of Web 주제를 통해서는 웹 개발을 위해서는 어떤 지식들이 필요한 지를 알게되었고, NODE.js 주제에서는 현재 웹 개발자들의 가장 큰 관심사가 무엇있지를 접해볼 수 있었습니다. 마지막 실습시간에는 간단한 웹페이지를 제작하면서 JQuery와 PHP를 접할 수 있었습니다. 제 기반 지식이 부족하여 모든 주제에 대해서 이해하지 못한 것은 아쉽지만 이번을 계기로 삼아서 더욱 열심히 공부하려고 합니다. 다음 Java Conference도 기대가 되고, 이런 굉장한 행사를 준비해신 모든 분들 감사합니다. :) - [권영기]
  • OurMajorLangIsCAndCPlusPlus/stdlib.h . . . . 1 match
         || void *bsearch(const void *key, const void *base, size_t nitems, size_t size, int (*compar)(const void *, const void *)); || 이진검색 수행 ||
  • PNA2011/서지혜 . . . . 1 match
          * 3 keywords : 처음 만나는 사람들의 성향을 알 수 있다.
  • Plugin/Chrome/네이버사전 . . . . 1 match
          "api_key=90485e931f687a9b9c2a66bf58a3861a&" +
  • PragmaticVersionControlWithCVS/CommonCVSCommands . . . . 1 match
         keyword substitution: kv
  • ProgrammingLanguageClass/2006/Report3 . . . . 1 match
         required to prefix the keyword name just in front of both the actual and formal
  • ProjectEazy/Source . . . . 1 match
          return self.words.keys()
  • ProjectPrometheus/LibraryCgiAnalysis . . . . 1 match
          서지번호 ( key 값이 된다.)
         &pKeyWordC=%28+%28-TI-+WITH+%28extreme+programming+%29+.TXT.%29++%29 - 검색 관련 키워드
  • ProjectPrometheus/MappingObjectToRDB . . . . 1 match
          서지번호(key), 도서관코드(ATSL)
  • ProjectZephyrus/ServerJourney . . . . 1 match
          * 느낀점 : 휴.. 전에 툴을 쓸때는 해당 툴과 손가락이 생각을 못따라가 가는 것이 너무 아쉬웠는데, Eclipse에서는 거의 동시에 진행할수 있었다. extract method, rename, quick fix, auto fix task,마우스가 필요 없는 작업 환경들 etc VC++로 프로그래밍 할때도 거의 알고 있는 단축키와 key map을 macro를 만들어 써도 이정도가 아니었는데 휴..
  • RandomWalk/임인택 . . . . 1 match
          // i'm not sure that this is an excessive use of 'static' keyword
  • ReadySet 번역처음화면 . . . . 1 match
          '''* What are some key features that define the product?'''
  • RelationalDatabaseManagementSystem . . . . 1 match
         Upload:Relational_key.png
  • ScheduledWalk/석천 . . . . 1 match
         Press any key to continue
  • ScheduledWalk/욱주&민수 . . . . 1 match
          char Key;
          fin>>Key;
          while(Key != '9')
          if(Key=='0')
          else if(Key=='1')
          else if(Key=='2')
          else if(Key=='3')
          else if(Key=='4')
          else if(Key=='5')
          else if(Key=='6')
          else// (key==7)
          fin>>Key;
  • SgmlEntities . . . . 1 match
         To support international characters even on generic (US) keyboards, SgmlEntities know from HTML are a good way. These can also be used to escape the WikiMarkup characters.
  • Shoemaker's_Problem/곽병학 . . . . 1 match
          int cs, line, t, s, key, val;
  • TheJavaMan/스네이크바이트 . . . . 1 match
          addKeyListener(new KeyAdapter(){
          public void keyPressed(KeyEvent e){
          direction = KeyEvent.getKeyText(e.getKeyCode());
  • VMWare/OSImplementationTest . . . . 1 match
         [http://neri.cafe24.com/menu/bbs/view.php?id=kb&page=1&sn1=&divpage=1&sn=off&ss=on&sc=on&keyword=x86&select_arrange=headnum&desc=asc&no=264 출처보기]
  • ViImproved/설명서 . . . . 1 match
          ^R ^L가 →key에 있는 경우 화면을 소거하고 refesh
  • VonNeumannAirport/1002 . . . . 1 match
         Press any key to continue
  • 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일회의록]
  • ZP도서관 . . . . 1 match
         || Client/Server Survival Guide (3rd ed.) || Robert Orfali, Dan Harkey, Jeri Edwards || 영진출판사 || 이선우,류상민 || 한서 ||
  • ZeroPage/회비 . . . . 1 match
          [http://zeropage.org/?mid=accounts&category=&search_target=title&search_keyword=2008 회계게시판]
  • ZeroPage_200_OK . . . . 1 match
          * data() 메소드 - 이벤트 핸들러에 클로저를 쓰면 핸들러가 등록되었을 시점과 핸들러가 호출되었을 시점의 변수 값이 다를 수가 있다. 클로저를 쓰지 않기 위해서는 .data()를 이용하면 해당 data가 key/value 형태로 DOM트리에 등록된다.
  • ZeroPage성년식/회의 . . . . 1 match
          * 3 keywords
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 1 match
          * '''Keeping the code simple is usually the key to correctness.'''
  • ddori . . . . 1 match
          * Foo Fighters - I wanna be your monkey wranch babe..
  • django/ModifyingObject . . . . 1 match
          # Determine whether a record with the primary key already exists.
  • wiz네처음화면 . . . . 1 match
          * searching keywords in google - english listening mp3
  • 강성현 . . . . 1 match
          * 컴퓨터공학부 내의 연구실에 대한 빠른 설명. [http://zeropage.org/index.php?mid=board&search_target=tag&search_keyword=%EB%8C%80%ED%95%99%EC%9B%90 자유 게시판에 있는 대학원 소개]에 기초함.
  • 데블스캠프2005/java . . . . 1 match
         The device was named Star7 after a telephone feature activated by *7 on a telephone keypad. The feature enabled users to answer the telephone anywhere. The PDA device itself was demonstrated on September 3, 1992.
  • 데블스캠프2005/월요일/번지점프를했다 . . . . 1 match
          if self.currentPosition.connectedComponent.has_key(direction) :
  • 데블스캠프2010/셋째날/후기 . . . . 1 match
          * 리버스 엔지니어링이 현재도 많이 쓰는(?) crack, 과 keygen 에 쓴다는 것을 알았고, 가상화 라는 것을 통해 리버스 엔지니어링을 매우 힘들게 할 수 있다는 것을 알았습니다. 입력 노가다로는 절대 풀 수 없는 비밀번호 찾기를 디버거를 통해서 비교적 간단히 찾을 수 있다는 것이 신기했고, 원래 관심있던 부분이라서 되게 흥미로웠어요~ㅋ 어셈블리 언어를 배우고나서 더 알아보고 싶어요! [박재홍]
  • 데블스캠프2011 . . . . 1 match
          * [https://docs.google.com/spreadsheet/ccc?key=0AtizJ9JvxbR6dGNzZDhOYTNMcW0tNll5dWlPdFF2Z0E&usp=sharing 타임테이블링크]
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/namsangboy . . . . 1 match
          if not wordfreqdic[eachclass].has_key(word):
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 1 match
          if (!words.containsKey(word)) {
          if (!words.containsKey(word)) {
          String[] wordset = words.keySet().toArray(new String[0]);
          if (words.containsKey(word)) {
          if (words.containsKey(word)) {
  • 데블스캠프2012 . . . . 1 match
          * [https://docs.google.com/spreadsheet/ccc?key=0ArWnDjSUKLWYdERWQTVqN2ZvbUVrVms3R0FScmQtN0E&usp=sharing 구글타임테이블링크]
  • 데블스캠프2012/셋째날/코드 . . . . 1 match
         <SCRIPT type="text/javascript" src="http://openapi.map.naver.com/js/naverMap.naver?key=f59e66fb57d24b1ffaa6cc7e504a72cc"></SCRIPT>
  • 땅콩이보육프로젝트2005 . . . . 1 match
          || primary key || word || next word || frequency ||
  • 레밍딜레마 . . . . 1 match
         시리즈 물인데, 같은 시리즈의 하나인 혜영이가 남긴 감상 [http://zeropage.org/jsp/board/thin/?table=multimedia&service=view&command=list&page=0&id=145&search=&keyword=&order=num 네안데르탈인의 그림자] 와 같은 짧고 뜻 깊은 이야기이다. 왜 이 책을 통해서 질문법을 통한 실용적이며, 진짜 실행하는, 이루어지는 비전 창출의 중요성을 다시 한번 생각하게 되었다. ["소크라테스 카페"] 에서 저자가 계속 주장하는 질문법의 힘을 새삼 느낄수 있었다.
  • 리눅스연습 . . . . 1 match
         [http://kr.hancom.com/contents/contentsView.php?zone=os&from=3&mode=0&page=0&info=os_4_1&zone=os&cata=os_4&key=&value=&num=149 Make란?]
  • 새싹교실/2011/Pixar/실습 . . . . 1 match
         Write a program that gets a starting principal(A, 원금), annual interest rate(r, 연이율) from a keyboard (standard input) and print the total amount on deposit (예치기간이 지난 뒤 총금액, 원리합계) for the year(n) from 0 to 10. total deposit = A*(1+r)^n
  • 새싹교실/2012/새싹교실강사교육/3주차 . . . . 1 match
         3. 코딩 Keyword 설명
         3. 코딩 KeyWord (선생님들께 질문해보세요)
         C Library reference Guide http://www.acm.uiuc.edu/webmonkeys/book/c_guide/
  • 세벌식 . . . . 1 match
          * 윈도우즈, 리눅스, MacOS 등에서 모두 세벌식을 쉽게 쓸 수 있다. [http://paero3.myzip.co.kr/use_sebeol_keyboard/index.html 이곳]에 각 OS에서 세벌식 배열을 사용할 수 있는 방법이 설명되어있다.
  • 스터디/Nand 2 Tetris . . . . 1 match
          Keyboard: standard
          Keyboard(memory map)
          Keyboard를 위한 RAM 어딘가를 할당해놓음. 이 공간은 Keyboard를 위한 공간. CPU는 그 공간을 읽어서 어떤 key가 들어왔는지 확인.
  • 알고리즘8주숙제 . . . . 1 match
         다음과 같이 input 이 들어온다고 가정합시다. 여기서 맨 앞 하나의 정수는 노드의 수를 나타냅니다. 그 밑으로 노드에 대한 정보가 입력됩니다. 노드의 처음은 key 값이고, 그 다음 값은 확률(확률은 1이상의 정수로 임의로 입력) 입니다. 하나의 노드를 검색했을때 실패하는 경우는 없다고 가정합시다. 최적의 평균탐색시간을 가지는 이진탐색트리를 구현하고 다음을 출력하시오.
  • 여섯색깔모자 . . . . 1 match
         [http://docs.google.com/present/view?id=0AdizJ9JvxbR6ZGNrY25oMmpfM2Q5djhkOGNq&hl=ko&authkey=CKTc9ZoI 2010/7월의세미나/여섯색깔모자]
  • 윤종하 . . . . 1 match
          1. 2010 새싹스터디: [http://zeropage.org/?mid=fresh&category=&search_target=title&search_keyword=2pm 2pm반]
  • 이승한/.vimrc . . . . 1 match
         "============== key mapping ==============
  • 이승한/mysql . . . . 1 match
          === key ===
  • 이영호/nProtect Reverse Engineering . . . . 1 match
         지금까지의 자료들을 분석한 결과 key는 client.exe가 쥐고 있는 것으로 보인다.
  • 임시 . . . . 1 match
         &AWSAccessKeyId=[Your Access Key ID Here]
         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.
  • 임인택/Link . . . . 1 match
          * [http://www.keysound.com/index.htm KeySound]
  • 임인택/코드 . . . . 1 match
         void ToggleKeyMap
         keybd_event(VK_HANGUEL, 0, KEYEVENTF_EXTENTEDKEY, 0);
  • 작은자바이야기 . . . . 1 match
          * IME(Input Method Editor) - OS 레벨에서 실제 key code - 문자의 mapping과 문자 조합('ㅁ' + 'ㅏ' 같은 경우)의 처리를 해 주는 소프트웨어. Sublime에서는 제대로 처리를 안 해 줬다...
  • 정규표현식/스터디/반복찾기/예제 . . . . 1 match
         brlapi.key dictionaries-common grub.d ld.so.conf nanorc rc.local speech-dispatcher xulrunner-1.9.2
  • 정모/2011.3.14 . . . . 1 match
          * 그간 PNA를 별로 시덥잖게 생각하다가, 이번에 후기를 듣고 나서 꼭 한번쯤은 가봐야겠다는 생각이 '''강하게''' 들었습니다. (딱히 M모 기기 때문은 아닙니다. 정말로.) 다음 주에 할 [http://extaccess.cyrusian.com/zeropage/keyword.php 키워드 전기수]가 기대됩니다. :) - [황현]
  • 조영준 . . . . 1 match
          * 2015년 하계방학 Java 강사 - [https://onedrive.live.com/redir?resid=3E1EBF9966F2EBA!23488&authkey=!AHG1S-XLSURIruo&ithint=folder%2cpptx 수업 자료]
  • 진격의안드로이드&Java . . . . 1 match
          * [http://www.slideshare.net/novathinker/1-java-key Java-Chapter 1]
  • 창섭/배치파일 . . . . 1 match
         - 문자열 : 문자열을 생략하면 'press any key to continue...'라는 메세지가 화면에 출력됩니다. 만약 PAUSE 명령 뒤에 어떤 메세지를 지정하여 그 메시지를 출력하고 싶다면 'Echo On' 명령을 우선 내려야 합니다.
  • 콤비반장의메모 . . . . 1 match
          * data 삭제를 하지 않는다면 key를 아는 사람만 들을수 있다는 점에서 구현가치는 있는 아이디어.
Found 223 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.3016 sec