E D R , A S I H C RSS

Full text search for "name"

name


Search BackLinks only
Display context of search results
Case-sensitive searching
  • PrettyPrintXslt . . . . 85 matches
          <xsl:with-param name="root" select="true()"/>
          <xsl:param name="root" />
          <xsl:variable name="ns-prefix"
          select="substring-before(name(),':')" />
          <span class="xmlverb-element-name">
          <xsl:value-of select="local-name()"/>
          <xsl:variable name="pns" select="../namespace::*"/>
          <xsl:if test="$pns[name()=''] and not(namespace::*[name()=''])">
          <span class="xmlverb-ns-name">
          <xsl:for-each select="namespace::*">
          <xsl:if test="not($pns[name()=name(current()) and
          <xsl:call-template name="xmlverb-ns" />
          <xsl:call-template name="xmlverb-attrs" />
          <span class="xmlverb-element-name">
          <xsl:value-of select="local-name()"/>
          <xsl:template name="xmlverb-attrs">
          <span class="xmlverb-attr-name">
          <xsl:value-of select="name()"/>
          <xsl:call-template name="html-replace-entities">
          <xsl:with-param name="text" select="normalize-space(.)" />
  • 신기호/중대생rpg(ver1.0) . . . . 85 matches
         #define FILE_NAME "csave.dat"
          char name[MAX_STRING];
          char name[MAX_STRING];
          char name[MAX_STRING];
          state=fopen(FILE_NAME,"r");
          else if(strcmp(buff,"name:")==0){
          char tmpName[MAX_STRING];
          tmpName[i++]=tmp;
          tmpName[i-1]='\0';
          strcpy(Main.name,tmpName);
          if(strcmp(buff,"name:")==0){
          char tmpName[MAX_STRING];
          tmpName[i++]=tmp;
          tmpName[i-1]='\0';
          strcpy(tmpInven.name,tmpName);
          char tmpName[MAX_STRING];
          tmpName[i++]=tmp;
          tmpName[i-1]='\0';
          strcpy(tmpInven.tooltip,tmpName);
          state=fopen(FILE_NAME,"w+");
  • 2학기파이선스터디/서버 . . . . 59 matches
          def __contains__(self, name): # in 연산자 메쏘드
          return name in self.users
          def addUser(self, conn, addr, name):
          if name in self.users:
          conn.send('Already resistered name\n')
          self.users[name] = (conn, addr)
          self.broadcastMessage('['+name+']' + ' entered\n')
          conn.send('[%s] Welcome!\n'%name) # 본인에게 가는 메시지
          return name
          def removeUser(self, name):
          if name not in self.users:
          del self.users[name]
          self.broadcastMessage('['+name+'] '+' has gone!\n')
          def handleMessage(self, name, msg):
          self.broadcastMessage('['+name+'] ' + msg)
          self.removeUser(name)
          name = self.readAngRegisterName()
          if self.users.handleMessage(name, data) == -1:
          self.users.removeUser(name)
          def readAngRegisterName(self):
  • AseParserByJhs . . . . 51 matches
         RenameThisPage - 적저한 이름과 하는 일이 필요할것 같아서. 궁리중 --["1002"]
         #define OBJECT_NAME "*NODE_NAME"
          char texName[51]; // texture name
          static bool LoadAse (char* filename); // ASE 파일을 읽어들인다.
         bool CHS_GObject::LoadAse (char* filename)
          if (!(s = fopen (filename, "r"))) {
          sprintf (ds, "# %s not found\n", filename);
          if (strcmp (pNodeList [i1]->ParentName, "")) {
          !strcmp (pNodeList [i1]->ParentName, pNodeList [i2]->Name))
          if (!strcmp(pTmp->ParentName, "")) {
          sprintf (debug_buf,"\n#ROOT NODE: %s", pTmp->Name);
          else if (!strcmp (data, OBJECT_NAME))
          memcpy (pM->Name, temp, strlen(temp));
          memcpy (pM->ParentName, temp, strlen(temp));
          aseGetTextureName1 (s);
          char tmp_name[255];
          char name[255];
          tmp_name [c_index++] = (char) fgetc (s);
          if (tmp_name [c_index-1] == '"') {
          tmp_name [c_index-1] = '\0';
  • TFP예제/WikiPageGather . . . . 47 matches
          def testConvertWikiPageNameToMoinFileName (self):
          self.assertEquals (self.pageGather.WikiPageNameToMoinFileName ('''한글테스트'''), '''_c7_d1_b1_db_c5_d7_bd_ba_c6_ae''')
          self.assertEquals (self.pageGather.WikiPageNameToMoinFileName ("FrontPage"), "FrontPage")
          def testGetPageNamesFromPage (self):
          self.assertEquals (self.pageGather.GetPageNamesFromPage (), ["LearningHowToLearn", "ActiveX", "Python", "XPInstalled", "TestFirstProgramming", "한글테스트", "PrevFrontPage"])
          def testGetPageNamesFromString (self):
          self.assertEquals (self.pageGather.GetPageNamesFromString (strings), ["TestFirstIn", "TestFi", "StringIn"])
          self.assertEquals (self.pageGather.GetPageNamesFromString (strings), ["Testing", "Testing The Program", "TestFirst"])
          self.pagename = ''
          def WikiPageNameToMoinFileName (self,pagename):
          res = list(pagename)
          def SetPage (self, pagename):
          self.pagename = pagename
          def GetWikiPage (self, pagename):
          fullpathname = self.pagePath + self.WikiPageNameToMoinFileName (pagename)
          pagefile = open (fullpathname, 'r')
          def GetPageNamesFromPage (self):
          page = self.GetWikiPage (self.pagename)
          pagenamelist = []
          pagenamelist += self.GetPageNamesFromString (page)
  • LoveCalculator/조현태 . . . . 46 matches
         const int MAX_SIZE_NAME=25;
          int name_score[2];
          char temp_save_name[MAX_SIZE_NAME]={0,};
          scanf ("%s",temp_save_name);
          for (register int j=0; j<MAX_SIZE_NAME; ++j)
          if (64<temp_save_name[j] && temp_save_name[j]<91) // 대문자 입력
          name_score[i]+=temp_save_name[j]-64;
          else if (96<temp_save_name[j] && temp_save_name[j]<123) // 소문자 입력
          name_score[i]+=temp_save_name[j]-96;
          else if (NULL==temp_save_name[j])
          name_score[i]=calculator(name_score[i]);
          if (name_score[0]>name_score[1])
          result_percent=(float)name_score[1]*100/(float)name_score[0];
          result_percent=(float)name_score[0]*100/(float)name_score[1];
         const int MAX_SIZE_NAME=25;
          int name_score[2];
          input_and_calculate(name_score);
          output(name_score);
         void input_and_calculate(int *name_score)
          char temp_save_name[MAX_SIZE_NAME]={0,};
  • OurMajorLangIsCAndCPlusPlus/XML/조현태 . . . . 45 matches
          char* name;
         const char DEBUG_TEXT[] = "<zeropage>\n <studies>\n <cpp>\n <instructor>이상규</instructor>\n <participants>\n <name>김상섭</name>\n <name>김민경</name>\n <name>송수생</name>\n <name>조현태</name>\n </participants>\n </cpp>\n <java>\n <instructor>이선호</instructor>\n <participants>\n <name>김민경</name>\n <name>송수생</name>\n <name>조현태</name>\n </participants>\n </java>\n <mfc>\n <participants/>\n </mfc>\n </studies>\n</zeropage>\n";
         SReadBlock* CreateNewBlock(const char* name, const char* contents)
          if (NULL == name)
          newBlock->name = NULL;
          newBlock->name = (char*)malloc(sizeof(char) * (strlen(name) + 1));
          strcpy(newBlock->name, name);
          const char* nameEndPoint = strchr(readData, '>');
          char* textBuffur = (char*)malloc(sizeof(char) * (nameEndPoint - readData + 1));
          strncpy(textBuffur, readData, nameEndPoint - readData);
          textBuffur[nameEndPoint - readData] = 0;
          if ('/' == myPoint->name[strlen(myPoint->name) - 1])
          myPoint->name[strlen(myPoint->name) - 1] = 0;
          return nameEndPoint + 1;
          readData = CreateTree(myPoint, nameEndPoint + 1);
          if (NULL != showBlock->name)
          printf("<%s/>\n", showBlock->name);
          printf("<%s>", showBlock->name);
          printf("</%s>", showBlock->name);
         void SuchAllSameNamePoint(const char* name, SReadBlock* suchBlock, SReadBlock*** suchedBlocks)
  • ErdosNumbers/임인택 . . . . 44 matches
         def readFile(fileName):
          f = file(fileName, "r")
         def extractNames(str):
          names = parts[0].split('.,')
          for i in range(0, len(names)):
          if i < len(names)-1 :
          names[i] = stripWhiteSpaces(names[i]+dot)
          return names
         def erdosNumber(fileName):
          erdosName = 'Erdos, P.'
          lines = readFile(fileName)
          allNames = {}
          allNames[erdosName] = 0
          names = extractNames(lines[i])
          for name in names:
          if allNames.has_key(name) and (minErdosNum == -1 or minErdosNum>allNames[name]) :
          minErdosNum = allNames[name]
          erdosFriend = name
          if name == erdosName: # 같이 쓴 사람들
          erdosFriend = erdosName
  • ACM_ICPC/2013년스터디 . . . . 37 matches
          * queue - [http://211.228.163.31/30stair/prime_path/prime_path.php?pname=prime_path 소수 길]
          * dynamic programming - [http://211.228.163.31/30stair/eating_together/eating_together.php?pname=eating_together 끼리끼리]
          * linked list - [http://211.228.163.31/30stair/josephus/josephus.php?pname=josephus&stair=11 josephus]
          * 퀵 정렬,이진검색,parametric search - [http://211.228.163.31/30stair/guessing_game/guessing_game.php?pname=guessing_game&stair=10 숫자 추측하기], [http://211.228.163.31/30stair/sort/sort.php?pname=sort&stair=10 세 값의 정렬], [http://211.228.163.31/30stair/subsequence/subsequence.php?pname=subsequence&stair=10 부분 구간], [http://211.228.163.31/30stair/drying/drying.php?pname=drying&stair=10 건조], [http://211.228.163.31/30stair/aggressive/aggressive.php?pname=aggressive&stair=10 공격적인 소]
          * dynamic programming - [http://211.228.163.31/30stair/subset/subset.php?pname=subset 부분 합]
          * greedy method - [http://211.228.163.31/30stair/quick_change/quick_change.php?pname=quick_change 거스름돈], [http://211.228.163.31/30stair/germination/germination.php?pname=germination 발아]
          * bisection - [http://211.228.163.31/30stair/crossed_ladder/crossed_ladder.php?pname=crossed_ladder crossed ladder]
          * queue - [http://211.228.163.31/30stair/catch_cow/catch_cow.php?pname=catch_cow 도망 간 소를 잡아라]
          * 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 달팽이]
          * 이분법 - [http://211.228.163.31/30stair/crossed_ladder/crossed_ladder.php?pname=crossed_ladder crossed ladder]
          * 스택 - [http://211.228.163.31/30stair/tw/tw.php?pname=tw 송신탑]
          * dp - [http://211.228.163.31/30stair/tickets/tickets.php?pname=tickets 티켓]
          * dp - [http://211.228.163.31/30stair/tickets/tickets.php?pname=tickets 레인지]
          * 17 위상정렬 - [http://211.228.163.31/30stair/topo_sort/topo_sort.php?pname=topo_sort topo_sort]
          * [http://211.228.163.31/30stair/ustair/ustair.php?pname=ustair 계단오르기]
          * [http://211.228.163.31/30stair/barn/barn.php?pname=barn 헛간]
          * [http://211.228.163.31/30stair/barn/barn.php?pname=barn 헛간](저번주 문제)
          * [http://211.228.163.31/30stair/inflate/inflate.php?pname=inflate inflate]
          * [http://211.228.163.31/30stair/mobile/mobile.php?pname=mobile moblie]
          * [http://211.228.163.31/30stair/bridging/bridging.php?pname=bridging&stair=15 bridging - binary indexed tree를 이용한 Up Sequence 문제]
  • OurMajorLangIsCAndCPlusPlus/XML . . . . 35 matches
          <name>김상섭</name>
          <name>김민경</name>
          <name>송수생</name>
          <name>조현태</name>
          <name>김민경</name>
          <name>송수생</name>
          <name>조현태</name>
         쿼리 - zeropage//name
         <name>김상섭</name>
         <name>김민경</name>
         <name>송수생</name>
         <name>조현태</name>
         <name>김민경</name>
         <name>송수생</name>
         <name>조현태</name>
          <name>김민경</name>
          <name>송수생</name>
          <name>조현태</name>
  • 새싹교실/2012/startLine . . . . 32 matches
         void printCalender(int nameOfDay, int year, int month);
         // 달의 첫 날의 요일(nameOfDay)과 마지막 날의 수를 받아서 1~endDayOfMonth까지 출력합니다.
         void printDate(int nameOfDay, int endDayOfMonth);
         void printFirstTab(int nameOfDay);
         int calculateNameOfNextMonthFirstDay(int nameOfDay, int year, int month);
         int calculateNameOfLastDay(int nameOfDay, int year, int month);
         char *printMonthName(int i);
          // year와 요일(nameOfDay)을 입력받는 부분.
          int year = 0, nameOfDay = 0;
          printf("Enter the name of day(0:sun ~ 6:sat) : ");
          scanf("%d", &nameOfDay);
          printCalender(nameOfDay, year, month);
          nameOfDay = calculateNameOfNextMonthFirstDay(nameOfDay, year, month);
          p.name이 쓰레기 값으로 채워지는 것 같습니다. 그래서 strcat을 사용하면 p.name의 뒷부분(p.name[99]의 뒷부분)에 "홍길동" 내용이 붙습니다.
          이런 상황을 피하기 위해서는 처음에 p를 초기화 하고 사용하거나 memset(p.name, 0, sizeof(char)*100);을 하는 방법이 있습니다.
          char name[100];
          char real_name[100];
          strcat(p.name, "홍길동");
          char *name;
         Account *createAccount(char *name); // Account에 깔끔하게 이름을 할당하기 위해서는 문자열 함수가 필요할 것이다.
  • MoniWikiPo . . . . 29 matches
         msgid "Name"
         msgid "No filename given"
         msgid ": Rename"
         #: ../plugin/UploadedFiles.php:278 ../plugin/rename.php:77 ../wikilib.php:882
         msgid "Enter a page name"
         msgid "Normalize this page name"
         #: ../plugin/rename.php:19
         msgid "\"%s\" is renamed !"
         #: ../plugin/rename.php:35
         #: ../plugin/rename.php:43
         msgid "'%s' is renamed as '%s' successfully."
         #: ../plugin/rename.php:51
         msgid "Fail to rename \"%s\" !"
         #: ../plugin/rename.php:58
         msgid "Rename \"%s\" ?"
         #: ../plugin/rename.php:63
         msgid "Old name:"
         #: ../plugin/rename.php:64
         msgid "New name:"
         #: ../plugin/rename.php:69
  • ACM_ICPC/2012년스터디 . . . . 27 matches
          * 아시아 정보올림피아드/koi_aio: [http://211.228.163.31/pool/koi_aio/koi_aio.php?pname=koi_aio] (옥상 Vol1 koi_aio)
          * 초콜릿/coci_coko : [http://211.228.163.31/pool/coci_coko/coci_coko.php?pname=coci_coko] (옥상Vol3 coci_coko)
          * 이기적인 소/usa_selfish : [http://211.228.163.31/pool/usa_selfish/usa_selfish.php?pname=usa_selfish 이기적인 소]
          * koi_spra - [http://211.228.163.31/pool/koi_spra/koi_spra.php?pname=koi_spra] (dovelet)
          * koi_cha - [http://211.228.163.31/pool/koi_cha/koi_cha.php?pname=koi_cha] (dovelet)
          * koi_cha - [http://211.228.163.31/pool/koi_cha/koi_cha.php?pname=koi_cha] (dovelet)
          * DP 문제(21) - [http://211.228.163.31/30stair/seat/seat.php?pname=seat 자리배치], [http://211.228.163.31/30stair/seat/seat.php?pname=seat 긋기게임]
          * Recursion 문제(9) - [http://211.228.163.31/30stair/omok/omok.php?pname=omok 오목], [http://211.228.163.31/30stair/necklace/necklace.php?pname=necklace 목걸이]
          * 퀵정렬, BinSearch(10) - [http://211.228.163.31/30stair/notes/notes.php?pname=notes music notes]
          * Stack 문제 - [http://211.228.163.31/30stair/seat/seat.php?pname=seat bad hair day], [http://211.228.163.31/30stair/seat/seat.php?pname=seat 히스토그램]
          * BackTracking 문제(25) - [http://211.228.163.31/30stair/eating_puzzle/eating_puzzle.php?pname=eating_puzzle eating_puzzle], [http://211.228.163.31/30stair/scales/scales.php?pname=scales scales]
          * tree 문제(15) - [http://211.228.163.31/30stair/treeornot/treeornot.php?pname=treeornot treeornot]
          * pattern matching - [http://211.228.163.31/30stair/seek/seek.php?pname=seek seek]
          * DP (21) [http://211.228.163.31/30stair/scv/scv.php?pname=scv SCV자원채취]
          * Dynamic Programming 문제(25) - [http://211.228.163.31/30stair/partition/partition.php?pname=partition partition], [http://211.228.163.31/30stair/inflate/inflate.php?pname=inflate inflate]
          * Tree 문제(15) - [http://211.228.163.31/30stair/binary_tree/binary_tree.php?pname=binary_tree binary_tree], [http://211.228.163.31/30stair/nca/nca.php?pname=nca nca], [http://211.228.163.31/30stair/treeornot/treeornot.php?pname=treeornot treeornot]
          * Graph, Dfs 문제(16) - [http://211.228.163.31/30stair/dfs/dfs.php?pname=dfs dfs], [http://211.228.163.31/30stair/virus1/virus1.php?pname=virus1 virus1], [http://211.228.163.31/30stair/euler/euler.php?pname=euler euler]
          * [http://211.228.163.31/30stair/rectangle/rectangle.php?pname=rectangle Histogram]
  • AcceleratedC++/Chapter13 . . . . 27 matches
          std::string name() const;
          std::string name() const;
          Core, Grad의 생성자 4가지. 각기의 클래스에 따라 다르게 행동하게 되는 read, grade 함수. Core 클래스의 name, read-common 함수.
         string Core::name() const { return n; }
          return c1.name() < c2.name();
         비록 함수가 요구하는 인자값은 Core 클래스 이지만 Grad는 Core를 기반으로해서 파생된 클래스이기 때문에 이 경우 name();를 호출하게 되면 g 객체의 Core::name() 부분이 호출된다.
          std::string name() const;
          maxlen = max(maxlen, record.name().size());
          cout<<students[i].name()
          <<string(maxlen + 1 - students[i].name.size(), ' ');
          maxlen = max(maxlen, record.name().size());
          cout<<students[i].name()
          <<string(maxlen + 1 - students[i].name.size(), ' ');
          maxlen = max(maxlen, record->name().size());// dereference
          // write the names and grades
          cout << students[i]->name()
          << string(maxlen + 1 - students[i]->name().size(), ' ');
          std::string name() const {
          if (cp) return cp->name();
          return s1.name() < s2.name();
  • CivaProject . . . . 27 matches
         namespace civa { namespace io {
         }} // namespace civa::io
         namespace civa { namespace lang {
         template<typename ElementType> class Array;
         //template<typename ElementType> typedef shared_ptr< Array<ElementType> > Array_Handle;
         }} // namespace civa::lang
         namespace civa { namespace io {
         }} // namespace civa::io
         namespace civa { namespace lang {
         template<typename ElementType>
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
         namespace civa { namespace lang {
          //return getClass().getName() + "@" + Integer.toHexString(hashCode());
         }} // namespace civa::lang
         namespace civa { namespace lang {
         }} // namespace civa::lang
  • ErdosNumbers/황재선 . . . . 27 matches
          private ArrayList<String> nameList;
          private String[] extractNames(String line) {
          String[] peopleName = divide[0].split(",");
          for (int i = 0; i < peopleName.length; i++)
          peopleName[i] = peopleName[i].trim();
          String[] people = new String[peopleName.length/2];
          for (int i = 0; i < peopleName.length; i+=2) {
          people[i/2] = peopleName[i] + ", " + peopleName[i+1];
          for(String name : people) {
          if (name.compareTo("Erdos, P.") == 0) {
          nameList = new ArrayList<String>();
          for(String name : people) {
          if (tm.containsKey(name)) {
          nameList.add(name);
          nameList.clear();
          for(String name : people) {
          if (name.compareTo("Erdos, P.") != 0)
          tm.put(name, "1");
          for(String name : people) {
          if (!isInclude(name)) {
  • EightQueenProblem/김형용 . . . . 26 matches
          def __init__(self, name):
          self.name = name
          self.x = self.name-1
          map[self.x][self.y] = self.name
          if oldQueen != 0 and oldQueen != self.name:
          if oldQueen != 0 and oldQueen != self.name:
          if oldQueen !=0 and oldQueen != self.name:
          if oldQueen !=0 and oldQueen != self.name:
         def iterate(q, name):
          if q[name].isFight() is None and q[name].getPosition()[1] != 7:
          a = q[name].moveRight()
          q[name].remove()
          q = movePreviousQueen(q, name-1)
          q[name].setPosition(name-1, 0)
         def movePreviousQueen(q, name):
          q[name].moveRight()
          if name == 1: return q
          iterate(q, name)
          for name in range(1,9):
          q[name] = Queen(name)
  • 새싹교실/2012/AClass/4회차 . . . . 26 matches
          YOU name ="color";
          printf("name=%s \n",name);
         name =color
         typedef문에서 기존 데이터형 char를 새로운 데이터형 이름으로 *YOU를 정의했고 YOU name이라 정의하면 이는 char *name로 나타낸것과 같다.
         char name[];
         printf("age : %d\n name : %s \n",stu[i].age,stu[i].name);
          char Name[20];
         - 데이터를 넣을 Name이라는 변수와 다음 노드를 가리킬수 있도록 하는 Next포인터 변수를 선언했다.
          char *name;
          char *name;
          Std[0].name="곽길문";
          Std[1].name="도상희";
          Std[2].name="한송이";
          Std[3].name="황혜림";
          printf("%s\t%d\t%c\n",Std[i].name,Std[i].age,Std[i].sex);
          char name[20];
          printf("%s %d %d\n",aclass[i].name,aclass[i].num,aclass[i].age);
         NODE*CreateNode(char name [])
         Strcpy(NewNode->Name,name);
          char name[10];
  • ErdosNumbers/문보창 . . . . 25 matches
         using namespace std;
          char name[MAX_STR];
         bool make_map(char name[][MAX_STR], int num);
         void insert_list(char * name);
         int serch_erdos_num(char * name);
          strcpy(head[0]->next->name, "Erdos, P.");
          char name[10][MAX_STR];
          name[num_person][j] = '\0';
          name[num_person][j] = thesis[i];
          name[num_person][j] = '\0';
          bool isMake = make_map(name, num_person + 1); // 맵에 추가되었다면
         bool make_map(char name[][MAX_STR], int num)
          if (strcmp(name[i], temp->name) == 0)
          insert_list(name[i]);
         void insert_list(char * name)
          strcpy(ptr->name, name);
         int serch_erdos_num(char * name)
          if (strcmp(temp->name, name) == 0)
          char name[20];
          cin.getline(name, 20, '\n');
  • JavaScript/2011년스터디/서지혜 . . . . 25 matches
          <meta name="Generator" content="EditPlus">
          <meta name="Author" content="">
          <meta name="Keywords" content="">
          <meta name="Description" content="">
          <form name=f>
          <input type=text name=t value="" size=30>
         function MyClass(id, name){
          this.name = name;
         MyClass.prototype.name1 = "name1";
         class_test.name2 = "name2";
         document.write(class_test.name1); // 여기서 상속이 일어나야함....
         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() {
  • MedusaCppStudy/석우 . . . . 24 matches
         using namespace std;
         using namespace std;
         using namespace std;
          string name;
          while (cin >> word.name)
          if (word.name == ";")
          if (sentence[i].name == word.name)
          if (word.name[word.name.size() - 1] == '.')
          word.name.resize(word.name.size() - 1);
          for(string::size_type i = 0; i < word.name.size(); i++)
          strlwr(&word.name[i]);
          return x.name < y.name;
          cout << sentence[j].name << "\t" << sentence[j].count << endl;
         using namespace std;
          string name;
          vec[i].name = drinks[i];
          if (drink == vec[i].name)
          throw domain_error("Run out of " + vec[i].name + "!");
          if (i == 5 && drink != vec[i].name)
          cout << "come out " << vec[i].name << "\t" << "rest number: "
  • .bashrc . . . . 23 matches
         alias make='xtitle Making $(basename $PWD) ; make'
          xtitle The $(basename $1|tr -d .[:digit:]) manual
         function ff() { find . -name '*'$1'*' ; } # 파일 찾기
         function fe() { find . -name '*'$1'*' -exec $2 {} \; ; } # 파일을 찾아서 $2 의 인자로 실행
          find . -type f -name "${2:-*}" -print | xargs grep -sin "$1" | \
          filename=${file##*/}
          case "$filename" in
          */*) dirname==${file%/*} ;;
          *) dirname=.;;
          nf=$(echo $filename | tr A-Z a-z)
          newname="${dirname}/${nf}"
          if [ "$nf" != "$filename" ]; then
          mv "$file" "$newname"
          echo "lowercase: $file --> $newname"
          local pid pname sig="-TERM" # 기본 시그널
          pname=$(my_ps | awk '$1~var { print $5 }' var=$pid )
          if ask "Kill process $pid <$pname> with signal $sig?"
          echo -e "\nAdditionnal information:$NC " ; uname -a
         complete -A hostname rsh rcp telnet rlogin r ftp ping disk
          # if prev argument is -f, return possible filename completions.
  • AcceleratedC++/Chapter9 . . . . 23 matches
          std::string name;
          std::string name;
          in>>name>>midterm>>final;
          * 객체 내부의 데이터를 직접적으로 접근 가능하다. 예를 들어서 s.name으로 접근할 필요없다.
          std::string name;
          std::string name;
          std::string name;
          std::string name() const {return n;}
          name 멤버 변수에 직접적으로 접근하는 대신에 name()함수를 만들어서 접근하도록 만들었다. const 함수이므로 멤버변수의 변경을 불허한다. 리턴값이 복사된 것이기 때문에 변경을 하더라도 멤버변수에 영향을 주지는 않는다.
          name 멤버 함수와 같이 클래스 내부에 정의를 하는 것은 inline으로 함수를 정의하는 것도 동일한 효과를 가진다. 이렇게 멤버변수에 접근을 위해서 만들어지는 함수를 통칭 '''접근함수(accessor function)'''이라고 부른다.
          return x.name() < y.name();
          std::string name() const {return n;}
          std::string name() const {return n;}
          std::string name() const { return n; }
          // as defined in 9.2.1/157, and changed to read into `n' instead of `name'
          return x.name() < y.name();
          maxlen = max(maxlen, record.name().size()); // changed
          // write the names and grades
          cout << students[i].name() // this and the next line changed
          << string(maxlen + 1 - students[i].name().size(), ' ');
  • Ant/JUnitAndFtp . . . . 23 matches
         <project name="servletspike" basedir="." default="reporttoftp">
          <property name="build" value="build"/>
          <property name="lib" value="lib"/>
          <property name="src" value="src"/>
          <property name="dist" value="dist"/>
          <property name="report" value="reports"/>
          <property name="distlibdir" value=""/>
          <property name="ftpuserid" value="userid"/>
          <property name="ftpuserpass" value="password"/>
          <property name="ftpserverurl" value="free1002.nameip.net"/>
          <property name="ftpserverport" value="21000"/>
          <property name="ftptestreportpath" value="/1002/web/htmlreport"/>
          <target name="init">
          <target name="compile" depends="init" >
          <target name="dist" depends="compile">
          <target name="unittest" depends="compile">
          <include name="Simple*"/>
          <include name="TEST-*.xml"/>
          <target name="reporttoftp" depends="unittest">
          <include name="*.*"/>
  • BusSimulation/조현태 . . . . 23 matches
         using namespace std;
         using namespace std;
         station::station(int input_station_number, char *input_name, int input_percent, int input_size )
          strcpy(name,input_name);
          cout << name << "역이 생성되었습니다.\n";
          cout << name << "역이 파괴되었습니다.\n";
          cout << name << "역에 사람이 한명 생성되었습니다.\n";
         int road::Build(char *input_name, int input_percent, int where, int input_size)
          buildings[where]=new station(number_station,input_name,input_percent,input_size);
          char name[256];
         using namespace std;
         using namespace std;
         station::station(int input_station_number, char *input_name, int input_percent, int input_size, int input_where)
          strcpy(name,input_name);
          cout << name << "역이 생성되었습니다.\n";
          cout << name << "역이 파괴되었습니다.\n";
          cout << name << "역에 사람이 한명 생성되었습니다.\n";
         int road::Build(char *input_name, int input_percent, int where, int input_size)
          buildings[i]=new station(number_station,input_name,input_percent,input_size,where);
          buildings[0]=new station(number_station,input_name,input_percent,input_size,where);
  • MoreEffectiveC++/Miscellany . . . . 23 matches
         당신의 코드를 변화가 필요할때, 그 효과를 지역화(지역화:localized) 시키도록 디자인 해라. 가능한한 캡슐화 하여라:구체적인 구현은 private 하라. 광범위하게 적용해야 할곳이 있다면 이름없는(unamed) namespace나, file-static객체 나 함수(Item 31참고)를 사용하라. 가상 기초 클래스가 주도하는 디자인은 피하라. 왜냐하면 그러한 클래스는 그들로 부터 유도된 모든 클래스가 초기화 해야만 한다. - 그들이 직접적으로 유도되지 않은 경우도(Item 4참고) if-than-else을 개단식으로 사용한 RTTI 기반의 디자인을 피하라.(Item 31참고) 항상 클래스의 계층은 변화한다. 각 코드들은 업데이트 되어야만 한다. 그리고 만약 하나를 읽어 버린다면, 당신의 컴파일러로 부터 아무런 warning를 받을수 없을 것이다.
          string name;
         여기에서 우리가 생각해볼 관점은 총 네가지가 필요하다.:name mangling, initialization of statics, dynamic memory allocation, and data structure compatibility.
          === Name mangling : 이름 조정 ===
         당신도 알다 시피, name mangling(이름 조정:이후 name mangling로 씀) 당신의 C++ 컴파일러가 당신의 프로그램상에서 각 함수에 유일한 이름을 부여하는 작업이다. C에서 이러한 작업은 필요가 없었다. 왜냐하면, 당신은 함수 이름을 오버로드(overload)할수가 없었기 때문이다. 그렇지만 C++ 프로그래머들은 최소한 몇개 함수에 같은 이름을 쓴다.(예를들어서, iostream 라이브러리를 생각해보자. 여기에는 몇가지 버전이나 operator<< 와 operator>>가 있다. ) 오버로딩(overloading)은 대부분의 링커들에게 불편한 존재이다. 왜냐하면 링커들은 일반적으로 같은 이름으로 된 다양한 함수들에 대하여 어두운 시각을 가진다. name magling은 링커들의 진실성의 승인이다.;특별히 링커들이 보통 모든 함수 이름에 대하여 유일하다는 사실에 대하여
         C++의 테투리에 머물러 있다면, name mangling은 당신과 그리 관계 있는 것 같지 않다. 만약 당신이 컴파일러가 xyzzy라고 magling한 drawLine이라는 함수를 가지고 있다면 당신은 항상 drawLine이라고 사용하고, 오브젝트 파일에서 xyzzy라고 교체되어 쓰는것에는 주의를 기울일 필요가 없다.
         그렇지만 만약 drawLine가 C함수라면, drawLine 함수를 호출할때 drawLine으로 포함하는 컴파일러된 버전으로 오브젝트( 혹은 동적 링크 라이브러리 등) 파일에 포함되어 있다.;name mangle이 되지 않은 체로 되어 있다. 당신이 이 둘을 모두 섞어서 프로그램 하려고 노력하면, 에러가 날것이다. 왜냐하면 링커는 xyzzy의 호출되는 함수를 찾고, 그에 관한 함수가 없기 때문이다.
         이런 문제를 해결하기 위하여, C++ 컴파일러에게 해당 함수에 name mangle을 수행하지 않도록 알려야 할 방법이 필요하다. C든, assempler, FORTRAN, Lisp, Forth나 니가 가진 무슨 언어간에, 다른 언어에서 작성되어진 name mangle 처리된 함수를 원할수 없다.(예, 이 언어들에 COBOL도 들어가겠지만 당신이 쓰는가?) 결곡, 만약 C함수인 drawLine을 호출하면 그것은 진짜로 drawLine을 호출하고, 당신의 오브젝트 코드역시 그 이름 그대로 변화없이 사용한다.
         이러한 name mangle을 막기 위하여, C++의 에서는 '''extern "C"'''를 직접 사용한다.
         // name mangle하지 않는 처리
         extern "C"를 쓰는것을 당연시 생각하는 함정에 빠지지 마라, extern "Pascal" 이나 extern "FROTRAN" 만이 쓰이는 경우도 있다.하지만 최소한 표준은 아니다. 가장 좋은 방법인 extern "C"는 C에서 작성된 함수들과 관계 있다는 것을 확신하는건 아니지만, 만약 C에서 작성된 것처럼 해당 함수를 호출할 수 있다는 의미이다. (기술적으로 extern "C" 는 C와의 연결을 가진 함수를 의미하지만, 꼭 그런것 만은 아니다. 그렇지만 name mangle을 방지 한다는 것 만은 확실하다.)
         // 이 함수는 어셈블러에 있다. 함수를 name mangle하지 않는다.
         당신은 C++의 함수를 선언할때조차 extern "C"를 사용할수 있다. 이것은 C++에서 라이브러리를 작성할때 다른 프로그래밍 언어들에 대한 지원을 하고 싶을때 유용하다. C++함수에 대하여 name mangle을 금지해서 당신의 클라이언트들이 당신이 mangle을 적용한 함수 대신에, 자연스럽게 명시적으로 사용할수 있다.
         종종 당신은 name mangle를 원하지 않은 함수를 많이 가지고 있을 것인데, 이 모든것 앞에 모두 extern "C" 를 붙이기에는 귀찮다. 다행스럽게도 이에 대한 지원 역시 다음과 같은 모습으로 표현할수 있다.
         extern "C" { // 이 영역의 함수는 모두 name mangle가 적용되지 않는다.
         그런 방법에 이용하는건, "표준" 적인 name mangle 알고리즘이란 없다. 다른 컴파일러는 다른 방법으로 name mangle 을 막는 방법을 제공한다. 이는 좋은 것이다. 만약에 모든 컴파일러가 같은 방법으로 name mangle을 수행 하면, 당신은 아마도 그들이 만들어 내는 알맞은 코드에 대한 생각에 안심해 할지 모른다. 만약 당신이 정확하지 않은 C++ 컴파일러로 부터 생성된 객체를 혼용하면 링크중에 에러를 발생할수 있는 좋은 기회를 맞이할것이다. 왜냐하면, mangle처리된 이름을 찾을수 없기 때문이다. 이것은 당신에게 알맞음을 따지는 또다른 문제를 의미하고, 또 도좋은 해결책을 찾아야 함을 의미한다.
         일단 name mangle에 관한 내용을 익혔다면, C++코드에서 main 이전과 이후에 많은 코드들이 수행된다는 사실에 관해서 생각해볼 필요가 있다. 특별히, 전역 이름 공간, 파일 영역상의 정적(static) 클래스 객체는 보통 main 보다 먼저 실행된다. 이 과정이 ''static initialization'' 이라고 알려져 있다. 이는 프로그램의 실행시점 간에 C와 C++ 프로그램에 대한 방법으로 완전히 다른 방향을 취한다. 비슷하게, static initialization으로 만들어진 객체는 반드시 그들의 파괴자를 static destruct 동안에 불러주어야 한다.;그러한 과정은 일반적으로 main 이후에 진행된다.
          * '''새로운 개념의 추가''' : RTTI, namespace, bool, mutable과 explicit keyword, enum을 위한 오벌드(overload) 연산자 능력, 클래스 정의 내부에서 이용한 완전한 정적 클래스 멤버 초기화 증력
  • 2010php/방명록만들기 . . . . 21 matches
          name char(10),
         echo($obj->name);
         이름  <input type='text' name='input_name' maxlength='10' size='10'>    
         비밀번호  <input type="password" name='input_pw'size='4' maxlength='4'>
         <input type = "radio" name = "status" value = "1" size = "40" checked><img src="http://cfile234.uf.daum.net/image/152622034C88B1DC682870">
         <input type = "radio" name = "status" value = "2" size = "40"><img src="http://cfile223.uf.daum.net/image/162622034C88B1DC696BEC">
         <input type = "radio" name = "status" value = "3" size = "40"><img src="http://cfile206.uf.daum.net/image/142622034C88B1DC6AA52F">
         <input type = "radio" name = "status" value = "4" size = "40"><img src="http://cfile232.uf.daum.net/image/152622034C88B1DC6BFF47">
         <input type = "radio" name = "status" value = "5" size = "40"><img src="http://cfile234.uf.daum.net/image/162622034C88B1DC6C0395">
         <textarea name='context' rows='4' cols='50'></textarea>
         if (strlen($_POST['input_name']) > 10 )
          $posted_name = substr($_POST['input_name'],0,10);
          $posted_name = $_POST['input_name'];
         $query = "insert into guest (name, pw, status, contents, date) values ('$posted_name', '$posted_pw', '$posted_status', '$posted_context', '$date')";
         if(($posted_name!="")&&($posted_pw!="")&&($posted_pw!=""))
          echo("<br>기본정보 : $name $no $pw $status $date <br>");
         $name=mysql_result($result,$i,0);
  • 5인용C++스터디/클래스상속 . . . . 21 matches
          char fname[MAX_LEN];
          char lname[MAX_LEN];
          void set_fname( char fn[] ) { strcpy(fname, fn); };
          void set_lname( char ln[] ) { strcpy(lname, ln); };
          char *get_name( char *fullname );
          strcpy(fname, fn);
          strcpy(lname, ln);
         char *person::get_name(char fullname[])
          strcpy(fullname, fname);
          strcat(fullname, " ");
          strcat(fullname, lname);
          return fullname;
          cout<<"\nperson cho : "<<cho.get_name(full);
          cout<<"\nperson blank : "<<blank.get_name(full);
          cout<<"\nEmployee park : "<< park.get_name(full);
  • 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;
  • VendingMachine/세연/1002 . . . . 21 matches
         const int DRINKNAME_MAXLENGTH = 255;
          char drinkNames[TOTAL_DRINK_TYPE][DRINKNAME_MAXLENGTH] = {"coke", "juice", "tea", "cofee", "milk"};
          strcpy(s_drink[i].name , drinkNames[i]);
         using namespace std;
         const int DRINKNAME_MAXLENGTH = 255;
          char name[DRINKNAME_MAXLENGTH];
          char drinkNames[TOTAL_DRINK_TYPE][DRINKNAME_MAXLENGTH] = {"coke", "juice", "tea", "cofee", "milk"};
          strcpy(s_drink[i].name , drinkNames[i]);
          cout << i + 1 << "." << s_drink[i].name << "\t\t" << s_drink[i].price << "\t" << s_drink[i].amount << "\n";
          cout << i + 1 << "." << s_drink[i].name << "\t" << s_drink[i].amount << "\n";
          cout << i + 1 << "." << s_drink[i].name << "\t" << s_drink[i].amount << "\n";
          << s_drink[drinkIndex].name << "\t\t"
         using namespace std;
         const int DRINKNAME_MAXLENGTH = 255;
          char name[DRINKNAME_MAXLENGTH];
          char drinkNames[TOTAL_DRINK_TYPE][DRINKNAME_MAXLENGTH] = {"coke", "juice", "tea", "cofee", "milk"};
          strcpy(s_drink[i].name , drinkNames[i]);
          << s_drink[drinkIndex].name << "\t\t"
          << s_drink[drinkIndex].name << "\t"
         using namespace std;
  • .vimrc . . . . 20 matches
          call InsertFname()
          let fname = expand("%:t")
          let fname = substitute(fname, "cpp", "h", "g")
          exe "normal A " . """ . fname . """
         function! InsertFname()
          " Convert newname.h to _NEWNAME_H_
          let fname = expand("%:t")
          let cname = "C" . substitute(fname, "\.h", "", "g")
          let fname = toupper(fname)
          let fname = substitute(fname, "\.", "_", "g")
          exe "normal A " . "___" . fname . "___"
          exe "normal A " . "___" . fname . "___"
          exe "normal A " . "// ___" . fname . "___"
          exe "normal A" . cname . " {"
          exe "normal A" . "\n" . cname . "() {}\nvirtual ~" . cname . "() {}"
  • NamedPipe . . . . 20 matches
         = NamedPipe =
         A named pipe is a named, one-way or duplex pipe for communication between the pipe server and one or more pipe clients. All instances of a
         named pipe share the same pipe name, but each instance has its own buffers and handles, and provides a separate conduit for client-server communication. The use of instances enables multiple pipe clients to use the same named pipe simultaneously.
         Any process can access named pipes, subject to security checks, making named pipes an easy form of communication between related or unrelated processes. Named pipes can be used to provide communication between processes on the same computer or between processes on different computers across a network.
         Any process can act as both a server and a client, making peer-to-peer communication possible. As used here, the term pipe server refers to a process that creates a named pipe, and the term pipe client refers to a process that connects to an instance of a named pipe.
         Pipe란 두 프로세스간의 통신을 위해 만들어진 것으로 Named Pipe는 말 그대로 이름이 있는 파이프라는 것이다. 이는 다른 컴퓨터와도 네트워크를
          LPTSTR lpszPipename = "\\.\pipe\mynamedpipe"; // 파이프 이름
         // The main loop creates an instance of the named pipe and
          hPipe = CreateNamedPipe(
          lpszPipename, // pipe name
          fConnected = ConnectNamedPipe(hPipe, NULL) ?
          DisconnectNamedPipe(hPipe);
          LPTSTR lpszPipename = "\\.\pipe\mynamedpipe";
         // Try to open a named pipe; wait for it, if necessary.
          lpszPipename, // pipe name
          if (! WaitNamedPipe(lpszPipename, 20000) )
          fSuccess = SetNamedPipeHandleState(
          MyErrExit("SetNamedPipeHandleState");
         실제 예제 파일 NamedPipe를 이용한 Chat Program [http://www.zeropage.org/pds/20031103027/NamedPipe.zip]
         || {{{~cpp CallNamedPipe}}} || 메세지 형식의 Named Pipe를 Connect할 때 쓰이는 함수 ||
  • CppStudy_2002_1/과제1/CherryBoy . . . . 19 matches
         using namespace std;
         using namespace std;
          char name[30];
         void print(candybar &, char * name="millenium Munch",double weight=2.85,int cal=350);
         void print(candybar &candy,char * name,double weight,int cal)
          candy.name[i]=name[i];
          cout << "캔디바의 이름\t:\t" << candy.name <<endl;
         using namespace std;
         using namespace std;
          char fullname[Len];
         void setgolf(golf & g, const char * name, int hc);
          cout << "What's U'r name?\n";
          cin >> g.fullname;
          if(g.fullname==NULL)
         void setgolf(golf & g, const char * name, int hc)
          strcpy(g.fullname,name);
          cout << "Name \t:\t" << g.fullname << endl;
  • ErdosNumbers/조현태 . . . . 19 matches
         using namespace std;
         char TARGET_NAME[]="Erdos, P.";
          datas->process_erdos_number(TARGET_NAME);
          char* names;
          char* get_name();
         human_data::human_data(char* input_names)
          str_copy(&names,input_names);
          if (NULL!=names)
          delete names;
         char* human_data::get_name()
          return names;
         void data_manager::creat_man(char* input_name)
          temp_mans[number_mans]=new human_data(input_name);
         int data_manager::such_man(char* target_name)
          if (0==str_cmp(target_name,mans[i]->get_name()))
         void data_manager::process_erdos_number(char* target_name)
          int target_man_number=such_man(target_name);
         int data_manager::get_score(char* target_name)
          int temp_target_number=such_man(target_name);
  • C++스터디_2005여름/도서관리프로그램/남도연 . . . . 18 matches
          char book_name[30];
         using namespace std;
         using namespace std;
          cin >> k->book_name;
          char name[30];
          cin>>name;
          if(strcmp(find->book_name,name)==0)
          cout<<"책 제목 : "<<find->book_name<<endl;
          cout<<"책 제목 : "<<find->book_name<<endl;
          char name_temp[30];
          cin >> name_temp;
          if(strcmp(lent->book_name,name_temp)==0){
          char restoration_name[30];
          cin >> restoration_name;
          if(strcmp(restore->book_name,restoration_name)==0)
  • CppStudy_2002_1/과제1/상협 . . . . 18 matches
         using namespace std;
         using namespace std;
         using namespace std;
          char fullname[Len];
         void setgolf(golf &g, const char *name,int hc);
         using namespace std;
          char name[30];
          cout<<"Input the name: ";
          cin >>name;
          strcpy(g.fullname,name);
          if(name==NULL)
         void setgolf(golf &g, const char *name, int hc)
          strcpy(g.fullname,name);
          cout<<g.fullname<<"\t"<<g.handicap<<'\n';
         using namespace std;
         using namespace std;
  • LoveCalculator/허아영 . . . . 17 matches
         void get_names(char *first_person, char *second_person);
         int sum_name(char name[25]);
          get_names(first_person, second_person);
         void get_names(char *first_person, char *second_person)
          get_names(first_person, second_person);
          first_person_sum = sum_name(first_person);
          second_person_sum = sum_name(second_person);
         int sum_name(char name[25])
          while(name[i] > 0)
          if(name[i] >= 65 && name[i] <= 90)
          sum = sum + name[i] - 64;
          }else if(name[i] >= 97 && name[i] <= 122)
          sum = sum + name[i] - 96;
  • 새싹교실/2012/주먹밥 . . . . 17 matches
          char name[40];
         scanf("%s, %f",a.name,&(a.value)); //a.name의 입력과 a.value의 입력이 다른것에 주의! 이건 배열과 일반변수와의 차이점에서 설명했습니다.
         printf("%s %.2f\n",a.name,a.value); //그냥 불러오기
         printf("%s %.2f\n",b->name,b->value); //->참조형으로 불러오기
          char name[40];
          printf("%s\t", (pcal+i)->name); //이름을. 출력합니다
          scanf("%s", name);
          if(strcmp(name, "end") == 0)
          if(strcmp(name, (pcal+i)->name) == 0){
         imagename = 1;
          if(imagename == 4){
          imagename = 1;
          image.src = imagename + '.jpg';
          imagename = imagename + 1;
  • C 스터디_2005여름/학점계산프로그램/김태훈김상섭 . . . . 16 matches
         using namespace std;
          setname(n);
          void setname(string n)
          name = n;
          string getname() { return name; }
          string name;
         using namespace std;
         void getdata(vector<Score>& ban,const char* filename);
          cout << i->getname() << "\t" << i->getavg() << endl;
          cout << i->getname() << "\t" << i->getavg() << endl;
         void getdata(vector<Score>& ban,const char* filename){
          ifstream fin(filename);
          string name;
          fin >> name; // 이름
          temp = Score(name,scoretmp);
  • CppStudy_2002_1/과제1/Yggdrasil . . . . 16 matches
          char *name;
          answer.name=company;
          cout<<"\n상표: "<<anycandy.name;
          char fullname[Len];
         void setgolf(golf &g, const char *name, int hc);
          cin>>g.fullname;
          if(g.fullname=='\0')
         void setgolf(golf &g, const char *name, int hc)
          int n=strlen(name);
          g.fullname[i]=name[i];
          cout<<"\nGolfer's Name: "<<g.fullname<<endl;
          cout<<g.fullname<<"'s Handicap: "<<g.handicap;
          char name[40];
          cin>>name;
          setgolf(golfer1, name, handi);
  • C++스터디_2005여름/도서관리프로그램/조현태 . . . . 15 matches
         using namespace std;
         void print_line(char* temp_name, char* temp_writer, char* temp_isbn)
          cout << "책의 이름 : " << temp_name << "\n";
          char temp_name[256];
          cin.getline(temp_name,256);
          print_line(temp_name,temp_writer,temp_isbn);
          datas->input_data(temp_name,temp_writer,temp_isbn);
          char temp_char[256], temp_name[256], temp_writer[256], temp_isbn[256];
          datas->return_line(where, temp_name, temp_writer, temp_isbn);
          print_line(temp_name,temp_writer,temp_isbn);
         void book_database::input_data(char* input_name, char* input_writer, char* input_isbn)
          temp_datas[0][number_data]=new char[get_size(input_name)];
          str_copy(temp_datas[0][number_data],input_name);
         void book_database::return_line(int number, char* temp_name, char* temp_writer, char* temp_isbn)
          str_copy(temp_name,datas[0][number]);
  • C++스터디_2005여름/학점계산프로그램/허아영 . . . . 15 matches
          char name[STUDENT_NUM][10];
          //char sort_grade_name[STUDENT_NUM][10];
          void name_find(); // 이름을 파일에서 받아서 저장.
         using namespace std;
          a.name_find();
         using namespace std;
         void Student::name_find()
          fin.getline(name[i], 10, ':');
          cout << name[i] << endl;
          cout << name[i];
          strcpy(temp, name[j]);
          strcpy(name[j], name[i]);
          strcpy(name[i], temp);
         using namespace std;
  • Linux/필수명령어/용법 . . . . 15 matches
         - Enter login name for new account (^C to quit): blade
         - Full name: Park Chan Wook ,,사용자 전체 이름을 입력
         -name 파일명 : 찾고자 하는 파일의 이름을 정한다. 와일드 카드도 가능하다.
         - $ find /bin -name ro*
         - Login Name Tty Idle Login Time Office Office Phone
         hostname
         - hostname [ 호스트이름 ]
         - $ hostname
         longname
         - longname
         longname은 옵션을 가지지 않는다. 이름은 /etc/utmp 파일을 알아낸다.
         - $ longname
         - $ paste -d' ' namelist.tmp /home/data.tmp
         uname
         - uname [ -snvma ]
         - $ uname -sm
  • 덜덜덜/숙제제출페이지 . . . . 15 matches
          char name[5][100];
          scanf("%s", name[a]);
          printf("%s의 평균점수는 %.2f입니다.n", name[a], (grade1[a]+grade2[a]+grade3[a])/3);
          char name[5][10];
          printf("name : ");
          scanf(" %s", &name[a]);
          printf("%s의 평균은 %d이다.", name[a], average[a]);
          char name[5][10];
          scanf(" %s" , &name[a]);
          printf(" %s의 평균은 %d이다.n" , name[a] , (korean[a]+math[a]+english[a])/3);
         너가 지금 짠건 한명만 받고 한명의 평균만 낸거고 ㅋ 그렇게 5명의 이름을 모두 받기위해서 char name [5][10]; 이런식으로 2중배열로 메모리를 잡아주어서
         5명의 이름을 모두 받게 한거양 scanf("%s" , &name[a]); 에서 a는 for문안에 있는 증가하는 변수잖으 각각의 이름을 받기위해서 저렇게 해준거지
          char name[10]; //이름
          scanf("%s", &student[a].name);
          printf("%s의 평균은 %f입니다. n" , student[a].name, student[a].average);
  • AcceleratedC++/Chapter1 . . . . 14 matches
         // ask for the person's name, and greet the person
          // ask for the person's name
          std::cout << "Please enter your first name: ";
          // read the name
          std::string name;
          std::cin >> name;
          std::cout << "Hello, " << name << "!" << std::endl;
         // ask for the person's name, and generate a framed greeting
          std::cout << "Please enter your first name: ";
          std::string name;
          std::cin >> name;
          const std::string greeting = "Hello, " + name + "!";
         interface : 객체의 타입으로 묵시적으로 내포 되어 있는 것은 인터페이스로서, 해당 타입의 객체에 사용 가능한 연산(operation)들의 집합을 말합니다. name을 string 타입의 변수(이름 있는 객체)로 정의 하게 되며, 우리는 string으로 할 수 있는 모든 일들을 name으로 하고 싶다는 뜻을 묵시적으로 내포하게 됩니다.
  • C++스터디_2005여름/도서관리프로그램/문보창 . . . . 14 matches
          char name[20];
          char * get_name();
         using namespace std;
          name[0] = writer[0] = ISBN[0] = NULL;
          cin >> name;
         char * Book::get_name()
          return name;
          strcpy(name, a.name);
         using namespace std;
          strcmp((*temp).get_name(), b.get_name()) == 0)
          cout << (*temp).get_name();
         using namespace std;
  • JavaScript/2011년스터디 . . . . 14 matches
         alter table tablename add column [추가할 컬럼명] [추가할 컬럼 데이타형]
         alter table tablename modify column [변경할 컬럼명] [변경할 컬럼 타입]
         alter table tablename change column [기존 컬럼명] [변경할 컬럼명] [변경할 컬럼타입]
         alter table tablename drop column [삭제할 컬럼명]
         alter table tablename add index 인덱스명(인덱스를 줄 컬럼1 , 인덱스를 줄 컬럼2, ... )
         alter table tablename drop index 인덱스명;
         alter table tablename add primary key (키를 줄 컬럼명1 , 키를 줄 컬럼명2, ...)
         alter table tablename drop primary key;
         alter table 기존테이블명 rename 새로운테이블명
         CREATE [UNIQUE] INDEX index_name ON tbl_name (col_name[(length]),... )
         DROP INDEX index_name on tlb_name
  • 데블스캠프2005/월요일/번지점프를했다 . . . . 14 matches
          def __init__(self, name, numFloors):
          self.name = name
          def floors(self, floorNames):
          for name in floorNames :
          self.floors.append(Floor(name, buildingName))
          return self.name
          def __init__(self, floorName, buildingName):
          self.name = floorName
          self.buildingName = buildingName
          def buildRooms(self, roomNames):
          for roomTup in roomNames:
          for name in roomTup:
          rooms.append(Room(name))
          return self.name
          def __init__(self, roomName, floorName):
          self.roomName = roomName
          self.floorName = floorName
          def __init__(self, name, currentPosition):
          self.name = name
          return self.name
  • 데블스캠프2013/셋째날/머신러닝 . . . . 14 matches
         namespace ZPDC2013HELL
         using namespace std;
         using namespace std;
         void readFile(int ** target, const char * filename, int row, int col);
         void readFile(int ** target, const char * filename, int row, int col){
          FILE * file = fopen(filename, "r");
         using namespace std;
         using namespace std;
          ifs.open("comp_names8165x1.txt");
          ifs.open("label_names20x1.txt");
         using namespace std;
         void readFile(DoubleArray & target, const char * filename);
         void readFile(DoubleArray & target, const char * filename){
          FILE * file = fopen(filename, "r");
  • ProgrammingLanguageClass/2006/Report3 . . . . 13 matches
         but not pass-by-name. A technique for implementing pass-by-name is to
         Suppose that whenever a programmer wants to pass a parameter by name in C, it is
         required to prefix the keyword name just in front of both the actual and formal
         Sum (name i + j, 1, n, name V[i]);
         You are required to implement C preprocessor that supports the pass-by-name
         parameter-passing method. The preprocessor should transform C programs with name
         parameters prefixed with name as if they were called by name without causing any
         이번 숙제에서 구현하려는 것은 첫번째의 의미로 지연형 계산(delayed computation)을 의미합니다. call-by-name, call-by-need를 통해 함수에게 넘어오는 일련의 매개변수를 thunk라는 이름으로 부릅니다. 간단히 말해 thunk라는 것은 실행시에 계산되어 변수의 값이 얻어진다는 의미입니다. (이는 기존의 함수에서 파라메터 패싱에서 Call 시에 변수에 바인딩되는 것과는 다릅니다.) 이런 기능이 최초로 구현된 Algol60입니다.
         by passing parameters by name.
          comment term is passed by-name;
  • TermProject/재니 . . . . 13 matches
         using namespace std;
         char name[students][7] = {"고재선", "권현진", "김동욱", "김무영", "김민재",
         char sort_name[students + 1][7];
          sort_name[i][j] = name[i][j];
          cout << sort_name[i] << "t" << " " << sort_stats[i][0] // 이름과 학번 출력
          sort_name[students][k] = sort_name[j][k];
          sort_name[j][k] = sort_name[i][k];
          sort_name[i][k] = sort_name[students][k];
          cout << sort_name[i] << "t "; // 이름을 출력함
  • CPPStudy_2005_1/STL성적처리_4 . . . . 12 matches
         using namespace std;
          string name;
          string name;
          fin >> name >> name >> name >> name >> name;
          while(fin >> name)
          temp.name = name;
          cout << i->name << " ";
  • Data전송 . . . . 12 matches
         <form name="sub" method="post" action="receive.jsp">
         ID : <input type="text" name="id"> <br>
         PW : <input type="password" name="pass">
         <select name="name">
         <input type="checkbox" name="hobby" value="sport">sport
         <input type="checkbox" name="hobby" value="music">music
         <input type="checkbox" name="hobby" value="movie">movie
         <input type="checkbox" name="hobby" value="drama">drama
         <input type="radio" name="season" value="spring" checked>spring<br>
         <input type="radio" name="season" value="summer">summer<br>
          String list = request.getParameter("name");
  • [Lovely]boy^_^/USACO/GreedyGiftGivers . . . . 12 matches
         using namespace std;
          string name;
          fin >> name;
          List[name] = 0;
          ManList.push_back(name);
          string tempname;
          fin >> tempname;
          List[tempname] -= tempmoney;
          string tempname2;
          fin >> tempname2;
          List[tempname2] += dist;
          List[tempname] += (tempmoney - dist * numto);
  • whiteblue/LinkedListAddressMemo . . . . 12 matches
         using namespace std;
          char name[20];
         data * enterName(data * firstData); // case 1
         data * deleteName(data * firstData); // case 2
          firstData = enterName(firstData);
          firstData = deleteName(firstData);
         data * enterName(data * firstData)
          cout << "Enter name :";
          strcpy(firstData->name, nam);
          strcpy(firstData->name, nam);
         data * deleteName(data * firstData)
          cout << "Enter name what you want : ";
          if ( !(strcmp(firstData->name, nam) == 0) )
          strcpy(temp_co->name, firstData->name);
          strcpy(temp_co->name, firstData->name);
          cout << "○" << temp->name << "\t" << temp->address << "\t" << temp->addressNumber << endl;
  • 데블스캠프2010/다섯째날/ObjectCraft/미션2/강소현 . . . . 12 matches
          char *name;
          printf("%s가 %s에게 데미지 %d를 입혀 HP가 %d가 되었다.\n",zerg1.name, zerg2.name, zerg1.attack, zerg2.HP);
          printf("%s가 %s에게 데미지 %d를 입혀 HP가 %d가 되었다.\n",zerg2.name, zerg1.name, zerg2.attack, zerg1.HP);
          char *name;
          newZerg->name="ㅡㅁㅡ";
          newZerg2->name="ㅇㅁㅇ";
          printf("%s가 %s에게 데미지 %d를 입혀 HP가 %d가 되었다.\n",a->name, b->name, a->attack, b->HP);
          printf("%s가 %s에게 데미지 %d를 입혀 HP가 %d가 되었다.\n",b->name, a->name, b->attack, a->HP);
  • 데블스캠프2012/다섯째날/C로배우는C++원리 . . . . 12 matches
          char name[11];
         void setName(void* this,const char* name) {
          strncpy(this_person->name, name, 11);
          printf("name = %s, age = %d\n", this_person->name, this_person->age);
         void createPerson(void* this, const char* name, const int age){
          setName(this, name);
         void createStudent(void* this, const char* name, const int age, const char* studentID){
          createPerson(this, name, age);
          printf("name = %s, age = %d, studentID = %s\n", this_person->name, this_person->age, this_student->studentID);
  • 벡터/곽세환,조재화 . . . . 12 matches
         using namespace std;
          string name;
         bool compareName(student a, student b);
          a.name = "재화";
          b.name = "세환";
          c.name = "김군";
          d.name = "이군";
          e.name = "박양";
          cout << i->name << " " << i->score << endl;
          sort(vec.begin(), vec.end(), compareName);
          cout << i->name << " " << i->score << endl;
          cout<< (student)vec[i].name << endl;
          return a.name < b.name;
         bool compareName(student a, student b)
  • 벡터/김태훈 . . . . 12 matches
         using namespace std;
         struct student{string name; int score;};
          st[0].name = "build";
          st[1].name = "deb";
          st[2].name = "finde";
          st[3].name = "inew";
          st[4].name = "ilbo";
          cout << i->name <<"\t"<<i->score<< endl;
          cout << i->name <<"\t"<<i->score<< endl;
          cout << (*i).name << endl;
          return a.name < b.name;
  • 정모/2011.4.4/CodeRace/강소현 . . . . 12 matches
          layton.setName("Layton");
          luke.setName("Luke");
          badUncle.setName("Bad");
          int [] name = new int[num];
          name[i] = input.nextInt();
          if(mustCheck(num,name)){
          switch(name[i]){
          if(a.getTownName().equals(ship.getPosition().getTownName())){
          public static boolean mustCheck(int num, int [] name){
          if(num == 1 && name[0]==2){//Luke 혼자 가면
          private String name;
          public void setName(String name){
          this.name = name;
          public String getName(){
          return name;
          private String townName;
          public Town(String townName){
          this.townName = townName;
          public void setTownName(String townName){
          this.townName = townName;
  • AcceleratedC++/Chapter3 . . . . 11 matches
          // ask for and read the students's name
          cout << "Please enter your first name: ";
          string name;
          cin >> name;
          const string greeting = "Hello, " + name + "!";
         using namespace std;
          // ask for and read the students's name
          cout << "Please enter your first name: ";
          string name;
          cin >> name;
          const string greeting = "Hello, " + name + "!";
  • AcceleratedC++/Chapter4 . . . . 11 matches
         return_type function_name(parameter lists...) { 함수 내에서 할 일들 }
         using namespace std;
          cout << "Please enter your first name: ";
          string name;
          cin >> name;
          cout << "Hello, " << name << "!";
          string name;
          is >> s.name >> s.midterm >> s.final;
          return x.name < y.name;
          * 헤더 파일에서는 using namespace 이런거 쓰지 말고 그냥 풀 네임 써주자. std:vector 이렇게...
  • AproximateBinaryTree/김상섭 . . . . 11 matches
         using namespace std;
          string name;
          return a.name < b.name;
          dp->name = dp->nodes[min_index].name;
          cout << dp->name << " ";
          string name;
          cin >> name >> value;
          temp.name = name;
  • MoreEffectiveC++/Exception . . . . 11 matches
          Image(const string& imageDataFileName);
          AudioClip(const string& audioDataFileName);
          BookEntry(const string& name,
          const string& imageFileName = "",
          const string& audioClipFileName = "");
          string the Name;
          BookEntry::BookEntry(const string& name,
          const string& imageFileName,
          const string& audioClipFileName)
          :theName(name), theAddress(address), theImage(0), theAudioClip(0)
          if (imageFileName != ""){ // 이미지를 생성한다.
          theImage = new Image(imageFileName);
          if (audioClipFileName != "") { // 소리 정보를 생성한다.
          theAudioCilp = new AudioClip( audioClipFileName);
          if (audioClipFileName != "") {
          theAudioClip = new AudioClip(audioClipFileName);
          BookEntry::BookEntry(const string& name,
          const string& imageFileName,
          const string& audioClipFileName)
          :theName(name), theAddress(address), theImage(0), theAudioClip(0)
  • ZPBoard/PHPStudy/MySQL . . . . 11 matches
          * ex) $result = mysql_db_query("zp2002","select * from addressbook order by binary name");
         mysql_query("select * from table1 by order name");
         mysql_query("select * from table1 by order name");
         mysql_db_query("database1", "select * from table1 by order name");
         $result = mysql_db_query("zp2002","select * from addressbook order by binary name");
          echo "<tr> <td>", $row["name"], "</td><td align=center>", $row["phone"], "</td> </tr>";
         이름 <INPUT type="text" name="name" value="" size=10 maxlength=10>
         전화번호 <INPUT type="text" name="phone" value="" size=15 maxlength=15>
         if ($_POST[name] != "" && $_POST[phone] != "") {
          mysql_query("insert into addressbook values('$_POST[name]', '$_POST[phone]')");
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/송지원 . . . . 11 matches
          String filename;
          filename = f;
          FileReader fr = new FileReader(filename);
          String fname = "D:/analysis.txt";
          FileWriter fw = new FileWriter(fname);
          FileReader fr = new FileReader(filename);
          String filename;
          filename = f;
          FileReader fr = new FileReader(filename);
          String fname = "D:/bayesResult.txt";
          FileWriter fw = new FileWriter(fname);
  • 데블스캠프2013/둘째날/API . . . . 11 matches
          이름 <input name="name" size="10">
          내용 <input name="text" size="40">
          mysql_query('set names utf8');
          $q = mysql_query("select id,name,text,ip from board order by id desc");
          $name = $data[1];
          echo "<tr><td>$id</td><td>$name</td><td>$text</td><td><a href='http://$ip'>$ip</a></td></tr>";
          mysql_query('set names utf8');
          if (!trim($_POST['name']) || !trim($_POST['text'])) {
          mysql_query("insert into board(name,text,ip) values ('{$_POST['name']}', '{$_POST['text']}', '{$_SERVER['REMOTE_ADDR']}')");
  • 벡터/황재선 . . . . 11 matches
         using namespace std;
          string name;
         bool compareWithName(student a, student b);
          stu[0].name = "황재선";
          stu[1].name = "조재화";
          stu[2].name = "곽세환";
          stu[3].name = "김회영";
          stu[4].name = "김회광";
          sort(ss.begin(), ss.end(), compareWithName);
          cout << (*i).name << "\t" << (*i).score << endl;
          cout << (*i).name << "\t" << (*i).score << endl;
         bool compareWithName(student a, student b)
          return a.name < b.name;
  • 새싹교실/2012/주먹밥/이소라때리기게임 . . . . 11 matches
          char name[40];
          char name[40];
          printf("%s가 %s를 힐해줍니다. 피가 : %d 만큼 채워졌습니다!\n",who->name,who->name,temp);
          printf("%s가 %s를 발로찹니다. 데미지 : %d 만큼 입혔습니다!\n",who->name,target->name,temp);
          printf("%s가 %s를 때립니다. 데미지 : %d 만큼 입혔습니다!\n",who->name,target->name,temp);
          scanf("%s",me->name);
          for(i =0;i<CLASSSIZE;i++) printf("%d %s\n",classList[i].type,classList[i].name);
          printf("당신의 직업은 %s 입니다.\n",classList[select-1].name);
  • DebuggingSeminar_2005/AutoExp.dat . . . . 10 matches
         ; An AutoExpand rule is a line with the name of a type, an equals
         ; part in angle brackets names a member of the type and an
         ; type Name of the type (may be followed by <*> for template
         ; text Any text.Usually the name of the member to display,
         ; or a shorthand name for the member.
         ; member Name of a member to display.
         ; The special format <,t> specifies the name of the most-derived
         ; types via the EE Add-in API. The first argument is the DLL name, the
         ; second argument is the name of the export from the DLL to use. For
         CWinApp =<,t> <m_pszAppName,s>
         CFile =hFile=<m_hFile> name=<m_strFileName.m_pchData,s>
         CRuntimeClass =<m_lpszClassName,s>
         CStdioFile =FILE*=<m_pStream> name=<m_strFilename.m_pchData,s>
  • EightQueenProblem/용쟁호투SQL . . . . 10 matches
         IF EXISTS(SELECT name FROM sysobjects WHERE name = N'temp_queen_attack' AND type = 'U') DROP TABLE temp_queen_attack
         IF EXISTS (SELECT name FROM sysobjects WHERE name = N'p_temp_reset' AND type = 'P') DROP PROCEDURE p_temp_reset
         IF EXISTS (SELECT name FROM sysobjects WHERE name = N'p_check_attack' AND type = 'P') DROP PROCEDURE p_check_attack
         IF EXISTS (SELECT name FROM sysobjects WHERE name = N'p_create_queen' AND type = 'P') DROP PROCEDURE p_create_queen
         IF EXISTS (SELECT name FROM sysobjects WHERE name = N'p_queen' AND type = 'P') DROP PROCEDURE p_queen
  • JavaScript/2011년스터디/김수경 . . . . 10 matches
          for (var name in prop) {
          prototype[name] = typeof prop[name] == "function" &&
          typeof _super[name] == "function" && fnTest.test(prop[name]) ?
          (function(name, fn){
          this._super = _super[name];
          })(name, prop[name]) :
          prop[name];
  • MoreEffectiveC++/Techniques1of3 . . . . 10 matches
         다음과 같이 가상 함수로 출력을 구현하고, 전역이든, namespace로 묶여 있든, 비 멤버 함수로 스트림 객체와의 출력의 고리를 연결시켜서, 비멤버 함수가 가상함수처럼 돌아가도록 구현한다.
         전역 공간 사용에 대한 문제의 해결책의 또다른 접근 방법이라고 한다면, name space를 사용하는 것이다. 다음과 같이 단순히 PrintingStuff name space로 묶어 버린다.
         namespace PrintingStuff { // namespace의 시작
          class Printer { // namespace로서 이 클래스는
          public: // PrintingStuff namespace 안에 존재하는 것이다.
          { // PrintingStuff namespace안에 존재 하는 것이다.
         } // namespace의 끝
         using PrintingStuff::thePrinter; // thePrinter를 현재의 namespace안에서
  • NSIS/Reference . . . . 10 matches
         || Name || "zp_exam_project" || 인스톨러 이름 (보통은 인스톨하려는 프로그램의 이름) ||
         || Caption || "zeropage" || 인스톨러의 titlebar 관련 caption. default는 "''Name'' Setup" ||
         || Function || function_name || 하당 함수이름으로 함수 선언 ||
         || SetOutPath || outpath || output path를 설정한뒤 ($OUTDIR), 만일 해당 path가 존재하지 않으면 만든다. 반드시 full-pathname 이여야 하며 일반적으로 $INSTDIR 이 이용된다. ||
         || File || ([/r] file|wildcard [...]) | /oname=file.data infile.dat||해당 output path ($OUTDIR)에 화일들을 추가한다. 와일드카드 (?, *) 등을 이용할 수 있다. 만일 /r 옵션을 이용할 경우, 해당 화일들와 디렉토리들이 재귀적으로 추가된다. (rm -rf의 'r' 옵션의 의미를 생각하길) ||
         || Rename || [/REBOOTOK] source_file dest_file || 화일이름을 변경한다. (또는 Move 한다.) ||
         || WriteRegStr || root_key subkey key_name value || 레지스트리에 기록. root키의 경우 다음이 가능. HKCR - HKEY_CLASSES_ROOT ||
         || WriteINIStr || ini_filename section_name entry_name value || ini 화일에 기록. [section_name] entry_name=value 식으로 저장됨 ||
         || GetFullPathName || . || . ||
         || GetTempFileName || . || . ||
  • NUnit/C++예제 . . . . 10 matches
         using namespace System;
         using namespace NUnit::Framework;
         namespace NUnitSamples
         namespace NUnitSamples {
          * namespace 귀찮으면 안만들어도 된다.
         using namespace System;
         using namespace NUnit::Framework;
         using namespace System;
         using namespace NUnit::Framework;
         namespace TestCase
  • XMLStudy_2002/Start . . . . 10 matches
         <!ELEMENT SENDER (NAME,ADDRESS)>
         <!ELEMENT RECEIVER (NAME,ADDRESS)>
         <!ELEMENT NAME (#PCDATA)>
         <NAME>이호동</NAME>
         <NAME>김낙랑</NAME>
         10진수의 경우 코드 값이 n일 때<!ENTITY name "&#n;">
         16진수의 경우 코드 값이 n일 때<!ENTITY name "&@xn;">
         &name;
         <currency><country>영국</country><name>파운드</name><unit>£</unit></currency>
         <currency><country>일본</country><name>엔</name><unit>¥</unit></currency>
         <!ATTLIST element_name
         attribute_name attribute_type default_type "default_value">
         <!ATTLIST element_name>
  • ZeroPage_200_OK/소스 . . . . 10 matches
          .menu > li:hover > span {background-color: blue; color: white;} /* (elementName)(.elementName)(:pseudo-class) */
          <label for="form_id">ID </label><input id="form_id" size="5" maxlength="5" name="id" type="text" value="abc" /> <br/>
          <label for="form_psw">PSW</label><input id="form_psw" size="5" name="password" type="password" value="abc" /><br/>
          <input name="group "type="hidden" value="abc" /><br/>
          <textarea name="detail">abc
          <input name="upload" type="file"/><br/>
          <input name="chk" type="checkbox" value="abc" id="form_chk"/><label for="form_chk">abc</label><br/>
          <input type="checkbox" name="chk[]" value="a" checked="checked" /> a<br />
          <input type="checkbox" name="chk[]" value="b" checked="checked" /> b<br />
          <input type="checkbox" name="chk[]" value="c" checked="checked" /> c<br />
          <select name="combo">
  • 니젤프림/BuilderPattern . . . . 10 matches
          protected String name;
          public PlanComponent(String name, String description) {
          this.name = name;
          public String getName() {
          public String getName() {
          return name;
          public Plan(String name, String description) {
          super(name, description);
          System.out.println("\n" + getName());
          public PlanItem(String name, String description) {
          super(name, description);
          public String getName() {
          return name;
          System.out.println("\t" + getName() + "\n");
  • 데블스캠프2010/다섯째날/ObjectCraft/미션3/김상호 . . . . 10 matches
          int name;
          printf("저글링 %d이 저글링 %d에게 데미지 %d를 입혀 HP가 %d가 되었다.\n", a.name, b.name, a.gong, b.hp);
          printf("저글링 %d이 전사했습니다.\n", b.name);
          a[n].name=n;
          printf("저글링 %d이 저글링 %d에게 데미지 %d를 입혀 HP가 %d가 되었다.\n", this->name, b.name, this->gong, b.hp);
          printf("저글링 %d이 전사했습니다.\n", b.name);
          this->name=n;
          int name;
  • 벡터/박능규 . . . . 10 matches
         using namespace std;
         struct student{string name; int score;};
          st[0].name = "nj";
          st[1].name = "jk";
          st[2].name = "hj";
          st[3].name = "gh";
          cout << i->name <<"\t"<< i->score << endl;
          cout << i->name<<"\t"<<i->score<< endl;
          return a.name < b.name;
  • 영호의바이러스공부페이지 . . . . 10 matches
          Name: Tiny
          mov dx,9Eh ;offset of filename found
         named John Mcafee gets his greedy hands on them and turns them into big
         filename equ 30 ; Offset in DTA of ASCIIZ filename
          mov dx,offset newdir ; Load DX with address of pathname
          mov dx,dta+filename ; Get the filename to change attribute
          mov dx,dta+filename
          mov dx,dta+filename ; Feed it the filename
  • 이승한/mysql . . . . 10 matches
          레코드 수정 : update <tableName> set <colum Name> = <update val> where <조건식>
         $dbconn = mysql_connect("localhost", "<userName>", "<userPassword>"); //localhost는 접속 주소인듯.
         $query = "select name, eng, math from score";
          $name = mysql_result($result, $i, 0);
          echo("$name");
          <form name = "write_form" method = "post" action = "./new.html?mode=process">
          이름 : <input type = "text" name = "name" size = "10"><br>
          영어 : <input type = "text" name = "eng" size = "5"><br>
          수학 : <input type = "text" name = "math" size = "5"><br>
          $query = "insert into score (name, eng, math) values ('$name', '$eng', '$math')";
  • 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++/Chapter14 . . . . 9 matches
          maxlen = max(maxlen, record->name().size()); // `Handle<T>::->'
          // write the names and grades
          cout << students[i]->name()
          << string(maxlen + 1 - students[i]->name().size(), ' ');
          std::string name() const {
          if (cp) return cp->name();
          return s1.name() < s2.name();
          // the rest of the class looks like `Ref_handle' except for its name
  • BigBang . . . . 9 matches
         using namespace std;
          * namespace : 이름 중복을 막기 위해 사용
          * using namespace NAME; -> NAMEnamespace를 해당 scope 안에서 이용하겠다는 것
          * 기본 함수들의 namespace
          * #ifndef NAME : #define NAME이 되어있지 않는 경우에 작동한다. 주로 헤더파일 중복 include를 막기 위해 사용한다.
         #ifndef _HEADER_FILE_NAME_ // naming rule이 따로 있는진 모르겠음
         #define _HEADER_FILE_NAME_
         #endif _HEADER_FILE_NAME_
          * 가변 인수 void NAME (int name, …)
          using namespace std;
          * namespace로 같은 이름을 가진 클래스들을 사용해보자
          * tr1은 C++0x에서 제정된 것들이 tr1 namespace로 정의되어 있었는데 C++11이 나오면서 다 통합되었다고 한다.
  • CPPStudy_2005_1/STL성적처리_1_class . . . . 9 matches
         using namespace std;
          string m_name;
          void setName(string name);
          string getName() {return m_name;};
         void Student::setName(string name)
          m_name = name;
          string name, temp;
          m_fin>> name;
          student->setName(temp);
          out<<it->getName()<<"\t";
  • DNS와BIND . . . . 9 matches
          네임서버환경설정파일 - /etc/named.conf (BIND 버전 8)
          리소스 레코드들의 (일반적)순서 - SOA(start of authority) 레코드, NS(name server) 레코드, 기타 레코드, A(address), PTR(pointer), CNAME(canonical name)
          CNAME - 별명을 그에 해당하는 정규(canonical)네임으로 맵핑하는 리소스 레코드
         bigt.movie.edu. IN CNAME terminator.movie.edu.
         dh.movie.edu. IN CNAME diehard.movie.edu.
         wh.movie.edu. IN CNAME wormhole.movie.edu.
         /etc/named.conf
         (db 파일들은 /usr/local/named에 존재한다고 가정)
          directory "/usr/local/named";
         bigt IN CNAME terminator
         dh IN CNAME diehard
         wh IN CNAME wormhole
          /etc/named
          /etc/named -b conf-file (다른곳에 있는 환경설정파일 이용할때)
          grep named /var/adm/messages
  • ErdosNumbers/차영권 . . . . 9 matches
          char name[10];
          author[m][number].name[n++] = *c;
          author[m][number].name[n] = '\0';
          if (strcmp(author[i][j].name, "Erdos, P.") == 0)
          checkErdosNumberTo1(author[n], author[i][k].name, saveBound[n]);
          if (strcmp(search[k], author[i][j].name) == 0)
         void checkErdosNumberTo1(Author *author, char *name, int n)
          if (strcmp(author[i].name, name) == 0)
  • Kongulo . . . . 9 matches
         # * Neither the name of Google Inc. nor the names of its
          '''A very simple password store. The user can supply usernames using the
          each username.'''
          for name in args:
          if name.find(passdata[0]) != -1:
          # [[url1, depth1, { headername : headerval, ... } ], [url2, depth2], {}...]
          help='Comma-delimited list of user IDs at names that will '
         if __name__ == '__main__':
  • PragmaticVersionControlWithCVS/CommonCVSCommands . . . . 9 matches
         symbolic names:
         root@eunviho:~/tmp/sesame# mv color.txt color_renamed.txt
         root@eunviho:~/tmp/sesame# cvs add color_renamed.txt
         cvs add: scheduling file `color_renamed.txt' for addition
         root@eunviho:~/tmp/sesame# cvs commit -m "color.txt renamed"
         /home/CVSHOME/sesame/color_renamed.txt,v <-- color_renamed.txt
         이렇게 관리를 하게되면 원래 존재했던 color.txt라는 파일에 존재하는 기존의 기록들이 삭제되어서 그 파일의 과거파일을 color_rename.txt의 로그로 이용하는 것이 불가하다. 기록이 따로 보관되기 때문이다.
         위에서 보듯 color_renamed.txt라는 파일의 버전이 1.1인 것에 반해서 color.txt가 1.3버전임을 확인할 수 있다.
  • SuperMarket/재니 . . . . 9 matches
         using namespace std;
          char name[10];
          strcpy(product[0].name, "캔디"); product[0].price = 1000;
          strcpy(product[1].name, "디스켓"); product[1].price = 1200;
          strcpy(product[2].name, "마우스"); product[2].price = 5000;
          cout << i << ". " << product[i].name << " " << product[i].price << "원\n";
          cout << product[wantProduct].name << "을 " << wantNum << "개 사셨습니다.\n";
          cout << i << ". " << product[i].name << " " << product[i].num << "개\n";
          cout << product[wantProduct].name << "을 " << wantNum << "개 취소하셨습니다.\n";
  • 데블스캠프2005/월요일/BlueDragon . . . . 9 matches
          self.name = '익명'
          def setName(self, name):
          self.name = name
          print self.name, '은',
          print self.name, self.place , '에 들어왔습니다.'
          self.name = '청룡'
          self.name = '보물상자'
         if __name__ == '__main__':
  • 만년달력/김정현 . . . . 9 matches
          private String[] dayNames= {
          public String getDayName(int year, int month, int day) {
          int reducedDays= getTotalDaysUntil(year, month, day)%dayNames.length;
          return getDayName(reducedDays);
          private String getDayName(int sequence) {
          return dayNames[sequence];
          public String[] getDayNames() {
          return dayNames;
          String[] names= {};
          public void setForm(String[] dayNames, String space) {
          names= dayNames;
          public void setMonth(int year, int month, String startName) {
          for(int i=0;i<names.length;i++) {
          if(startName.equals(names[i])) {
          if(names != null && startIndex != -1)
          if((startIndex + i)%names.length==0) {
          public String getNames(int length) {
          for(String name : names) {
          sw.write(name.substring(0, length) + "\t");
          String startDay= timeInfo.getDayName(year, month, 1);
  • 벡터/임민수 . . . . 9 matches
         using namespace std;
          string name;
          student(string aName, int aScore) // 생성자 ?? !!
          name = aName;
         bool comp_name(student a, student b);
          sort(vector1.begin(), vector1.end(), comp_name);
          cout << (*j).name << endl ;
         bool comp_name(student a, student b)
          return a.name < b.name;
  • 벡터/조동영 . . . . 9 matches
         using namespace std;
          string name;
          return a.name>b.name;
          boy1.name = "a";
          boy2.name ="b";
          boy3.name="c";
          boy4.name="d";
          boy5.name="e";
  • 복/숙제제출 . . . . 9 matches
          char input_name[5][10]; /*이름*/
          printf("이름 : "); scanf("%s",&input_name[i]); printf("\n");
          printf("%s의 성적의 평균은 %d입니다.\n",input_name[i],(input_kore[i]+input_engl[i]+input_math[i])/3);
          char name[5][10];
          printf("\n이름 : "); scanf("%s", name[i]);
          printf("%s님의 평균점수는 %d입니다\n", name[j], sum[j]/3);
          char name[5][10];
          scanf("%s", name[i]);
          printf("%s의 평균점수는 %d입니다\n",name[j],sum[j]/3);
  • 손동일/TelephoneBook . . . . 9 matches
         using namespace std;
          char name[20];
         using namespace std;
         const char *filename = "text.txt";
          cin >> name;
          fout.open(filename, ios::app);
          fout << name << endl;
          fin.open(filename);
         // fout.open(filename, ios::in | ios::out | ios::app );
  • 토비의스프링3/오브젝트와의존관계 . . . . 9 matches
          String name;
          public String getName() {
          return name;
          public void setName(String name) {
          this.name = name;
         || Name || VARCHAR(20) || Not Null ||
          Class.forName("com.mysql.jdbc.Driver");
          PreparedStatement ps = c.prepareStatement("insert into users(id, name, password) values(?,?,?)");
          ps.setString(2, user.getName());
          Class.forName("com.mysql.jdbc.Driver");
          user.setName(rs.getString("name"));
          user.setName("제로페이지");
          System.out.println(user2.getName());
          Class.forName("com.mysql.jdbc.Driver");
          * <name> : 수정자 메소드에서 set부분을 제외한 나머지 부분의 이름이다.
          <property name="connectionMaker ref="myConnectionMaker" />
  • 5인용C++스터디/템플릿 . . . . 8 matches
         using namespace std;
         using namespace std;
         template<typename T>
         using namespace std;
         using namespace std;
         template<typename T>
         template<typename T>
         template<typename T>
  • ASXMetafile . . . . 8 matches
          * <Author>: The author's name .
          * <Copyright>: Detailed copyright information (e.g., company name and copyright year).
          o Windows Media Services Server: File names will start with mms://.
          o HTTP Server: File names will start with http://.
          o Local or network drive: File names will start with file://.
          <Author> The name of the author </Author>
          <Banner href="http://Servername/Path/Banner1.gif">
          <Logo href="http://servername/path/banner2.gif" Style="ICON" />
  • Ant/BuildTemplateExample . . . . 8 matches
         <project name="TestAnt(Ant Project 이름)" default="dist" basedir=".">
          <property name="src" value="."/>
          <property name="build" value="build"/>
          <property name="dist" value="dist"/>
          <target name="init">
          <target name="compile" depends="init">
          <target name="dist" depends="compile">
          <target name="clean">
  • Ant/TaskOne . . . . 8 matches
         <project name="MyProject" default="dist" basedir=".">
          <property name="src" value="."/>
          <property name="build" value="build"/>
          <property name="dist" value="dist"/>
          <target name="init">
          <target name="compile" depends="init">
          <target name="dist" depends="compile">
          <target name="clean">
  • AntTask . . . . 8 matches
         <project name="TestAnt(Ant Project 이름)" default="dist" basedir=".">
          <property name="src" value="."/>
          <property name="build" value="build"/>
          <property name="dist" value="dist"/>
          <target name="init">
          <target name="compile" depends="init">
          <target name="dist" depends="compile">
          <target name="clean">
  • BlueZ . . . . 8 matches
          char name[248] = { 0 };
          memset(name, 0, sizeof(name));
          if (hci_read_remote_name(sock, &(ii+i)->bdaddr, sizeof(name),
          name, 0) < 0)
          strcpy(name, "[unknown]");
          printf("%s %s\n", addr, name);
  • Gof/Singleton . . . . 8 matches
          2. namespace를 줄인다. SingletonPattern은 global variable을 줄임으로서 global variable로 인한 namespace의 낭비를 줄인다.
         registry 는 string name 과 singletons 을 mapping 한다. singleton의 instance가 필요한 경우, registry에 string name으로 해당 singleton 을 요청한다. registry는 대응하는 singleton을 찾아서 (만일 존재한다면) 리턴한다. 이러한 접근방법은 모든 가능한 Singleton class들이나 instance들을 Instance operation이 알 필요가 없도록 한다. 필요한 것은 registry에 등록될 모든 Singleton class들을 위한 일반적인 interface이다.
          static void Register (const char* name, Singleton*);
          static Singleton* Lookup (const char* name);
          static List<NameSingletonPair>* _registry;
         Register operation은 주어진 string name으로 Singleton instance를 등록한다. registry를 단순화시키기 위해 우리는 NameSingletonPair 객체의 리스트에 instance를 저장할 것이다. 각 NameSingletonPair는 name과 instance를 mapping한다. Lookup operation은 주어진 이름을 가지고 singleton을 찾는다. 우리는 다음의 코드에서 environment variable이 원하는 singleton의 이름을 명시하고 있음을 생각할 수 있다.
          const char* singletonName = getenv("SINGLETON");
          _instance = Lookup (singletonName);
  • Java/ServletFilter . . . . 8 matches
          <filter-name>Encoding Filter</filter-name>
          <display-name>Encoding Filter</display-name>
          <param-name>encoding</param-name>
          <filter-name>Encoding Filter</filter-name>
  • JavaStudy2004/클래스상속 . . . . 8 matches
          public String getName() {
          public String name;
          name = "Shape";
          name = "Shape";
          public String getName()
          return name;
          name = "Circle";
          name = "Circle";
          public String getName() {
          return super.getName();
          name = "Rectangle";
          name = "Rectangle";
          * 디폴트 전달인자 : type functionName( type A1, type A2, A3 = 0 );와 같이 값이 전달 되지 않을경우 자동을 전달되는 값을 가지는 함수의 기능을 말합니다.
          예를들면 위 circle 클래스의 getName 메소드에서 사용한 것처럼요 super.getName() 이렇게 --[iruril]
  • MedusaCppStudy/재동 . . . . 8 matches
         using namespace std;
         using namespace std;
          string name;
          return x.name < y.name;
          cout << words[i].name << "\t" << words[i].count << endl;
          if(words[i].name == x)
          newWord.name = x;
  • PythonNetworkProgramming . . . . 8 matches
         if __name__=="__main__":
          peername = conn.getpeername ()
          ClientList.append (peername)
          print "Requested by ", peername
         if __name__ == '__main__':
          def getFileSize(self, aFileName):
          return os.path.getsize(aFileName)
          aFileName='f:/sample.jpg'
          fileSize=self.getFileSize(aFileName)
          f = open(aFileName, "rb")
         if __name__=='__main__':
         if __name__=="__main__":
  • RSSAndAtomCompared . . . . 8 matches
         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.
         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.
         Atom 1.0 provides “author” and “contributor” elements at both the feed and entry level. These elements must contain a name, and also have optional email and URI sub-elements.
          <name>John Doe</name>
  • STL/map . . . . 8 matches
         using namespace std;
          string name;
          while( cin >> name ){
          if ( name.compare("exit") ==0)break;
          if (directory.find(name) != directory.end())
          cout << name << "의 전화번호는"
          << directory[name] << "입니다.n";
          cout << "죄송합니다. 그 이름이 전화 번호부에 없습니다." << name << "n";
  • VendingMachine/세연 . . . . 8 matches
         using namespace std;
          char * name;
          char * drink_name[] = {"coke", "juice", "tea" , "cofee", "milk"};
          s_drink[i].name = drink_name[i];
          cout << i + 1 << "." << s_drink[i].name << "\t\t" << s_drink[i].price << "\t" << s_drink[i].amount << "\n";
          cout << i + 1 << "." << s_drink[i].name << "\t" << s_drink[i].amount << "\n";
          cout << i + 1 << "." << s_drink[i].name << "\t" << s_drink[i].amount << "\n";
  • WebGL . . . . 8 matches
          var canvas = document.getElementsByTagName("canvas");
         GLShader.prototype.getUniformLocation = function(name){
          return this._private.gl.getUniformLocation(this.program, name);
         GLShader.prototype.uniform4fv = function(name, arr){
          this._private.gl.uniform4fv(this.getUniformLocation(name), arr);
         GLShader.prototype.uniform3fv = function(name, arr){
          this._private.gl.uniform3fv(this.getUniformLocation(name), arr);
         GLShader.prototype.uniformMatrix4fv = function(name, arr){
          this._private.gl.uniformMatrix4fv(this.getUniformLocation(name), false, arr);
  • WebLogicSetup . . . . 8 matches
         http://localhost:7001/nameOfFile.jsp 의 형식을 취한다.
          <servlet-name>frsoapaccess</servlet-name> <!-- 서블릿의 alias name -->
          <servlet-name>frsoapaccess</servlet-name> <!-- 서블릿의 alias name -->
         client --------------------------------> <servlet-mapping/>에 따라 <servlet-name/>과 매핑 ---+
  • WikiSlide . . . . 8 matches
          * Name (appears on RecentChanges)
          * A macro is called by "`[[MacroName(parameters)]]`".
         New pages are created by simply adding a new WikiName to an existing page and clicking on it after saving the existing page.
         Below the list of templates you will also find a list of existing pages with a similar name. You should always check this list because someone else might have already started a page about the same subject but named it slightly differently.
         For details see HelpOnPageCreation and WikiName.
          * don't create arbitrary wikinames (`OracleDatabase`, ''not'' `OraCle`)
          * Follow the guidance of the Wiki used about how to name pages etc.
         For the exercises we use your own Wiki-homepage which is usually based on a WikiName `FirstnameLastname`:
          * create and change your homepage (normally `FirstnameLastname`)
  • 데블스캠프2006/화요일/tar/김준석 . . . . 8 matches
         using namespace std;
          char fileName[1024];
          sprintf(fileName, "..\tar\%s", data_dir.name);
          if((read_f = fopen(fileName,"rb"))==NULL){
          fwrite(data_dir.name, 270, 1, write_f);
         using namespace std;
          char fileName[270];
          if (0 == fread(fileName, 270,1, read_f)) break;
          sprintf(fileRoot, "..\devil26_untar\untar\%s", fileName);
         using namespace std;
          sprintf(path, "%s\%s", dir , data_dir.name);
          if(!strcmp(data_dir.name, ".") || !strcmp(data_dir.name, "..")) continue;
  • 벡터/권정욱 . . . . 8 matches
         using namespace std;
          string name;
          student_num1.name = "Park Jin-young";
          student_num2.name = "Kwon Jung-wook";
          student_num3.name = "Lee Jae-hwan";
          student_num4.name = "Kim Su-jin";
          student_num5.name = "Kim Hong-bem";
          cout << (*i).name << "의 성적은 : " << (*i).score << endl;
  • 비밀키/나휘동 . . . . 8 matches
         using namespace std;
          char filename[10];
          cin >> filename;
          ifstream fin(filename);
         using namespace std;
          char filename[10];
          cin >> filename;
          ifstream fin(filename);
  • 새싹교실/2012/새싹교실강사교육/3주차 . . . . 8 matches
          char name[40];
          scanf("%s", (pcal+num)->name);
          char name[40];
          printf("%s\t", (pcal+i)->name);
          scanf("%s", name);
          if(strcmp(name, "end") == 0)
          if(strcmp(name, (pcal+i)->name) == 0){
  • 손동일 . . . . 8 matches
         using namespace std;
          int name;
          if ( vertices[i].name == (int)start )
          if ( vertices[i].name == (int)end )
          else if (vertices[i].neighbor[j][0] == choice->name)
          if (vertices[i].name == choice->neighbor[j][0]
          path[z++] = char(choice->name);
          path[z] = char(choice->name);
  • 조영준/다대다채팅 . . . . 8 matches
         namespace CSharpSocketServer
         namespace CSharpSocketServer
         namespace CSharpSocketServer
          public string name;
          name = dataGet;
          ChatServer.broadcast(name + " joined");
          ChatServer.broadcast(name + " : " + dataGet);
         namespace CSharpSocketClient
  • AcceleratedC++/Chapter2 . . . . 7 matches
         // say what standard-library names we use
          // ask for person's name
          cout << "Please enter your first name: ";
          // read the name
          string name;
          cin >> name;
          const string greeting = "Hello, " + name + "!";
  • Ant . . . . 7 matches
          || name || 프로젝트의 이름 || No ||
          <target name="A"/>[[BR]]
          <target name="B" depends="A"/>[[BR]]
          <target name="C" depends="B"/>[[BR]]
          <target name="D" depends="C,B,A"/>[[BR]]
          <target name="build-module-A" if="module-A-present"/>[[BR]]
          <target name="build-own-fake-module-A" unless="module-A-present"/>[[BR]]
  • AustralianVoting/Leonardong . . . . 7 matches
         using namespace std;
          char name[80];
          char name[80];
          cin.getline( name, 80);
          strcpy( candidator.name, name );
          cout << candidators[i].name << endl;
  • CNight2011/고한종 . . . . 7 matches
         *val_name : 해당 포인터변수가 가르키는 변수의 값을 참조
          typedef struct name{
          }nickname;
          사용할땐 nickname만 써주면 된다.
          struct name{
          사용할때마다 struct name 라고 해야한다.
          }nickname;
  • CPPStudy_2005_1/질문 . . . . 7 matches
          cout << "Please enter your first name: ";
          string name;
          cin >> name;
          cout << "Hello, " << name << "!" << endl;
          * VS6가 무슨이유인지는 모르겠으나 namespace 가 표준을 지원하지 않는 것 같기도하고, 하여간 namespace 문제입니다.
          '''using''' 지시자로 지정된 부분을 '''using namespace std;''' 로 바꾸면 정상적으로 동작합니다.
  • JavaStudy2004/이용재 . . . . 7 matches
          private String name;
          name = JOptionPane.showInputDialog("이름 입력");
          public void my_name_is()
          System.out.println(name);
          Lee.my_name_is();
         함수명이나 변수명을 지을 때 mynameis같이 쓰면 나중에 보거나 딴 사람이 보았을 때 이해하기가 힘들 수 있으니 myNameIs나 my_name_is처럼 각 단어끼리 구분 짓는 습관을 갖는 것이 좋다고 생각합니다. --[강희경]
  • MySQL . . . . 7 matches
         mysql> select * from addressbook order by name asc;
         | name | phone |
         재니가 오늘 물어보는데, ORDER BY name (스트링) 을 하는데, 가나다순으로 정렬이 안된다고 해서.
         | name | char(10) | | | | | <-- name 이 char 타입입니다.
         mysql> select * from addressbook ORDER BY BINARY name;
         | name | phone |
  • NeoCoin/Server . . . . 7 matches
         /etc/resolv.conf : name server를 잡아 준다.
          * nameserver를 맞춘다.
         s : filename
         text/html; w3m -dump %s; nametemplate=%s.html; copiousoutput
         find / -user <사용자> -fstype <파일시스템 타입> !-name "/dev/*" ! -name "/proc/*" -exec ls -lh{} \;
         find ./ -name *.html -exec perl -pi -e `s/<바뀌고>/<바뀔>/g` {} \;
  • Refactoring/ComposingMethods . . . . 7 matches
          * You have a code fragment that can be grouped together.[[BR]]''Turn the fragment into a method whose name explains the purpose of the method.''
          System.out.println( "name:" + _name);
          System.out.println( "name:" + _name);
          * A method's body is just as clear as its name. [[BR]] ''Put the method's body into the body of its callers and remove the method.''
          * You have a complicated expression. [[BR]] ''Put the result of the expression, or parts of the expression,in a temporary variagle with a name that explains the purpose.''
  • Refactoring/MakingMethodCallsSimpler . . . . 7 matches
         == Rename Method ==
         The name of a method does not reveal its purpose.
          ''Change the name of the method''
         http://zeropage.org/~reset/zb/data/RenameMethod.gif
         void setValue (String name, int value) {
          if (name.equals("height"))
          if (name.equals("width"))
  • 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;
  • SummationOfFourPrimes/1002 . . . . 7 matches
         if __name__=="__main__":
          ncalls tottime percall cumtime percall filename:lineno(function)
          ncalls tottime percall cumtime percall filename:lineno(function)
          ncalls tottime percall cumtime percall filename:lineno(function)
          ncalls tottime percall cumtime percall filename:lineno(function)
          ncalls tottime percall cumtime percall filename:lineno(function)
          ncalls tottime percall cumtime percall filename:lineno(function)
  • SuperMarket/세연/재동 . . . . 7 matches
         using namespace std;
          char * name;
          _product[0].name = "캔디";
          _product[1].name = "디스켓";
          _product[2].name = "마우스";
          cout << i + 1 << ". " << _product[i].name << "\t" << _product[i].cost << "\n";
          cout << _product[i].name << "\t" << _product[i].quanty << "\n";
  • VendingMachine/세연/재동 . . . . 7 matches
         using namespace std;
          char * name;
          char * name[] = {"coke","juice","tea","cofee","milk"};
          s_drink[i].name = name[i];
          cout << i + 1 << "." << s_drink[i].name << "\t" << s_drink[i].amount << "\n";
          cout << i + 1 << "." << s_drink[i].name << "\t\t";
  • VendingMachine/재니 . . . . 7 matches
         using namespace std;
          char name[10];
          strcpy(detail[0].name, "사이다");
          strcpy(detail[1].name, "콜라");
          strcpy(detail[2].name, "2% 부족");
          cout << i+1 << ". " << detail[i].name << "t"
          cout << detail[selection - 1].name << "을 선택하셨습니다.n";
  • Yggdrasil/가속된씨플플/1장 . . . . 7 matches
         std::string name1("Rim Youngdong");//생성자. 인자로 받은대로 string객체 초기화
         std::string name2(3, '!');//이것도 생성자. 두번째 인자를 첫번째 인자만큼 채워서 string객체를 초기화. 즉 memset()함수와 비슷한 기능
         std::string name3=name1+name2+"!";//문자열끼리 더할 수 있음. 단, 문자열 리터럴 2개만을 단독으로 조합할 수 없음.
         std::string name4="Rim"+"Youngdong";//위에서 설명한 것처럼, 이런 식으로 문자열 리터럴끼리만 더할 수 없음. 에러 출력.
         std::cout<<name1.size();//strlen()처럼 string객체의 글자수를 리턴하는 함수.
  • radiohead4us/SQLPractice . . . . 7 matches
         1. Find the names of all branches in the loan relation. (4.2.1 The select Clause)
         3. For all customers who have a loan from the bank, find their names, loan numbers and loan amount. (4.2.3 The from Clause)
         4. Find the customer names, loan numbers, and loan amounts for all loans at the Perryridge branch. (4.2.3 The from Clause)
         5. For all customers who have a loan from the bank, find their names, loan numbers, and loan amount. (4.2.5 Tuple Variables)
         6. Find the names of all branches that have assets greater than at least one branch located in Brooklyn. (4.2.5 Tuple Variables)
         7. Find the names of all customers whose street address includes the substring 'Main'. (4.2.6 String Operations)
         14. Find the names of all branches that have assets greater than those of at least one branch located in Brooklyn. (4.6.2 Set Comparison)
  • whiteblue/MyTermProjectForClass . . . . 7 matches
          char name[20];
          char * showName();
         using namespace std;
          strcpy(name, na);
         char * Data::showName()
          return name;
         using namespace std;
          cout << d[arrayNumber[i]].showName()
          cout << d[arrayNumber[i]].showName()
         using namespace std;
         using namespace std;
  • 가위바위보/동기 . . . . 7 matches
         using namespace std;
          char name1[7],name2[7];
          fin.getline(name1,10);
          fin.getline(name2,10);
          cout<<name1<<endl<<name2<<endl;
  • 벡터/김수진 . . . . 7 matches
         using namespace std;
          string name;
          return a.name > b.name;
          student1.name="kim";
          student2.name="lee";
          student3.name="shin";
  • 새싹교실/2012/AClass/3회차 . . . . 7 matches
         char *name;
         stu.name ="kim so ri";
         printf("name : %s\n",stu.name);
          char name[10];
         printf("이I름¬¡× : %s\n",s.name);
         char* name;
  • AcceleratedC++/Chapter5 . . . . 6 matches
          cout << students[i].name << endl;
          cout << (*i).name << endl;
          * (*i).name : 반복자 i가 가리키는 요소의 멤버 name을 말한다. 괄호를 꼭 써주자. 우선순위가 .이 *보다 높기 때문에 에러난다.
          * (*i).name 이렇게 하기 귀찮다. i->name 이렇게 하면 된다.
  • CPPStudy_2005_1/STL성적처리_1 . . . . 6 matches
         using namespace std;
          string name;
          out<<it->name<<" - totalSum : "<<it->total<<" average : "<<it->average<<"\n";
          string name, temp;
          fin>> name;
          student.name = temp;
  • ClassifyByAnagram/Passion . . . . 6 matches
          String filename = "inputFile3.txt";
          InputStream in = new FileInputStream(filename);
          String filename = "inputFile1.txt";
          parser = new Parser(new File(filename));
          String filename = "inputFile3.txt";
          parser = new Parser(new File(filename));
  • ClassifyByAnagram/김재우 . . . . 6 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         namespace AnagramCSharp
         namespace AnagramCSharp
          public AnagramTest( String name ) {
          super( name );
  • JavaNetworkProgramming . . . . 6 matches
          public SimpleOverwritingFileOutputStream(String filename) throws IOException {
          file = new RandomAccessFile(filename,"rw"); //RandomAccessFile은 파일이 존재하지 않으면 자동으로 파일생성 하고 그렇지
          public SeekableFileOutputStream(String filename)throws IOException {
          this(new RandomAccessFile(filename,"rw")); // 자신의 또다른 생성자에게 넘겨준다.--;
          public MarkResetFileInputStream(String filename)throws IOException {
          this(new RandomAccessFile(filename,"r")); //랜덤엑세스 파일을 생성해서 다른 생성자로
          else if(object.getClass().getName().equals("java.io.File"))
  • MoinMoinBugs . . . . 6 matches
         ''Well, Netscape suxx. I send the cookies with the CGI'S path, w/o a hostname, which makes it unique enough. Apparently not for netscape. I'll look into adding the domain, too.''
          * Solve the problem of the Windows filesystem handling a WikiName case-indifferent (i.e. map all deriatives of an existing page to that page).
          * Check whether the passed WikiName is valid when editing pages (so no pages with an invalid WikiName can be created); this could also partly solve the case-insensitive filename problem (do not save pages with a name only differing in case)
          * 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.
         With 0.3, TitleIndex is broken if first letter of Japanese WikiName is multibyte character. This patch works well for me but need to be fixed for other charsets.
          letter = name[0]
          if isUnicodeName(name):
  • PyServlet . . . . 6 matches
          <servlet-name>PyServlet</servlet-name>
          <servlet-name>PyServlet</servlet-name>
          <servlet servlet-name="PyServlet"
          <servlet-mapping url-pattern="*.py" servlet-name="PyServlet"/>
  • Python/DataBase . . . . 6 matches
         host - hostname (NULL : default)
         user - username (NULL)
         db - database name (NULL)
         con =MySQLdb.connect(user="name", passwd="password", db="databasename")
         cur.execute("select * from owiki_page_name")
  • RandomWalk/임민수 . . . . 6 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • STL/string . . . . 6 matches
         string name("1234567890");
         cout << name<<endl;
         string c(name.begin() + 3, name.begin() + 7) ;
         using namespace std;
         using namespace std;
  • ServerBackup . . . . 6 matches
         def uploadFile(filename):
          s = ftplib.FTP('servername')
          f = open(filename,'rb') # file to send
          s.storbinary('STOR %s'%filename, f) # Send the file
         /usr/bin/mysqldump -u <username> -p <password> <databasename> | gzip > /path/to/backup/db/zeropage_`date +%y_%m_%d`.gz
  • SmallTalk/강좌FromHitel/강의3 . . . . 6 matches
         여기서 Username 입력 상자에 여러분의 영문 이름을 넣습니다. 그러면 창 아
         * First Name: 여러분의 이름을 넣습니다. 저의 경우는 ChanHong Kim으로 표
          기되므로, First Name에는 ChanHong을 입력하면 됩니다.
         * Last Name: 여러분의 성씨를 넣습니다. 저의 경우에는 Kim이겠지요?
         * Usrname: "Locked Image" 창에 입력한 여러분의 Username을 입력합니다.
         재 여러분이 설치한 Smalltalk에 대해서는 Username과 Password가 그대로 사
          내용: Username과 Image code.
          font: (Font name: 'Arial' pointSize: 36) bold;
  • SuperMarket/세연 . . . . 6 matches
          char * name;
          s_product[0].name = "캔디";
          s_product[1].name = "디스켓";
          s_product[2].name = "마우스";
          cout << i + 1 << ". " << s_product[i].name << "\t" << s_product[i].cost << "\n";
          cout << s_product[i].name << "\t" << s_product[i].quanty << "\n";
  • SuperMarket/인수 . . . . 6 matches
         using namespace std;
          string _name;
          Goods(const string& name, int cost) : _name(name), _cost(cost) {}
          const string& getName() const
          return _name;
          cout << _havingGoods[i].getName() << " " << _havingGoods[i].getCost() << endl;
          void answerCost(const string& goodsName) const
          if(_havingGoods[i].getName() == goodsName)
          const Goods& findGoods(const string& goodsName) const
          if(_havingGoods[i].getName() == goodsName)
          cout << _buyedGoods[i].getGoods().getName() << " " << _buyedGoods[i].getCount() << endl;
          if(goods.getName() == _buyedGoods[i].getGoods().getName())
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 6 matches
         <Frame name="HelloWoWFrame">
          local baseName
          baseName = GetItemInfo(25)
          baseName = GetItemInfo(i)
          if baseName ~= nil then
          base[count] = baseName
          local baseName = nil
          baseName = GetItemInfo(i)
          until baseName ~= nil
          print(baseName)
         newFrame = CreateFrame("frameType"[, "frameName"[, parentFrame[, "inheritsFrame"]]]);
         frameName
         newFrame:setScript("OnLoad",funcname)
         이렇게 하면 OnLoad라는 이벤트때 funcname이 실행된다.
         <Frame name="HelloWoW">
          <Frame name="HelloWoW">
          <Frame name="Frame1" parent="UIParent" toplevel="true" movable="true" enableMouse="true">
  • WikiSandPage . . . . 6 matches
          <input type="hidden" name="action" value="userform">
          <input type="hidden" size="15" maxlength="20" name="password" value="">
          <input type="hidden" size="15" maxlength="20" name="passwordagain" value="">
          <input type="hidden" size="40" name="email" value="">
          <input type="hidden" size="40" name="user_css" value="">
          <span class="button"><input type="submit" class="button" name="logout" value="로그아웃"></span>
  • 가위바위보/은지 . . . . 6 matches
          char name1[20]; char name2[20];
          fin.getline(name1, 20);
          fin.getline(name2, 20);
          cout << name1 << " : " << win1 << "승 " << same1 << "무 " << lose1 << "패\n";
          cout << name2 << " : " << win2 << "승 " << same2 << "무 " << lose2 << "패\n";
  • 가위바위보/재니 . . . . 6 matches
         using namespace std;
          char name[2][7];
          fin.getline(name[0],7);
          fin.getline(name[1],7);
          cout << name[0] << " " << result[0] << " 승 " << result[1] << " 무 " << result[2] << " 패\n";
          cout << name[1] << " " << 100 - result[0] - result[1] << " 승 " << result[1] << " 무 "
  • 김희성/MTFREADER . . . . 6 matches
          void MakeBinaryFile(char* filename); //MFT를 Binary 그대로 저장한다.
          void MakeTextFile(char* filename, long flag); //MFT 속성을 text 파일로 저장.
          *((unsigned char*)MFT+point+9) = Attribute Name Size
          case 0x30://File Name
          fprintf(fp,"Attribute type : File Name\n");
          fprintf(fp,"File Name Size : %d\n",*((unsigned char*)offset+64));
          fprintf(fp,"File NameSpace : ");
          fprintf(fp,"File Name : ");
         void _MFT_READER::MakeBinaryFile(char* filename)
          fp=fopen(filename,"w");
         void _MFT_READER::MakeTextFile(char* filename, long flag)
          FILE *fp=fopen(filename,"w");
  • 데블스캠프2005/보안 . . . . 6 matches
         void saveToFile(char *filename, char *str)
          FILE *file = fopen(filename, "wb");
         long loadFromFile(char *filename, char *str)
          FILE *file = fopen(filename, "rb");
         void saveToFile(char *filename, char *str);
         long loadFromFile(char *filename, char *str);
  • 벡터/유주영 . . . . 6 matches
         using namespace std;
          string name;
          DarkLJY.name = "juyoung";
          B.name = "gogogo";
          C.name = "hahaha";
          D.name = "good";
  • 빵페이지/도형그리기 . . . . 6 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 알고리즘3주숙제 . . . . 6 matches
         Consider the following problem: one has a directory containing a set of names and a telephone number associated with each name.
         The directory is sorted by alphabetical order of names. It contains n entries which are stored in 2 arrays:
         names (1..n) ; numbers (1..n)
         Given a name and the value n the problem is to find the number associated with the name.
  • 정모/2011.4.4/CodeRace . . . . 6 matches
          static private String name = "";
          public person(String name){this.name = name;}
          System.out.println(name + "은/는 지금 "+city+"에있다");
         using namespace std;
  • 조영준/파스칼삼각형/이전버전 . . . . 6 matches
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
         namespace PascalTriangle
  • 허아영/Cpp연습 . . . . 6 matches
         using namespace std;
          char subject_name[3][5];
          strcpy(subject_name[0], "국어");
          strcpy(subject_name[1], "수학");
          strcpy(subject_name[2], "영어");
          cout << subject_name[i] << " : ";
  • CodeRace/20060105/민경선호재선 . . . . 5 matches
          String temp = list.get(i).getName();
          private String name;
          public Data(String name, int count) {
          this.name = name;
          public String getName() {
          return name;
          return data1.getName().compareTo(data2.getName());
  • EmbedAudioFilesForFireFox . . . . 5 matches
          <param name="FileName" value="URL" />
          <param name="ShowControls" value="1" />
          <param name="ShowDisplay" value="0" />
          <param name="ShowStatusBar" value="1" />
          <param name="AUTOSTART" value="1" />
  • FromDuskTillDawn/조현태 . . . . 5 matches
         using namespace std;
          STown(const char* inputName)
          name = inputName;
          string name;
         STown* SuchOrAddTown(const char* townName)
          if (g_myTowns[i]->name == townName)
          g_myTowns.push_back(new STown(townName));
          char startStationName[BUFFER_SIZE];
          char endStationName[BUFFER_SIZE];
          sscanf(readData, "%s %s %d %d", startStationName, endStationName, &startTime, &delayTime);
          STown* thisStation = SuchOrAddTown(startStationName);
          thisStation->nextTown.push_back(SuchOrAddTown(endStationName));
          sscanf(readData, "%s %s", startStationName, endStationName);
          g_suchStartTown = startStationName;
          g_suchEndTown = endStationName;
          if (g_suchEndTown == suchTown->nextTown[i]->name)
  • JavaStudy2003/세번째과제/곽세환 . . . . 5 matches
          private String name;
          name = "noname";
          public void setName(String n)
          name = n;
          JOptionPane.showMessageDialog(null, "Hello, World!" + " " + name);
          hello1.setName("세환");
  • LinkedList/학생관리프로그램 . . . . 5 matches
         -student 구조체 사용(dept, name, num(1~20)
          char name[10];
          searched->dept, searched->name, searched->number);
          scanf("%s", aStudent->name);
          printf("%s\n",temp->name);
  • Linux/필수명령어 . . . . 5 matches
         || chmod <permission> <filename> || 파일 권한(permissions) 변경||
         || find x -name y -print|| http://bbs.kldp.org/viewtopic.php?t=58197&highlight=find 참조 ||
         || uname || 시스템의 정보를 보여준다. ''console에서 uname -a 를 쳐보자'' ||
         || find x -name y -print|| 디렉토리 x안에서 파일 y를 찾아서 화면에 그 결과를 보여줌||
  • MySQL 설치메뉴얼 . . . . 5 matches
          different versions of Unix, or they may have different names such
          of `mysql'. If so, substitute the appropriate name in the
          The `tar' command creates a directory named `mysql-VERSION-OS'.
          You should add the full pathname of this directory to your
          shown. The value of the option should be the name of the login
         find some information in the `HOST_NAME.err' file in the data directory.
  • PNGFileFormat/FormatUnitTestInPythonLanguage . . . . 5 matches
          im = Image.open(self.png.f.name)
          im = Image.open(self.png.f.name)
         if __name__=='__main__':
          def __init__(self, filename):
          self.f = file(filename, 'r')
  • ProgrammingPearls/Column3 . . . . 5 matches
         using namespace std;
          string name, good, dong, city;
          getline(fin, name);
          cout << "Hello, " << name << ".\nWe'll send a " << good << " to you. \nAddress : "
         using namespace std;
          * 프로그래밍을 쉽게 하기 위해, 편리한 도구(HTML, Name-Value Pairs, 스프레드시트, 데이터 베이스, 등등)를 갖추자는 것이다. 별로 볼 거 없다.
  • R'sSource . . . . 5 matches
         name = raw_input("검색하고 싶은 게이머의 이름을 입력하세요 : ")
         keyGamer = name
         global saveDirName
         saveDirName = name
          print '%s 하위디렉토리에 총 %d 개의 리플레이를 저장하였습니다.' % (saveDirName , savedNum)
          pattern = re.compile('^<a href=\".(.*filename=(.*.rep).*)\".*')
          fileName = matching.group(2)
          #print fileName
          print ' %d 번째 rep화일저장중 : %s ' % (savedNum , fileName)
          if os.path.exists(defaultDir + saveDirName)==0:
          os.mkdir(defaultDir + saveDirName)
          fp = open(defaultDir + saveDirName + '\\' + fileName, 'wb')
         if __name__ == '__main__':
  • RandomWalk2/조현태 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • Refactoring/DealingWithGeneralization . . . . 5 matches
          public Manager (String name, String id, int grade) {
          _name = name;
         public Manager (String name, String id, int grade) {
          super (name, id);
  • Refactoring/OrganizingData . . . . 5 matches
          row.setName("Liverpool");
          * You have a literal number with a paricular meaning. [[BR]] ''Crate a constant, name it after the meaning, and replace the number with it.''
          public String _name;
          private String _name;
          public String getName() {return _name;}
          public void setName(String arg) { _name = arg;}
  • TddWithWebPresentation . . . . 5 matches
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/action/ViewPageAction.py?rev=1.5&content-type=text/plain
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/test_viewpageaction.py?rev=1.2&content-type=text/plain
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/action/ViewPageAction.py?rev=1.6&content-type=text/plain
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/viewpresenter.py?rev=1.1&content-type=text/plain
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/test_viewpageaction.py?rev=1.3&content-type=text/plain
  • UpgradeC++/과제1 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • django/Model . . . . 5 matches
          name= models.CharField(maxlength=10)
         모델에 해당하는 테이블을 생성하는 SQL문은 {{{python manage.py sql <app name>}}}으로 확인할 수 있다. 위에 해당하는 SQL문은 다음과 같다.
          "name" varchar(10) NOT NULL
          name= models.CharField(maxlength=100)
          name= models.CharField(maxlength=100)
  • ricoder . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 구조체 파일 입출력 . . . . 5 matches
         using namespace std;
          char name[10];
          cout << "Input name : " ;
          cin >> p.name;
          cout << p.name << p.age << p.phone ;
  • 데블스캠프2010/다섯째날/ObjectCraft/미션2/김상호 . . . . 5 matches
          int name;
          printf("저글링 %d이 저글링 %d에게 데미지 %d를 입혀 HP가 %d가 되었다.\n", a.name, b.name, a.gong, b.hp);
          a[0].name=0;
          a[1].name=1;
  • 변준원 . . . . 5 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
          wc.lpszClassName = "DXTEST";
          wc.lpszMenuName = NULL;
         using namespace std;
  • 새싹교실/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를 배웠다
  • 스네이크바이트/C++ . . . . 5 matches
         using namespace std;
          char Name[20]; //이름
          student(char *name, int id, int math, int kor, int eng);//생성자
         student::student(char *name, int id, int math, int kor, int eng)
          strcpy(Name, name); //이름초기화(카피)
          cout << ID << " " << Name << endl;//학번과 이름 출력
         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;
  • 2002년도ACM문제샘플풀이/문제A . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • AVG-GCC . . . . 4 matches
          -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]]
  • AcceleratedC++/Chapter6 . . . . 4 matches
          // `beg' marks the beginning of the protocol-name
          * protocol-type://domainname 의 형태를 검사한다.
         void write_analysis(ostream& out, const string& name,
          cout << name << ": median(did) = " << analysis(did) <<
  • CPPStudy_2005_1/STL성적처리_3 . . . . 4 matches
         using namespace std;
          string name;
          fin >> tmp.name;
          cout << i->name << "\t" <<
  • CPPStudy_2005_1/STL성적처리_3_class . . . . 4 matches
         using namespace std;
          string name;
          fin >> tmp.name;
          cout << i->name << "\t" <<
  • CSP . . . . 4 matches
         if __name__=='__main__':
         if __name__=='__main__':
         if __name__=='__main__':
         if __name__=='__main__':
  • CrackingProgram . . . . 4 matches
         using namespace std;
         2: using namespace std;
         using namespace std;
         2: using namespace std;
  • EffectiveC++ . . . . 4 matches
          const char * const authorName = "Scott Meyers";
         class NamedPtr {
          NamedPtr(const string& initName, T *initPtr);
          string name;
         NamedPtr<T>::NamedPtr(const string& initName, T *initPtr )
         : name(initName), ptr(initPtr) {}
         NamedPtr<T>::NamedPtr(const string& initName, T *initPtr)
          name = initName;
          string name, address;
          string schoolName, schoolAddress;
  • Graphical Editor/Celfin . . . . 4 matches
         using namespace std;
         char name[255], trash[255];
          cout << name << endl;
          cin >> name;
  • InterWikiIcons . . . . 4 matches
         You can set InterWikiIcon to InterMap entries by putting an icon file of name lowercased InterWiki entry name, e.g; meatball for MeatBall, under imgs directory.
         Only lovel-16.png included, while you WkPark arguing to rename it LovolNet. :P
          OK. It is just renamed as lovolnet-16.png ;)
  • JavaScript/2011년스터디/3월이전 . . . . 4 matches
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
          * 네임스페이스 사용 시 org.zeropage.namespace는 되고 org.zeropage.namespace.function1은 안 되는 이유
  • LUA_5 . . . . 4 matches
         >function Car(name)
         >> local car_name = name
         >> print( car_name .. " is running" )
  • Map연습문제/노수민 . . . . 4 matches
         using namespace std;
          string name;
         using namespace std;
          string name;
  • MedusaCppStudy/희경 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • Memo . . . . 4 matches
          print self.conn.getpeername()
         if __name__ == "__main__":
          char msg[] = "My name is Na Hwidong,.";
         if __name__ == "__main__":
  • MoniWikiOptions . . . . 4 matches
         `'''$sitename'''`
          * 웹 브라우저에 타이틀에 표시되는 사이트의 이름. 기본값은 {{{'UnnamedWiki'}}}
         `'''$use_hostname'''` (cvs)
         `'''$editlog_name'''`
  • OurMajorLangIsCAndCPlusPlus/stdlib.h . . . . 4 matches
         || char *getenv(const char *name); || 환경 변수를 얻는다 ||
          /* Allocate space for a path name */
          printf( "Memory space allocated for path name\n" );
         Memory space allocated for path name
  • Plugin/Chrome/네이버사전 . . . . 4 matches
          var photos = req.responseXML.getElementsByTagName("photo");
          "name": "My First Extension",
         function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar,
          window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height
          "name" : "BrowsingData API: Basics",
  • ProjectEazy/Source . . . . 4 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__=='__main__':
  • ProjectZephyrus/ServerJourney . . . . 4 matches
          * 중복 접속 방지 작업, sync 문제에 관해서는 약간 고민을 더해야 할듯 하다. Rename
          * 몇가지 인자들 Rename
          * 느낀점 : 휴.. 전에 툴을 쓸때는 해당 툴과 손가락이 생각을 못따라가 가는 것이 너무 아쉬웠는데, Eclipse에서는 거의 동시에 진행할수 있었다. extract method, rename, quick fix, auto fix task,마우스가 필요 없는 작업 환경들 etc VC++로 프로그래밍 할때도 거의 알고 있는 단축키와 key map을 macro를 만들어 써도 이정도가 아니었는데 휴..
          * Logout 클래스 작성, Rename작업, 04일에 의논한 내용 UML에 반영
  • REFACTORING . . . . 4 matches
         Three Strike 법칙은 외우기 쉬워서 처음 Refactoring 을 하는 사람들에겐 적당하다. 하지만, 저 법칙은 주로 중복이 일어날 때의 경우이고, Rename Method/Field/Variable 같은 Refactoring 은 지속적으로 해주는 것이 좋다.
         ["Refactoring"] 에 의외로 중요한 기술로 생각되는건 바로 Extract Method 와 Rename 과 관련된 Refactoring. 가장 간단하여 시시해보일지 모르겠지만, 그로서 얻어지는 효과는 대단하다. 다른 Refactoring 기술들의 경우도 일단 Extract Method 와 Rename 만 잘 지켜지면 그만큼 적용하기 쉬워진다고 생각.
         개인적으로 Refactoring 을 적용하는중, 자주 이용되는 테크닉이 StructuredProgramming 기법인 StepwiseRefinement (Rename 도 일종의 StepwiseRefinement 기술이라 생각이 든다)라는점은 의외일련지 모르겠다. OOP 와 SP 는 상호배제의 관계가 아니기에. --["1002"]
  • RSS . . . . 4 matches
         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]
         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.
  • RandomWalk/임인택 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
          private String _nextHostName, _localHostName;
          public Cell(int localHostNum, int hostIndex, String nextHostName, int nextHostNum) {
          _nextSock = new Socket(getNextHostName(), _defaultPort);
          public String getNextHostName() {
          return _nextHostName;
          public String getHostName() {
          return _localHostName;
          // localhostname, localHostNum, nextHostName, nextHostNum
          String localHostName =args[0];
          String nextHostName = args[2];
  • Spring/탐험스터디/wiki만들기 . . . . 4 matches
          String name;
          name = ((UserDetails)principal).getUsername();
          name = principal.toString();
         page.edit(contents, userRepository.get(principal.getName()));
          * 이건... 음.. "signup 폼을 담은 페이지를 호출" 할 때와 "사용자의 ID와 PASSWORD를 전달해 로그인 처리를 하는" 경우가 같은 Request Name을 가지게 되서..
  • TestDrivenDatabaseDevelopment . . . . 4 matches
          String articleTableName = "articlelist";
          String sqlStr="select id, writer, title, body from " + articleTableName;
          String hostname = "localhost";
          String dbname = "reset";
          Class.forName("com.mysql.jdbc.Driver").newInstance();
          String url="jdbc:mysql://"+hostname+"/"+dbname+"?user="+userId+"&password="+userPass;
  • TestDrivenDevelopmentByExample/xUnitExample . . . . 4 matches
          def __init__(self, name):
          self.name = name
          method = getattr( self, self.name )
  • TriDiagonal/1002 . . . . 4 matches
         if __name__=="__main__":
         if __name__=="__main__":
         if __name__=="__main__":
         if __name__=="__main__":
  • Velocity . . . . 4 matches
         #set ($name = "hahaha")
         $name:$name$name
  • Yggdrasil/가속된씨플플/2장 . . . . 4 matches
          cout<<"Please enter your first name: ";
          string name;
          cin>>name;
          const string greeting="Hello, "+name+"!";
  • aekae/code . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • biblio.xsl . . . . 4 matches
          <xsl:variable name="lang-title" select="'Literatur'"/>
          <a name="top"><xsl:value-of select="$lang-title"/> [<xsl:value-of select="count(book[not(@type='ref')])"/>]</a>
          <xsl:variable name="topic" select="@id"/>
          <a name="topic-{@id}">
  • html5/form . . . . 4 matches
          selectedFiles[0].name; //파일이름
          * {{{<output name="sum">100</output>}}}
          * {{{<keygen name="key" keytype="rsa"></keygen>}}}
          * {{{<input type="text" name="postCode" pattern="/^\d{3}-?\d{3}$/" title="123-123">}}}
  • mantis . . . . 4 matches
         347 mysql_query('set names euckr',$this->_connectionID);
         348 if ($argDatabasename) return $this->SelectDB($argDatabasename);
         360 mysql_query('set names euckr',$this->_connectionID);
  • whiteblue/MyTermProject . . . . 4 matches
         using namespace std;
          char name[20];
          cout << l[i].name << "\t" << l[i].number << " " << *(n+(i*14)) << endl;
          cout << m[i].name << "\t" << m[i].number << " "<< m[i].kor
  • 데블스캠프2005/java . . . . 4 matches
         The Stealth Project was soon renamed to the Green Project with James Gosling and Mike Sheridan joining Patrick Naughton. They, together with some other engineers, began work in a small office on Sand Hill Road in Menlo Park, California to develop a new technology. The team originally considered C++ as the language to use, but many of them as well as Bill Joy found C++ and the available APIs problematic for several reasons.
         According to the available accounts, Bill Joy had ideas of a new language combining the best of Mesa and C. He proposed, in a paper called Further, to Sun that its engineers should produce an object-oriented environment based on C++. James Gosling's frustrations with C++ began while working on Imagination, an SGML editor. Initially, James attempted to modify and extend C++, which he referred to as C++ ++ -- (which is a play on the name of C++ meaning 'C++ plus some good things, and minus some bad things'), but soon abandoned that in favor of creating an entirely new language, called Oak named after the oak tree that stood just outside his office.
         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.
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/강소현 . . . . 4 matches
          char *name;
          printf("%s가 %s에게 데미지 %d를 입혀 HP가 %d가 되었다.\n",zerg1.name, zerg2.name, zerg1.attack, zerg2.HP);
          printf("%s의 HP가 %d가 되어 끝났음 ㅇㅇ\n",zerg2.name, zerg2.HP);
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 4 matches
          public FileData(String filename) throws FileNotFoundException, UnsupportedEncodingException {
          scan = new Scanner(new InputStreamReader(new FileInputStream(filename),"UTF-8"));
          private static void writeCsv(String filename) throws FileNotFoundException {
          PrintWriter pw = new PrintWriter(new FileOutputStream(filename));
  • 문자반대출력/김태훈zyint . . . . 4 matches
         void openiofiles(char* infilename,char* outfilename, FILE** fin, FILE** fout, char** buf[])
          *fin = fopen(infilename,"rt");
          *fout = fopen(outfilename,"wt");
  • 벡터/김홍선,노수민 . . . . 4 matches
         using namespace std;
          string name;
          fin >> temp.name >> temp.score;
          cout << (*i).name << endl;
  • 벡터/임영동 . . . . 4 matches
         using namespace std;
          string name;
          name=n;
          cout<<(*i).name<<" "<<(*i).score<<endl;
  • 새싹교실/2012/해보자 . . . . 4 matches
          * 변수의 선언 방법: Datatype name or Datatype name,name,name,...
  • 압축알고리즘/주영&재화 . . . . 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;
  • 이승한/PHP . . . . 4 matches
         $query = "select name, eng, math from score";//쿼리문을 스트링을 저장한다.
          $name = mysql_result($result, $i, 0);
          echo("<td>$name</td>");
          동물이름을 입력하세요<input type="text" name="animal">
  • 이영호/끄적끄적 . . . . 4 matches
          char name[20];
          strcpy(head->name, "2 of Clubs");
          sprintf(buf->name, "%s of %s",
          printf("%s\n", buf->name);
  • 코드레이스/2007.03.24상섭수생형진 . . . . 4 matches
         using namespace std;
         using namespace std;
         using namespace std;
         using namespace std;
  • 토이/메일주소셀렉터/김남훈 . . . . 4 matches
         mailname {letter}({letter}|\.)*{letter}
         domain_name [0-9A-Za-z][-0-9A-Za-z]*[0-9A-Za-z]
         mail_address {mailname}@({domain_name}\.)+{last_domain}
  • 2010JavaScript/역전재판 . . . . 3 matches
          <div id='name'>
         #name { /*사람이름(텍스트 위에)*/
          <div id='name'>
  • 2학기파이선스터디/서버&클라이언트접속프로그램 . . . . 3 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__ == '__main__':
  • 3N+1Problem/Leonardong . . . . 3 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__ == '__main__':
  • 3N+1Problem/황재선 . . . . 3 matches
         using namespace std;
         if __name__ == '__main__':
         if __name__ == '__main__':
  • ACE/CallbackExample . . . . 3 matches
          const ACE_TCHAR *prio_name = ACE_Log_Record::priority_name(prio);
          << ACE_TEXT_ALWAYS_CHAR(prio_name)
  • ACM_ICPC/PrepareAsiaRegionalContest . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • AcceleratedC++/Chapter10 . . . . 3 matches
          포인터도 타입을 갖는데 일반적으로 type-name * 으로 정의한다.
         void write_analysis(std::ostream& out, const std::string& name,
          // names for the letter grades
  • AcceleratedC++/Chapter8 . . . . 3 matches
          typedef typename vector<T>::size_type vec_sz; // typename에 대해서 알자
          typename 은 아직 인스턴스화 되지 않은 함수를 컴파일러가 읽어들일때 타입 매개변수와 관계된 타입의 형을 생성할때 앞에 붙여야 하는 키워드 임. ex) vector<T> or vector<T>::size_type
  • C++스터디_2005여름/학점계산프로그램/정수민 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • CCNA/2013스터디 . . . . 3 matches
          || 3 || router(config)#hostname Router_A || Router_A의 Hostname 지정 ||
          || 4 || Router_A(config)#username Router_B password cisco || 연결을 해 주어야 하는 Router_B의 정보 설정 ||
  • CVS/길동씨의CVS사용기ForRemote . . . . 3 matches
         using namespace std;
         symbolic names:
         > using namespace std;
  • Calendar환희코드 . . . . 3 matches
         int 달력형식(int nameofDay, int year, int month);
         int 달력형식(int nameofDay, int year, int month){
          switch(nameofDay){
  • CppStudy_2002_2/STL과제/성적처리 . . . . 3 matches
         using namespace std;
          string _StudentName;
          ScoresTable(const string& aStudentName) : _StudentName(aStudentName)
          const string& getName() const
          return _StudentName;
          class NameSort
          return stu1->getName() < stu2->getName();
          void showNameAndCuri()
          string aName;
          anInputer >> aName;
          aTable = new ScoresTable(aName);
          showNameAndCuri();
          cout << _StudentList[i]->getName() << "\t";
          void nameSortAndShow()
          sort(_StudentList.begin(), _StudentList.end(), NameSort());
          _aScoreProcessor.nameSortAndShow();
  • CppStudy_2002_2/객체와클래스 . . . . 3 matches
         DeleteMe) 누구소스인지는 모르겠지만, 다른 소스들처럼 page name 을 바꿔주는것이 좋을듯. --["1002"]
         using namespace std;
         using namespace std;
  • FoundationOfUNIX . . . . 3 matches
          * find ./ -name '*.txt' (./ 현재 디렉토리 이후 모두 검색 , -name 파일을 이름으로 찾는 것을 의미, '*.txt' 패턴)
          * find ./ -name '*.txt' -ls -exec rm {} \; (현재 디렉토리 이후 *.txt 인파일을 모두 찾아서 지우기.
  • Gof/Command . . . . 3 matches
          const char* name = AskUser ();
          if (name != 0) {
          Document* document = new Document (name);
  • Gof/Visitor . . . . 3 matches
          - declares a Visit operations for each class of ConcreteElement in the object structure. The operation's name and signature identifies the class that sends the Visit request to the visitor. That lets the visitor determine the concrete class of the element being visited. Then the visitor can access the element directly through its particular interface.
          const char* Name () { return _name; }
          const char* _name;
          << componet->Name ()
  • HardcoreCppStudy/첫숙제/Overloading/임민수 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • HelloWorld . . . . 3 matches
         using namespace std;
         namespace HelloWorld
         using namespace System;
  • IntelliJ . . . . 3 matches
          2. CVS Root 설정 - ZP 서버에 연결할 경우 PServer 를 선택, Repository Path 로 /home/CVS 로 설정, Host에는 zeropage.org, User name 은 자기 아이디를 써준다.
         || F6 || Rename. class 이건 Method 이건. Refactoring 의 ["IntelliJ"] 의 중요 기능중 하나. ||
         || shift + F6 || rename refactoring ||
  • InvestMulti - 09.22 . . . . 3 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__ == '__main__':
  • LinuxProgramming/QueryDomainname . . . . 3 matches
         request domain name thru ip address from DNS server
          printf("Officially name : %s \n\n", host->h_name);
  • MFC/HBitmapToBMP . . . . 3 matches
         // [*filename] : 만들어질 bmp파일이름
         BOOL CImageTool::ExportAsBMP(int type, char *filename, CDC *pDC,
          if ((fp=fopen(filename,"wb")) == NULL)
  • MatrixAndQuaternionsFaq . . . . 3 matches
          The "order" of a matrix is another name for the size of the matrix.
          Euler angles are the name given to the set of rotation angles which
          Gimbal lock is the name given to a problem that occurs with the use of
  • Metaphor . . . . 3 matches
         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.
  • MoreEffectiveC++/Appendix . . . . 3 matches
         This book provides an overview of the ideas behind patterns, but its primary contribution is a catalogue of 23 fundamental patterns that are useful in many application areas. A stroll through these pages will almost surely reveal a pattern you've had to invent yourself at one time or another, and when you find one, you're almost certain to discover that the design in the book is superior to the ad-hoc approach you came up with. The names of the patterns here have already become part of an emerging vocabulary for object-oriented design; failure to know these names may soon be hazardous to your ability to communicate with your colleagues. A particular strength of the book is its emphasis on designing and implementing software so that future evolution is gracefully accommodated (see Items 32 and 33). ¤ MEC++ Rec Reading, P36
         As the name suggests, this covers both C and C++. The articles on C++ tend to assume a weaker background than those in the C++ Report. In addition, the editorial staff keeps a tighter rein on its authors than does the Report, so the material in the magazine tends to be relatively mainstream. This helps filter out ideas on the lunatic fringe, but it also limits your exposure to techniques that are truly cutting-edge. ¤ MEC++ Rec Reading, P45
         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
  • MoreEffectiveC++/C++이 어렵다? . . . . 3 matches
          [http://zeropage.org/moin/moin.cgi/MoreEffectiveC_2b_2b_2fMiscellany#head-a8fe938a36d3be47de007ce24f1d367295cd7ea7 Item 34 name mangle 관련]
          * 생각해볼 name mangling - overloading
          [http://zeropage.org/moin/moin.cgi/MoreEffectiveC_2b_2b_2fMiscellany#head-a8fe938a36d3be47de007ce24f1d367295cd7ea7 Item 34 name mangle 관련]
  • PPProject/Colume2Exercises . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • ProjectPrometheus/CookBook . . . . 3 matches
          String serviceName = (String) request.getParameter("service");
          <res-ref-name>jdbc/'reference 이름'</res-ref-name>
          <init-param driver-name="org.gjt.mm.mysql.Driver 식으로 드라이버 이름"/>
  • RandomWalk/영동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • RandomWalk2/재동 . . . . 3 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         if __name__ == '__main__':
  • Refactoring/BadSmellsInCode . . . . 3 matches
          * 추상적인 두리뭉실한 메소드 이름 -_-; - RenameMethod 로 지상으로 내려오도록 하라는.. --;
         CollapseHierarchy, InlineClass, RemoveParameter, RenameMethod
         RenameMethod, MoveMethod
  • STLErrorDecryptor . . . . 3 matches
         가) 여느 개발도구와 마찬가지로 VC의 IDE는 그 자체에 빌드용 장치(컴파일러와 링커)를 내장하고 있지 않고, 외부에 있는 컴파일러와 링커를 실행해서 프로그램을 빌드합니다. 컴파일러와 링커의 출력 결과는 실제로 콘솔로 빠져 나오는 출력이지만, 네임드 파이프(named pipe)란 것을 통해 VC의 IDE로 다시 들어가 '''출력(output)''' 윈도우에 디스플레이되는 것입니다.
         Upload:CL2Rename.gif
         using namespace std;
  • TwistingTheTriad . . . . 3 matches
         http://free1002.nameip.net:8080/pyki/upload/MVCTriad.jpg
         For example, let's say one wants to explicitly change the colour of one or more views dependent on some conditions in the application model. The correct way to do this in MVC would be to trigger some sort of event, passing the colour along with it. Behaviour would then have to be coded in the view to "hang off" this event and to apply the colour change whenever the event was triggered. This is a rather circuitous route to achieving this simple functionality and typically it would be avoided by taking a shoutcut and using #componentAt : to look up a particular named view from the application model and to apply the colour change to the view directly. However, any direct access of a view like this breaks the MVC dictum that the model should know nothing about the views to which it is connected. If nothing else, this sort of activity surely breaks the possibility of allowing multiple views onto a model, which must be the reason behind using the Observer pattern in MVC in the first place.
         http://free1002.nameip.net:8080/pyki/upload/MVPTriad.jpg
  • VendingMachine_참관자 . . . . 3 matches
         char *M_Name[]={"cup","cococa","water","coffee"};
          void AddingMenu(char * name,int price);
         void VendingMachine::AddingMenu(char * name, int price)
          strcpy(Menu[Menu_num],name);
          printf("%s ",M_Name[b-1]);
  • VimSettingForPython . . . . 3 matches
          silent execute '!C:Vimvim62diff -a ' . opt . v:fname_in . ' ' . v:fname_new . ' > ' . v:fname_out
  • VonNeumannAirport/1002 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • ZeroPageServer/Log . . . . 3 matches
          * Q : domain 에 관련된 문의입니다.. ["ZeroPageServer"] 에서는 user.domain 으로 자신의 home directory 에 접근할 수 없습니까.? 또 이것은 관련없는 질문인데..-_- 저렇게 셋팅을 하려면 어떻게 해야하죠.. named.conf 랑.. /var/named 에서 관련파일 다 수정했는데도... username.domain.com 에 접속을 하니.. www.domain.com 에 접속이 되는군요..-_- - ["임인택"]
          * A: 하위 도메인을 가지기 위해서는 서버에 DNS(Domain Name Server)를 설치하고 각 유저에게 DNS를 드리면 되지만, 그런 용도를 생각하고 있지 않습니다. --["neocoin"]
  • django/ModifyingObject . . . . 3 matches
          name= models.CharField(maxlength=100)
         e= Employee(name='John', email='John@django.com')
         e.name= 'jack'
  • subsequence/권영기 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 가위바위보/영동 . . . . 3 matches
          char name[2][10];
          fin.getline(name[0], 10);
          fin.getline(name[1], 10);
  • 데블스캠프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;
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 3 matches
         namespace DevilsCamp
         namespace DevilsCamp
          /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
          this.startBtn.Name = "startBtn";
          this.hour.Name = "hour";
          this.minute.Name = "minute";
          this.second.Name = "second";
          this.milli.Name = "milli";
          this.label1.Name = "label1";
          this.label2.Name = "label2";
          this.label3.Name = "label3";
          this.stopBtn.Name = "stopBtn";
          this.recordBtn.Name = "recordBtn";
          this.listBox1.Name = "listBox1";
          this.Name = "Form2";
  • 레밍즈프로젝트/연락 . . . . 3 matches
         using namespace std;
         error C2653: 'Map' : is not a class or namespace name
  • 레밍즈프로젝트/프로토타입/파일스트림 . . . . 3 matches
         || GetFileName || Retrieves the filename of the selected file. ||
         || Rename || Renames the specified file (static function). ||
  • 몸짱프로젝트/BinarySearchTree . . . . 3 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
         using namespace std;
  • 몸짱프로젝트/CrossReference . . . . 3 matches
         if __name__ == '__main__':
         using namespace std;
         using namespace std;
  • 문자반대출력/김정현 . . . . 3 matches
          public String getText(String name)
          input = new Scanner(new File(name));
          output = new Formatter(name);
  • 빵페이지/구구단 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 압축알고리즘/수진,재동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 압축알고리즘/태훈,휘동 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 영호의해킹공부페이지 . . . . 3 matches
         namely 0x0063FDE4. Hopefully you're beginning to see the idea here. If you
          like C/C++, Pascal, JavaScript, Perl, Python - you name it. :) Mm, no TCL/TK
         things like usernames and passwords for things people shouldn't be accessing,
  • 이영호/미니프로젝트#1 . . . . 3 matches
          char *user_name;
          h = gethostbyname(info.host);
          sprintf(msg, "user %s %s %s %sn", info.user_name, info.user_whois1, info.user3, info.user_whois2);
  • 이재영 . . . . 3 matches
          char name [10];
          scanf ("%s",&name);
          printf("%s\n %d\n %.1f\n", name,hac, grade);
  • 주민등록번호확인하기/조현태 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 최대공약수/조현태 . . . . 3 matches
         using namespace std;
         using namespace std;
         using namespace std;
  • 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
         <map name="planet">
         <map name="evidence">
  • 2학기파이선스터디/ 튜플, 사전 . . . . 2 matches
         >>> print 'id : %s, name : %s' % ('gslee','GangSeong')
         id : gslee, name : GangSeong
  • 2학기파이선스터디/모듈 . . . . 2 matches
         ['__builtins__', '__doc__', '__file__', '__name__', 'add', 'c', 'mul']
         ['_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학기파이선스터디/클라이언트 . . . . 2 matches
         if __name__ == "__main__":
         if __name__ == "__main__":
  • 3DGraphicsFoundationSummary . . . . 2 matches
         Define the LoadBMPfile(char *filename) function
         assign LoadBMPFile("filename.bmp") to each texRec[i]
  • 5인용C++스터디/클래스상속보충 . . . . 2 matches
         using namespace std;
         using namespace std;
  • ALittleAiSeminar . . . . 2 matches
          name(self)
          def name(self): return "MyName~"
  • ATmega163 . . . . 2 matches
         #put the name of the target mcu here (at90s8515, at90s8535, attiny22, atmega603 etc.)
         #put the name of the target file here (without extension)
  • AcceleratedC++/Chapter11 . . . . 2 matches
          cout<<vs[i].name();
          cout<<vs[i].name();
  • AcceleratedC++/Chapter12 . . . . 2 matches
         Str greeting = "Hello, " + name + "!";
         Str temp2 = temp1 + name;
  • AcceleratedC++/Chapter7 . . . . 2 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; 라고 선언 하던지 해야 한다.
  • Apache . . . . 2 matches
         Starting httpd: httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
          * [http://www.wallpaperama.com/forums/how-to-fix-could-not-determine-the-servers-fully-qualified-domain-name-t23.html 위문제상황해결링크]
  • BabyStepsSafely . . . . 2 matches
          public TestGeneratePrimes(String name)
          super(name);
  • Basic알고리즘/팰린드롬/허아영 . . . . 2 matches
         using namespace std;
         using namespace std;
  • Beginning_XML . . . . 2 matches
         * 엘리먼트 패턴 : Element nameClass {pattern}
         * 어트리뷰트 패턴 : Attribute nameClss {pattern}
  • Boost/SmartPointer . . . . 2 matches
         using namespace boost;
         // several other names). It separates the interface (in this header file)
  • BoostLibrary/SmartPointer . . . . 2 matches
         using namespace boost;
         // several other names). It separates the interface (in this header file)
  • C++ . . . . 2 matches
         Bell Labs' Bjarne Stroustrup developed C++ (originally named "C with Classes") during the 1980s as an enhancement to the C programming language. Enhancements started with the addition of classes, followed by, among many features, virtual functions, operator overloading, multiple inheritance, templates, and exception handling. The C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998, the current version of which is the 2003 version, ISO/IEC 14882:2003. New version of the standard (known informally as C++0x) is being developed.
         In C and C++, the expression x++ increases the value of x by 1 (called incrementing). The name "C++" is a play on this, suggesting an incremental improvement upon C.|}}
  • C++스터디_2005여름/학점계산프로그램/문보창 . . . . 2 matches
         using namespace std;
         using namespace std;
  • C/C++어려운선언문해석하기 . . . . 2 matches
         1. Start from the variable name -------------------------- fp1
         1. Start from the variable name --------------------- arr
  • CPP_Study_2005_1/BasicBusSimulation/남상협 . . . . 2 matches
         using namespace std;
         using namespace std;
  • ClassifyByAnagram/sun . . . . 2 matches
          g.drawString( "....name: " + System.getProperty( "java.vm.name"), 10, 65 );
  • ClassifyByAnagram/인수 . . . . 2 matches
         using namespace std;
         using namespace std;
          void BoundAnagram(char* fileName)
          ifstream fin(fileName);
  • CleanCode . . . . 2 matches
          * [http://blog.goyello.com/2013/05/17/express-names-in-code-bad-vs-clean/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+goyello%2FuokR+%28Goyelloblog%29 Express names in code: Bad vs Clean]
          * Chapter 2 Meaningful Names - Naming Convention
  • Code/RPGMaker . . . . 2 matches
         # use temporary namespace(module) to solve ambiguous class name
  • ComponentObjectModel . . . . 2 matches
         {{|Component Object Model, or COM, is a Microsoft technology for software componentry. It is used to enable cross-software communication and dynamic object creation in many of Microsoft's programming languages. Although it has been implemented on several platforms, it is primarily used with Microsoft Windows. COM is expected to be replaced to at least some extent by the Microsoft .NET framework. COM has been around since 1993 - however, Microsoft only really started emphasizing the name around 1997.
         COM is a planned feature of the coming version of Windows, code-named "Longhorn".
  • DPSCChapter1 . . . . 2 matches
         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?
         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.)
  • DebuggingSeminar_2005 . . . . 2 matches
          || [DebuggingSeminar_2005/UndName] || UndName 사용법 ||
          || [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/_core_viewing_decorated_names.asp undname.exe] || C++ Name Undecorator, Map file 분석툴 ||
  • DebuggingSeminar_2005/UndName . . . . 2 matches
         DLL 파일에 의해서 분석된 내용을 보면 DLL 에 함수의 이름이 이상하게(?) 변형되어 있는것을 확인하실 수 있는데(DUMPBIN.EXE 를 통해서 가능합니다.) 이 이름의 원형을 알고 싶을때가 있습니다. 그럴때 undname.exe 라는 파일을 사용하시면 아주 쉽게 확인해 보실 수 있습니다.
         H:\>undname -f ?MapDLLappyFunc@@YAPADPAD@Z
         UNDNAME Version 5.00.2184.1Copyright (C) Microsoft Corp. 1981-1999
  • EcologicalBinPacking/강희경 . . . . 2 matches
         using namespace std;
         using namespace std;
  • EightQueenProblem/강인수 . . . . 2 matches
         using namespace std;
         if __name__ == '__main__':
  • EightQueenProblem/용쟁호투 . . . . 2 matches
         string appname = "eightqueenproblem"
         appname="eightqueenproblem"
  • EnglishSpeaking/2011년스터디 . . . . 2 matches
          * There are four members in my family: my father, mother, and a younger brother. Well, actually there are five including our dog. My father was a military officer for twenty years. He recently retired from service and now works in a weaponry company. My mother is a typical housewife. She takes care of me and my brother and keeps our house running well. My brother is attending a university in the U.S.A. He just entered the university as a freshman and is adjusting to the environment. I miss the memory of fighting over things with him. The last member of my family is my dog named Joy. She is a Maltese terrier and my mother named her Joy to bring joy into our family. That's about it for the introduction of my family members.
  • GalleryMacro . . . . 2 matches
         {{{[[Gallery(col=5,nocomment,sort=name)]]}}}
         5 column, with no comments, sort by name
  • Gof/Composite . . . . 2 matches
          const char* Name () { return _name; }
          const char* _name;
  • Gof/Facade . . . . 2 matches
         서브시스템 클래스를 private 로 만드는 것은 유용하지만, 일부의 OOP Language가 지원한다. C++과 Smalltalk 는 전통적으로 class에 대한 namespace를 global하게 가진다. 하지만 최근에 C++ 표준회의에서 namespace가 추가됨으로서 [Str94], public 서브시스템 클래스를 노출시킬 수 있게 되었다.[Str94] (충돌의 여지를 줄였다는 편이 맞을듯..)
          const char* variableName
  • GuiTestingWithWxPython . . . . 2 matches
         if __name__=="__main__":
         if __name__=="__main__":
  • HelpOnActions . . . . 2 matches
         모니위키는 액션이라는 확장기능을 제공합니다. 액션은 현재 보고 있는 페이지 혹은 전체 위키에 대한 특별한 확장 기능을 말합니다. 매크로와는 다르게 위키 페이지에 직접 매크로를 삽입해야 하는 것이 아니라 그 페이지를 다른 방식으로 보는 방법을 제공합니다. 예를 들어 페이지를 편집하는 기능를 `edit` 액션이라고 하며, 북마크를 하는 기능은 `bookmark`액션을 통해 이루어지고, 전체 검색, 제목 검색, 역링크 검색 등등 여러가지 기능을 제공합니다. 이러한 액션은 플러그인 방식으로 다른 기능을 손쉽게 확장할 수 있게 하여 위키의 풍부한 기능을 가능하게 만들어주고, 일부 액션은 페이지의 내용과 상관 없는 기능을 제공하기도 합니다. (페이지 지우기 기능은 DeletePage 혹은 페이지 이름을 바꿔주는 RenamePage 기능)
          * `rename`: 페이지이름 바꾸기 액션
  • HelpOnPageCreation . . . . 2 matches
         페이지를 만드는 방법은 여러가지 방법이 있습니다. 그중에 위키에서 일반적으로 권고되는 방법으로는 먼저 원하는 페이지로 가서 편집을 해서, {{{FoobarPageName}}}이나 , {{{[[어쩌고페이지]]}}}식으로 위키링크를 본문에 집어넣고 저장을 합니다. 이렇게 하면 새롭게 갱신된 페이지에 새로운 링크가 생기게 되는데, {{{FoobarPageName}}} 혹은 {{{[[어쩌고페이지]]}}}라는 위키링크가 새로운 페이지를 가리키게 됩니다. 새로운 페이지는 아직 없기 때문에 새롭게 만들어진 위키링크는 색상이나 모양이 약간 다른 형태로 보이게 됩니다. 이것을 클릭하면 페이지를 새로 만들것이냐는 대화 메시지 혹은 비슷한 이름을 가진 페이지 목록을 보여주게 되며, 원한다면 새롭게 페이지를 만들 수 있게 됩니다.
         || @''''''USERNAME@ || 사용자 이름 ||
         || @''''''USER@ || 사용자 이름 서명 "-- loginname" ||
         || @''''''SIG@ || 사용자 이름 서명 "-- loginname date time" ||
  • InterWiki . . . . 2 matches
         List of valid InterWiki names this wiki knows of:
         MoinMoin marks the InterWiki links in a way that works for the MeatBall:ColourBlind and also is MeatBall:LynxFriendly by using a little icon with an ALT attribute. If you hover above the icon in a graphical browser, you'll see to which Wiki it refers. If the icon has a border, that indicates that you used an illegal or unknown BadBadBad:InterWiki name (see the list above for valid ones). BTW, the reasoning behind the icon used is based on the idea that a Wiki:WikiWikiWeb is created by a team effort of several people.
  • IpscLoadBalancing . . . . 2 matches
         if __name__=='__main__':
         if __name__=='__main__':
  • IsBiggerSmarter?/문보창 . . . . 2 matches
         using namespace std;
         using namespace std;
  • JSP/FileUpload . . . . 2 matches
          String saveFile = file.substring(file.indexOf("filename="") + 10);
          pos = file.indexOf("filename="");
          out.write("<meta http-equiv="refresh" content="0;url=BugReport.jsp?fileName="+saveFile+"">");
  • JTDStudy/첫번째과제/상욱 . . . . 2 matches
          public void name() {
          public void name() {
  • JavaStudy2002/영동-3주차 . . . . 2 matches
          // exhibit -> printBoard 로 rename
          * x, y -> nowX, nowY 로 rename : 의미상으로 currentXPos가 적당하겠지요.
  • JavaStudy2003/세번째과제/노수민 . . . . 2 matches
          public void setName(String name) {
          word=name;
          hello1.setName("Button");
  • JosephYoder방한번개모임 . . . . 2 matches
         리펙토링 기본 기법에 관해서는 기본적으로 Rename과 함수 분할 등을 Martin Fowler이 지은 Refactoring책을 통해 알수있다고 했다 이러한 리펙토링을 이용하여 청소할 수 있고 리펙토링은 중요하다고 했다. 이거 좋군. 딱 들은 생각. 우선 리펙토링할때는 이름이 최우선적으로 다루어져야한다고 했는데 가장 설명하기 좋고 듣기도 편했던 부분이다. 그 이유는 이름부터가 단축이면 못알아먹기 때문에~~~!! 이라고했다. 그래서 나는 앞으로 길더라도 의미가 되는 단어를 쓰기로 결심했다. 괜히 이름 단축시키지 말자고.
         변화 -> 추상화 이고 리펙토링이 잘못됬을 경우 그 결과를 뒤집기는 좀 힘들다고했다. 패턴을 알면 장점이 많단다. 초보자가 패턴을 아는척 하면 다친단다. 테스팅과 패턴을 초보자가 하면 좋다. Refactoring을 좀더 잘할려면 첫 걸음은 Rename부터.. 엄청난 프로그래머는 만드는것이 패턴으로 만들어질 수 있지만 대부분 그렇지 않다고 한다. 그러므로 리펙토링을 통해 수준을 높이는 훈련을 해놓는것이 좋다고한다. 그렇게 하면 의식하지 않아도 된단다.
          1. RENAME METHOD : LOW
  • LIB_3 . . . . 2 matches
         void LIB_create_task (char *task_name,int priority,void (*task)(void),INT16U * Stack)
          pReady_heap[ready_tcb_ptr]->Task_Name = task_name;
  • LinkedList/영동 . . . . 2 matches
         using namespace std;
         using namespace std;
  • Linux/MakingLinuxDaemon . . . . 2 matches
         bind 1323 1 1323 1323 TS 21 Oct15 ? 00:00:00 /usr/sbin/named -u bind
         bind 1323 1 1323 1323 TS 21 Oct15 ? 00:00:00 /usr/sbin/named -u bind
  • Linux/RegularExpression . . . . 2 matches
         예 : filename\.ext ("filename.ext"를 나타냄)
  • MFC/MessageMap . . . . 2 matches
         in ''application_name.h''
         in ''application_name.cpp''
         #define WM_ASKCBFORMATNAME 0x030C
  • MagicSquare/재동 . . . . 2 matches
         if __name__ == "__main__":
         if __name__ == "__main__":
  • Map/노수민 . . . . 2 matches
         using namespace std;
          string name;
  • Marbles/이동현 . . . . 2 matches
         using namespace std;
         using namespace std;
  • MoinMoinFaq . . . . 2 matches
         Any mixed case name that doesn't have a page will show up as a red link.
         then yes. Just put your name or email address after your comment. It is
  • MoinMoinTodo . . . . 2 matches
          * Macro that lists all users that have an email address; a click on the user name sends the re-login URL to that email (and not more than once a day).
          * or go all the way, and store pages as data/pages/<firstletter>/<pagename>/(current|meta|...|<timestamp>)
          * WikiName|s instead of the obsessive WikiName' ' ' ' ' 's (or use " " for escaping)
  • MoreEffectiveC++/Efficiency . . . . 2 matches
          int findCubicleNumber(const string& employeesName)
          CubicleMap::iterator it = cubes.find(employeeName);
          cubes[employeeName] = cubicle; // 추가
         C++ 내에서의 진짜 temporary객체는 보이지 않는다.-이게 무슨 소리인고 하니, 소스내에서는 보이지 않는다는 소리다. temporary객체들은 non-heap 객체로 만들어 지지만 이름이 붙지를 않는다. (DeleteMe 시간나면 PL책의 내용 보충) 단지 이름 지어지지 않은(unnamed)객체는 보통 두가지 경우중에 하나로 볼수 있는데:묵시적(implicit) 형변환으로 함수호출에서 적용되고, 성공시에 반환되는 객체들. 왜, 그리고 어떻게 이러한 임시 객체(temporary objects)가 생성되고, 파괴되어 지는지 이해하는 것은 이러한 생성과 파괴 과정에서 발생하는 비용이 당신의 프로그램의 성능에 얼마나 성능을 끼칠수 있는가 알아야 하기때문에 중요한 것이다.
          using namespace std;
  • NSIS . . . . 2 matches
          * /Olog (log 는 filename) - compile 중 screen 상에 해당 화일에 대한 log를 표시하는 대신 화일로 설정한다.
         Rename "$INSTDIR\MSVCP60.dll" "$SYSDIR\MSVCP60.dll"
         Section "ThisNameIsIgnoredSoWhyBother?"
         Exec 'regsvr32.exe /s "$INSTDIR\${NAME_OF_MY_DLL}"'
         Exec 'regsvr32.exe /s /u "$INSTDIR\${NAME_OF_MY_DLL}"'
         "DisplayName" "${MUI_PRODUCT} (remove only)"
  • NoSmokMoinMoinVsMoinMoin . . . . 2 matches
         || 화일업로드 || 지원. 페이지별 개별 화일첨부. 화일첨부시 rename 가능 || 일종의 자료실. 하나의 공용 페이지로 화일공유|| 둘 다 위키와 함께 백업하기에 편리 ||
         || Rename Page || ? || 지원 || 하지만 조심히 이용해야 할 기능.||
  • OurMajorLangIsCAndCPlusPlus/Function . . . . 2 matches
         template<typename T>
         template<typename T>
  • OurMajorLangIsCAndCPlusPlus/setjmp.c . . . . 2 matches
         // 3. Neither the name of the project nor the names of its contributors
  • PHP Programming/HtmlTag . . . . 2 matches
          *<INPUT TYPE="입력필드의 형식" NAME="이름" VALUE="기본값">
          *<FORM> <TEXTAREA rows="8" cols="40" name="area"> .... </TEXTAREA> </FORM>
          *name=".." - 필드의 상징적 이름
  • 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>
  • ParserMarket . . . . 2 matches
         This is a marketplace for your parsers. Please state your name, your email, and the release your parser is developed for (if you used a CVS snapshot, also state the revision number).
         Use a special pagename {{{~cpp ["parser/yourParser.py"]}}} and start your parser with the line {{{~cpp
  • Postech/QualityEntranceExam06 . . . . 2 matches
          7. Pass by name, Pass by reference, pass by name
  • PowerOfCryptography/조현태 . . . . 2 matches
         using namespace std;
         using namespace std;
  • PragmaticVersionControlWithCVS/Getting Started . . . . 2 matches
         symbolic names:
         symbolic names:
  • ProgrammingLanguageClass/Report2002_2 . . . . 2 matches
          1. To find out the maximum length of a variable name
          ''DeleteMe) 여기서는 name-compatibility 와 structured-compatibility를 이야기하는것 같은데 --석천''
  • ProjectPrometheus/DataBaseSchema . . . . 2 matches
         || userid || password || name ||
         name varchar(8) NOT NULL DEFAULT '',
  • ProjectZephyrus/간단CVS사용설명 . . . . 2 matches
         Module name.. : ProjectZephyrus
         # unencrypted username/password pairs for authentication.
  • PyIde/Exploration . . . . 2 matches
         http://free1002.nameip.net:8080/pyki/upload/PyUnitRunnerRedBar.gif http://free1002.nameip.net:8080/pyki/upload/PyUnitRunnerGreenBar.gif
  • PythonThreadProgramming . . . . 2 matches
         if __name__=="__main__":
         if __name__=="__main__":
  • RandomWalk/ExtremeSlayer . . . . 2 matches
         using namespace std;
         using namespace std;
  • RandomWalk/황재선 . . . . 2 matches
         using namespace std;
         using namespace std;
  • ReverseAndAdd/문보창 . . . . 2 matches
         using namespace std;
         if __name__== '__main__':
  • ReverseAndAdd/이승한 . . . . 2 matches
         if __name__ == '__main__':
         using namespace std;
  • RubyLanguage/Container . . . . 2 matches
          * name[n, m] : name 배열의 n 위치부터 최대 m개의 요소를 포함하는 새로운 배열 객체를 생성하여 반환
  • SPICE . . . . 2 matches
          * [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 심사원 자격 교육자료]를 참조.
  • ScheduledWalk/욱주&민수 . . . . 2 matches
         using namespace std;
         using namespace std;
  • SpiralArray/Leonardong . . . . 2 matches
         if __name__ == "__main__":
         if __name__ == "__main__":
  • StringOfCPlusPlus/상협 . . . . 2 matches
         using namespace std;
         using namespace std;
  • StructuredText . . . . 2 matches
          * 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:
          Is interpreted as '<a name="12">[12]</a> "Effective Techniques" ...'. Together with the previous rule this allows easy coding of references or end notes.
         || *Name* || *Amount* ||
          || *Name* || *Amount* ||
  • SummationOfFourPrimes/곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • TestSuiteExamples . . . . 2 matches
         if __name__=='__main__':
          return unittest.defaultTestLoader.loadTestsFromNames( ('ThePackage.test_file1','ThePackage.subpack.test_file2'))
         if __name__=='__main__':
  • TheGrandDinner/김상섭 . . . . 2 matches
         using namespace std;
         using namespace std;
  • TheWarOfGenesis2R/Temp . . . . 2 matches
         using namespace boost;
         using namespace std;
  • TkinterProgramming/SimpleCalculator . . . . 2 matches
          self.master.iconname('calc1')
         if __name__ == '__main__':
  • UglyNumbers/곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • UploadFileMacro . . . . 2 matches
         attachment:filename.ext 혹은 attachment:페이지명:filename.ext
  • ViImproved/설명서 . . . . 2 matches
          :w <file>↓ 파일 name에 써넣기
          :w! <file>↓ 파일 name에 겹쳐 써넣기
  • WinSock . . . . 2 matches
          char szHostName[40];
          gethostname(szHostName, sizeof(szHostName));
          HOSTENT FAR* lphostent = ::gethostbyname(szHostName);
  • WorldCupNoise/권순의 . . . . 2 matches
         using namespace std;
         using namespace std;
  • Yggdrasil/가속된씨플플/4장 . . . . 2 matches
          return x.name<y.name;
  • ZeroPageServer/SubVersion . . . . 2 matches
          {{{~cpp protocol-name://id@hostname/remote_repository_absolute_dir}}}
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 2 matches
          * I read a novel named the Brain all day. Today's reading amount is about 600 pages. It's not so interesting as much as the price of fame.
          * I studied ProgrammingPearls chapter 3. When I was reading, I could find familiar book name - the Mythical Man Month, and Code Complete.
  • [Lovely]boy^_^/Temp . . . . 2 matches
         using namespace std;
         template <typename T>
  • aekae/RandomWalk . . . . 2 matches
         using namespace std;
         using namespace std;
  • c++스터디_2005여름/실습코드 . . . . 2 matches
         using namespace std;
         using namespace std;
  • whiteblue/간단한계산기 . . . . 2 matches
          String name,
          Button button = new Button(name);
  • whiteblue/파일읽어오기 . . . . 2 matches
         using namespace std;
          string szName; // User's name
          szName = szN;
          string getName() { return szName; }
          string szBookName;
          BookInfo( int nBN, string szBName, string szW, string szPC )
          szBookName = szBName;
          string getBookName() { return szBookName; }
          string szTempName(szTemp.begin() + nT[0] + 1, szTemp.size());
          UserInfo * ui = new UserInfo(szTempName , nTempNum);
          string szTemp2BookName(szTemp2.begin() + nT2[0] + 1, szTemp2.begin() + nT2[1]);
          BookInfo * bi = new BookInfo(nTempNum , szTemp2BookName , szTemp2Writer , szTemp2PublishingCompany);
  • zennith/dummyfile . . . . 2 matches
          fprintf(stderr, "Usage : %s [length of dummy file] [dummy file name]", argv[0]);
          fprintf(stderr, "Usage : %s [length of dummy file] [dummy file name]", argv[0]);
  • 개인키,공개키/김태훈,황재선 . . . . 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;
  • 경시대회준비반/BigInteger . . . . 2 matches
         using namespace std;
         namespace BigMath
          const char BigIntPROGRAMNAME[] = { "BigInteger" };
          out << BigIntPROGRAMNAME << " (Version "<< BigIntMajorVersion
  • 권영기/web crawler . . . . 2 matches
          urllib.urlretrieve(url[, filename[, reporthook[, data]]])
          * os.mkdir(path[, mode]) - Create a directory named path with numeric mode mode. If the directory already exists, OSError is raised.
  • 기본데이터베이스 . . . . 2 matches
         id - 10 name - 20 tel - 15 add - 50
         검색키는 ID, name, tel로 하며, 자료가 복수일 경우 해당자료를 전부 출력
  • 데블스캠프2005/Python . . . . 2 matches
         >>> raw_input('your name? ')
         your name? zp
  • 데블스캠프2006/목요일/winapi . . . . 2 matches
          static char szAppName[] = "HelloWin" ;
          wndclass.lpszMenuName = NULL ;
          wndclass.lpszClassName = szAppName ;
          hwnd = CreateWindow (szAppName, // window class name
          static char szAppName[] = "HelloWin" ;
          wndclass.lpszMenuName = NULL ;
          wndclass.lpszClassName = szAppName ;
          hwnd = CreateWindow (szAppName, // window class name
          static char szAppName[] = "HelloWin" ;
          wndclass.lpszMenuName = NULL ;
          wndclass.lpszClassName = szAppName ;
          hwnd = CreateWindow (szAppName, "Timer Sample", WS_OVERLAPPEDWINDOW,
          static char szAppName[] = "HelloWin" ;
          wndclass.lpszMenuName = NULL ;
          wndclass.lpszClassName = szAppName ;
          hwnd = CreateWindow (szAppName, "GetDC Sample", WS_OVERLAPPEDWINDOW,
  • 데블스캠프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);
  • 데블스캠프2010/넷째날/DHTML . . . . 2 matches
         <form name="formname" method="get" action="otaku.php">
  • 데블스캠프2011/둘째날/Machine-Learning/SVM/namsangboy . . . . 2 matches
         if __name__=="__main__":
         if __name__=="__main__":
  • 레밍즈프로젝트 . . . . 2 matches
         다운로드 가능 주소 : ftp://leonardong.nameip.net
         서버 주소 : leonardong.nameip.net
  • 만년달력/곽세환,조재화 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 만년달력/영동 . . . . 2 matches
          String[] nameOfday={"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};//각 요일의 이름
          System.out.print(nameOfday[i]+"\t");
  • 문자반대출력/문보창 . . . . 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;
  • 빵페이지/숫자야구 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 삼총사CppStudy/숙제2/곽세환 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 새싹교실/2011/무전취식/레벨1 . . . . 2 matches
          char y_myname = 'm';
          printf("%c",y_myname);
  • 새싹교실/2011/씨언어발전/3회차 . . . . 2 matches
         return_type function_name (data_type variable_name, …)
  • 새싹교실/2012/나도할수있다 . . . . 2 matches
          char name = 'A';
          printf("%c",name);
  • 서버구조 . . . . 2 matches
          예)vi message => named : name server의 정보
  • 성우용 . . . . 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
         getHostByName() ->
         char myName[255];
         gethostname(myName, sizeof(myName));
         String myIP = inet_ntoa(*(in_addr*) *(gethostbyname(myName))->h_addr_list);
  • 장용운/템플릿 . . . . 2 matches
         template <typename T>
         template <typename U>
  • 중위수구하기/김태훈zyint . . . . 2 matches
          a : <INPUT TYPE="text" NAME="a"><br>
          b : <INPUT TYPE="text" NAME="b"><br>
          c : <INPUT TYPE="text" NAME="c">
         <INPUT TYPE="hidden" name=mode value=action><INPUT TYPE="submit" name=submit value=전송>
  • 중위수구하기/나휘동 . . . . 2 matches
         if __name__ == '__main__':
         if __name__ == '__main__':
  • 큐와 스택/문원명 . . . . 2 matches
         using namespace std;
         using namespace std;
  • 파스칼삼각형/sksmsvlxk . . . . 2 matches
         using namespace std; //new 가 어디 포함되는지 몰라서
          //using namespace std 그냥 사용했음..
  • 파일 입출력_3 . . . . 2 matches
         using namespace std;
          printf("Input filename : ");
  • 피보나치/김정현 . . . . 2 matches
         using namespace std;
         if __name__ == '__main__':
  • 피보나치/조현태 . . . . 2 matches
         using namespace std;
         if __name__ == '__main__':
  • 현종이 . . . . 2 matches
          char m_szName[30]; //이름입니다.
          SungJuk(const char *name,int nNumber, int nKorean, int nEnglish, int nMath);
          void Input(int nNumber, char szName[], int nKorean, int nEnglish, int nMath);
         using namespace std;
          strcpy(m_szName, "이름없음");
          cout<< " " << m_nNumber << "\t" << m_szName<< "\t" << m_nKorean << "\t"
          <<"\t\t"<< "이 름 : "<< m_szName << "\n" <<"\t\t"<<"총 점 : "
          <<"\t\t"<< "이 름 : "<< m_szName << endl <<"\t\t"<<"국 어 : "
          <<"\t\t"<< "이 름 : "<< m_szName << endl <<"\t\t"<<"영 어 : "
          <<"\t\t"<< "이 름 : "<< m_szName << endl <<"\t\t"<<"수 학 : "
         void SungJuk::Input(int nNumber, char szName[], int nKorean, int nEnglish, int nMath)
          strcpy(m_szName,szName);
  • 희경/엘레베이터 . . . . 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;
  • 1thPCinCAUCSE/ExtremePair전략 . . . . 1 match
         using namespace std;
  • 1~10사이 숫자 출력, 5 제외 (continue 문 사용) . . . . 1 match
         using namespace std;
  • 2002년도ACM문제샘플풀이/문제C . . . . 1 match
         using namespace std;
  • 2thPCinCAUCSE/ProblemA/Solution/상욱 . . . . 1 match
         using namespace std;
  • 2학기파이선스터디/채팅창 . . . . 1 match
         if __name__ == "__main__":
  • 3 N+1 Problem/조동영 . . . . 1 match
         using namespace std;
  • 3N 1/김상섭 . . . . 1 match
         using namespace std;
  • 3N+1/김상섭 . . . . 1 match
         using namespace std;
  • 3N+1Problem/1002_2 . . . . 1 match
         if __name__=="__main__":
  • 3N+1Problem/강소현 . . . . 1 match
         using namespace std;
  • 3N+1Problem/강희경 . . . . 1 match
         if __name__ == '__main__':
  • 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
          곳에 경로를 선택하고, Project name: 에 프로젝트명을 적고 OK버튼을 누른다.
  • 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;
  • ACM_ICPC/2011년스터디 . . . . 1 match
         || Name || Prob.ID || Title || Comments ||
          * Mario문제와 동일한 문제 [http://211.228.163.31/30stair/ustair/ustair.php?pname=ustair 계단오르기]
  • ALittleAiSeminar/Namsang . . . . 1 match
          def name(self): return "Namsang"
  • A_Multiplication_Game/곽병학 . . . . 1 match
         using namespace std;
  • AdventuresInMoving:PartIV/김상섭 . . . . 1 match
         using namespace std;
  • AdventuresInMoving:PartIV/문보창 . . . . 1 match
         using namespace std;
  • Ajax/GoogleWebToolkit . . . . 1 match
         The Google Web Toolkit is a free toolkit by Google to develop AJAX applications in the Java programming language. GWT supports rapid client/server development and debugging in any Java IDE. In a subsequent deployment step, the GWT compiler translates a working Java application into equivalent JavaScript that programatically manipulates a web brower's HTML DOM using DHTML techniques. GWT emphasizes reusable, efficient solutions to recurring AJAX challenges, namely asynchronous remote procedure calls, history management, bookmarking, and cross-browser portability.
  • AnEasyProblem/강성현 . . . . 1 match
         using namespace std;
  • AnEasyProblem/권순의 . . . . 1 match
         using namespace std;
  • AndOnAChessBoard/허준수 . . . . 1 match
         using namespace std;
  • AntOnAChessboard/김상섭 . . . . 1 match
         using namespace std;
  • AntOnAChessboard/문보창 . . . . 1 match
         using namespace std;
  • AntOnAChessboard/하기웅 . . . . 1 match
         using namespace std;
  • Atom . . . . 1 match
         Before the Atom work entered the IETF process, the group produced "Atom 0.3", which has support from a fairly wide variety of syndication tools both on the publishing and consuming side. In particular, it is generated by several Google-related services, namely Blogger and Gmail.
  • AustralianVoting/곽세환 . . . . 1 match
         using namespace std;
  • AustralianVoting/문보창 . . . . 1 match
         using namespace std;
  • AutomatedJudgeScript/문보창 . . . . 1 match
         using namespace std;
  • 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;
  • BeingALinuxer . . . . 1 match
          뿌띠에서 logout명령어를 치면 왜 프로그램이 종료되어버리는지?(다시 login name을 입력하도록 나오는것이 정상 아닐까?)
  • Bicoloring/문보창 . . . . 1 match
         using namespace std;
  • BirthdatCake/하기웅 . . . . 1 match
         using namespace std;
  • BirthdayCake/허준수 . . . . 1 match
         using namespace std;
  • Bridge/권영기 . . . . 1 match
         using namespace std;
  • BusSimulation/상협 . . . . 1 match
         using namespace std;
  • BusSimulation/태훈zyint . . . . 1 match
         using namespace std;
  • C++스터디_2005여름 . . . . 1 match
          using namespace std;
  • C/Assembly . . . . 1 match
         CPU : model name : AMD Duron(tm) Processor(800)
  • CNight2011/김태진 . . . . 1 match
          char name[20];
  • CNight2011/윤종하 . . . . 1 match
          char name[20];
  • CPPStudy_2005_1/STL성적처리_2 . . . . 1 match
         using namespace std;
  • CPP_Study_2005_1/Basic Bus Simulation/김태훈 . . . . 1 match
         using namespace std;
  • CVS/길동씨의CVS사용기ForLocal . . . . 1 match
         symbolic names:
  • CarmichaelNumbers/문보창 . . . . 1 match
         using namespace std;
  • Chapter I - Sample Code . . . . 1 match
         RenameThisPage : 페이지 이름 수정 필요. 궁리중 --["1002"]
  • Chapter II - Real-Time Systems Concepts . . . . 1 match
         RenameThisPage - Name Space 에 대해서 지켜주기 바람. 그리고 영문제목띄어쓰기에 대해서는 FrontPage 가장 윗 문단 참조바람 --석천
  • 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
         if __name__=="__main__":
  • ClassifyByAnagram/JuNe . . . . 1 match
         if __name__=='__main__':
  • ClassifyByAnagram/박응주 . . . . 1 match
         if __name__ == "__main__":
  • ClassifyByAnagram/상규 . . . . 1 match
         using namespace std;
  • ClassifyByAnagram/재동 . . . . 1 match
         if __name__ == '__main__':
  • Class로 계산기 짜기 . . . . 1 match
         using namespace std;
  • CodeRace/20060105/도현승한 . . . . 1 match
         using namespace std;
  • CodeRace/20060105/아영보창 . . . . 1 match
         using namespace std;
  • CollectiveOwnership . . . . 1 match
         Wiki:RefactorLowHangingFruit . 고쳐야 할 것이 많다면 오히려 조금씩 고치도록 한다(그리고 고치는 작업을 엔지니어링 태스크로 혹은 유저 스토리로 명시화해서 관리한다). 고치는 중에, 5분 정도의 단위로 테스트를 해봐서 하나도 문제가 없도록 고쳐 나가야 한다. 섬과 육지를 연결하는 다리가 있을 때, 이걸 새 다리로 교체하려면 헌 다리를 부수고 새 다리를 만드는 것이 아니고, 새 다리를 만든 다음 헌 다리를 부수어야 하는 것이다. {{{~cpp formatText(String data)}}}을 {{{~cpp formatText(String data,boolean shouldBeVeryFancy)}}}로 바꾸어야 한다면, {{{~cpp fancibleFormatText}}}를 만들고, 기존의 {{{~cpp formatText}}}를 호출하는 곳을 {{{~cpp fancibleFormatText(data,false)}}}로 하나씩 바꿔나가면서 계속 테스트를 돌려보면 된다. 이게 완전히 다 되었다고 생각이 들면 {{{~cpp formatText}}} 정의를 지워본다. 문제가 없으면 {{{~cpp fancibleFormatText}}}를 {{{~cpp formatText}}}로 rename method 리팩토링을 해준다. 하지만 만약 이 작업이 너무 단순 반복적인 경우에, 충분히 용기가 생기고, 또 확신이 들면 이 작업을 자동화할 수 있다(OAOO). 예컨대 IDE에서 지원하는 자동 리팩토링을 사용하거나, 정규식을 통한 바꾸기(replace) 기능을 쓰거나, 해당 언어 파서를 이용하는 간단한 스크립트를 작성해서 쓰는 방법 등이 있다. 이렇게 큰 걸음을 디디는 경우에는 자동화 테스트가 필수적이다.
  • CommonPermutation/문보창 . . . . 1 match
         using namespace std;
  • CompilerTheory/ManBoyTest . . . . 1 match
         Donald Knuth 가 Algol 60의 구현 정도를 판변하기위해서 만든 프로그램. 테스트의 목적은 올바르게 구현된 scoping rule, call-by-name의 구현 정도를 판별해서 boys(algol 60 구현물)들중에서 men (쓸만한 놈)을 가려내는 용도로 고안되었습니다.
  • ComputerNetworkClass/Report2006/BuildingProxyServer . . . . 1 match
         using namespace System;
  • ContestScoreBoard/문보창 . . . . 1 match
         using namespace std;
  • ContestScoreBoard/신재동 . . . . 1 match
         using namespace std;
  • ContestScoreBoard/차영권 . . . . 1 match
         using namespace std;
  • ContestScoreBoard/허아영 . . . . 1 match
         using namespace std;
  • Counting/김상섭 . . . . 1 match
         using namespace std;
  • CppUnit . . . . 1 match
         using namespace std;
  • Cpp에서의멤버함수구현메커니즘 . . . . 1 match
         using namespace std;
  • CryptKicker2/문보창 . . . . 1 match
         using namespace std;
  • CubicSpline/1002/CubicSpline.py . . . . 1 match
         if __name__=="__main__":
  • CubicSpline/1002/LuDecomposition.py . . . . 1 match
         if __name__=="__main__":
  • CubicSpline/1002/TriDiagonal.py . . . . 1 match
         if __name__=="__main__":
  • CubicSpline/1002/test_NaCurves.py . . . . 1 match
         if __name__=="__main__":
  • CubicSpline/1002/test_lu.py . . . . 1 match
         if __name__=="__main__":
  • CubicSpline/1002/test_tridiagonal.py . . . . 1 match
         if __name__=="__main__":
  • CuttingSticks/김상섭 . . . . 1 match
         using namespace std;
  • CuttingSticks/문보창 . . . . 1 match
         using namespace std;
  • CuttingSticks/하기웅 . . . . 1 match
         using namespace std;
  • CvsNt . . . . 1 match
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi - 현재 [1002]의 컴퓨터에서 돌고있는 ViewCVS. apache cgi 로 돌리고 있다.
  • CxxTest . . . . 1 match
          fileName = eachFile[:lastestPeriod]
          if fileName.endswith("Test"):
          print fileName, extension
         if __name__=="__main__":
  • 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;
  • Doublets/문보창 . . . . 1 match
         using namespace std;
  • Eclipse와 JSP . . . . 1 match
         Project -> Property -> General 선택 후 Context name 부분에 웹으로 접속할 주소를 적는다. ex) /test
  • EcologicalBinPacking/곽세환 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/김회영 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/문보창 . . . . 1 match
         using namespace std;
  • EcologicalBinPacking/황재선 . . . . 1 match
         using namespace std;
  • EffectiveSTL/Container . . . . 1 match
          template<typename T>
  • EffectiveSTL/ProgrammingWithSTL . . . . 1 match
         = Item44. Prefer member functions to algorithms with the same names. =
  • EightQueenProblem/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • EightQueenProblem/강석천 . . . . 1 match
         if __name__ == '__main__':
  • 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;
  • EightQueenProblem2/이강성 . . . . 1 match
         if __name__ == '__main__':
  • EuclidProblem/곽세환 . . . . 1 match
         using namespace std;
  • EuclidProblem/문보창 . . . . 1 match
         using namespace std;
  • EuclidProblem/이동현 . . . . 1 match
         using namespace std;
  • ExploringWorld/20040308-시간여행 . . . . 1 match
          오 좋은 생각이다. 차타고 휙지나가는게 아니라, 자전거를 타거나 걸어다니면서 이것도 기웃 저곳도 기웃을 생각했는데, 그럴게 아니라 새로운 세계를 탐험한다는 느낌이 더 좋을것 같다. ExploringWorld 정도면 될것 같다. rename 할까? 또 좋은 의견 없나? --NeoCoin
  • FOURGODS/김태진 . . . . 1 match
         using namespace std;
  • FactorialFactors/문보창 . . . . 1 match
         using namespace std;
  • FactorialFactors/조현태 . . . . 1 match
         using namespace std;
  • FileInputOutput . . . . 1 match
         using namespace std;
         InputStreamReader isr = new InputStreamReader(new FileInputStream(fileName));
  • Fmt/문보창 . . . . 1 match
         using namespace std;
  • FortuneCookies . . . . 1 match
          * You have an ambitious nature and may make a name for yourself.
  • GDBUsage . . . . 1 match
          FILE:FUNCTION, to distinguish among like-named static functions.
  • Gnutella-MoreFree . . . . 1 match
         || 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 에 쓰인다. ||
          GET/get/<File Index>/<File Name>/HTTP/1.0rn
          GIV<File Index>:<Severnt Identifier>/<File Name>nn 를 보내 파일
          GET/get/<File Index>/<File Name>/HTTP1.0rn
          File Name : Packet.Cpp
         Download->m_Name = Item.Name;
         // Get Filename
         Item.Name += (char) Packet[i];
         Item.NameLower = Item.Name;
         Item.NameLower.MakeLower();
         Item.Icon = m_pDoc->GetIconIndex(Item.NameLower);
  • Gof/Mediator . . . . 1 match
          entryField* _fontName;
          _fontName = new EntryField(this);
          // fill the listBox white the available font names
          _fontName->GetTet(_fontList->GetSelection());
          paneName: 'myListPane';
  • 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;
  • Hacking/20040930첫번째모임 . . . . 1 match
          cd, pwd, man, ls, cp, rm, mkdir, rmdir, mv, cat, more, less, grep, find, echo, uname, adduser, passwd, id, su
  • Hacking/20041028두번째모임 . . . . 1 match
          cd, pwd, man, ls, cp, rm, mkdir, rmdir, mv, cat, more, less, grep, find, echo, uname, adduser, passwd, id, su
  • Hacking/20041104세번째모임 . . . . 1 match
         find --name --user --group 등의 조건으로 해당 파일이나 디렉토리 검색
  • 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;
  • 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;
  • HaskellLanguage . . . . 1 match
          * [http://pub.hal3.name/daume02yaht.pdf Yet another haskell tutorial] : Haskell 입문시에 도움이 된다.
  • HelpOnLinking . . . . 1 match
         #keywords inter wiki,moniwiki,wiki,wiki name,링크
         {{{WikiName}}}라고 쓰면 WikiName이 자동으로 링크가 걸립니다.
         WikiName과 같은 식으로 연결되는 것을 방지하고 있는 그대로 보여지는 것을 원한다면 느낌표(''bang'')를 다음과 WikiName앞에 붙여서 다음과 같이 사용할 수 있습니다. {{{!WikiName}}} `!WikiName`. 또한 물음표를 임의의 단어 앞에 붙이면 강제로 링크가 걸리게 됩니다. i.e. {{{?Hello}}} `?Hello`.
          * [#20030702 Anchor Name]
          * [#20030702 Anchor Name]
         !WikiName 식 링크를 config.php에서 `$use_camelcase=0;`라고 추가하면 비활성화 시킬 수 있습니다.
         혹은 페이지별로 !WikiName식 링크 기능을 비활성화/활성화 하려면 `#camelcase` 혹은 `#camelcase 0` 를 페이지 최상단에 넣어줍니다. (ProcessingInstructions 참조)
  • HelpOnProcessingInstructions . . . . 1 match
          * {{{#action}}} ''action name'': 페이지에 대한 기본 액션을 ''EditText'' 이외의 다른 것으로 바꿔준다.
  • HelpOnXmlPages . . . . 1 match
         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.
  • HotDraw . . . . 1 match
         {{{[[Draw(Picture name)]]}}}
  • HowManyFibs?/문보창 . . . . 1 match
         using namespace std;
  • HowManyPiecesOfLand?/문보창 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/김회영 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/문보창 . . . . 1 match
         using namespace std;
  • HowManyZerosAndDigits/허아영 . . . . 1 match
         using namespace std;
  • ImmediateDecodability/김회영 . . . . 1 match
         using namespace std;
  • ImmediateDecodability/문보창 . . . . 1 match
         using namespace std;
  • IndexedTree/권영기 . . . . 1 match
         using namespace std;
  • InterMap . . . . 1 match
         SmallGaia http://neocoin.nameip.net:8000/w / #NeoCoin 의 개인 위키로 주소가 확정되지 않음
  • 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;
  • JSP/SearchAgency . . . . 1 match
          out.write(" <input type=text name='keyword'>");
         String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  • JTDStudy/첫번째과제/장길 . . . . 1 match
          public String name;
  • Java Script/2011년스터디/박정근 . . . . 1 match
          person.name='박정근'
  • JavaHTMLParsing/2011년프로젝트 . . . . 1 match
          System.err.println("잘못된 URL입니다. 사용법 : java URLConn http://hostname/path]");
  • JavaScript/2011년스터디/CanvasPaint . . . . 1 match
          <select name="colors"onclick="selectColor(this.selectedIndex)">
  • JavaScript/2011년스터디/박정근 . . . . 1 match
          person.name='박정근'
  • JavaStudy2004/조동영 . . . . 1 match
          public String name;
  • JollyJumpers/Celfin . . . . 1 match
         using namespace std;
  • JollyJumpers/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • JollyJumpers/강희경 . . . . 1 match
         using namespace std;
  • JollyJumpers/곽세환 . . . . 1 match
         using namespace std;
  • JollyJumpers/김회영 . . . . 1 match
         using namespace std;
  • JollyJumpers/남훈 . . . . 1 match
         if __name__ == '__main__':
  • JollyJumpers/문보창 . . . . 1 match
         using namespace std;
  • JollyJumpers/오승균 . . . . 1 match
         using namespace std;
  • JollyJumpers/이승한 . . . . 1 match
         using namespace std;
  • JollyJumpers/조현태 . . . . 1 match
         namespace JollyJumpers
  • JollyJumpers/허아영 . . . . 1 match
         using namespace std;
  • JumpJump/김태진 . . . . 1 match
         using namespace std;
  • KnapsackProblem/김태진 . . . . 1 match
         using namespace std;
  • KnightTour/재니 . . . . 1 match
         using namespace std;
  • LC-Display/곽세환 . . . . 1 match
         using namespace std;
  • LC-Display/문보창 . . . . 1 match
         using namespace std;
  • LC-Display/상협재동 . . . . 1 match
         using namespace std;
  • LCD Display/Celfin . . . . 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/named : 네임서버 설정 파일들 존재
  • LoadBalancingProblem . . . . 1 match
         == Problem name : Load Balancing ==
  • LoadBalancingProblem/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • LongestNap/문보창 . . . . 1 match
         using namespace std;
  • LoveCalculator/zyint . . . . 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;
  • 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;
  • Marbles/문보창 . . . . 1 match
         using namespace std;
  • Marbles/신재동 . . . . 1 match
         using namespace std;
  • MedusaCppStudy . . . . 1 match
         using namespace std;
  • MineSweeper/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • MineSweeper/곽세환 . . . . 1 match
         using namespace std;
  • MineSweeper/김민경 . . . . 1 match
         if __name__=="__main__":
  • 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;
  • MoinMoin . . . . 1 match
         "Moin" meaning "Good Morning", and "MoinMoin" being an emphasis, i.e. "A ''Very'' Good Morning". The name was obviously chosen for its WikiWikiNess.
  • MoniWikiACL . . . . 1 match
         * @ALL protect deletefile,deletepage,rename,rcspurge,rcs,chmod,backup,restore
  • MoniWikiPlugins . . . . 1 match
          * rename
  • Monocycle/김상섭 . . . . 1 match
         using namespace std;
  • Monocycle/조현태 . . . . 1 match
         using namespace std;
  • MultiplyingByRotation/곽세환 . . . . 1 match
         using namespace std;
  • MultiplyingByRotation/문보창 . . . . 1 match
         using namespace std;
  • MySQL/PasswordFunctionInPython . . . . 1 match
         if __name__=="__main__":
  • NUnit/C#예제 . . . . 1 match
         namespace NUnitByCShop
          String fileName = "_________Test";
          FileInfo fileInfo = new FileInfo(fileName);
          FileInfo fileInfo = new FileInfo(fileName);
          FileInfo fileInfo = new FileInfo(fileName);
          1. Argument에 {{{ $(ProjectDir)\bin\debug\$(TargetName).exe }}} 라고 적는다. ( 보통은 디버그 모드에서서 컴파일 하므로 폴더가 debug이다. 릴리즈인 경우에는 release로 바꾸면 될 듯)
  • 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;
  • OOP/2012년스터디 . . . . 1 match
         // Copyright (c) 2012년 __MyCompanyName__. All rights reserved.
         using namespace std;
  • Omok/재니 . . . . 1 match
         using namespace std;
  • Ones/1002 . . . . 1 match
         if __name__=="__main__":
  • Ones/문보창 . . . . 1 match
         using namespace std;
  • OpenCamp/첫번째 . . . . 1 match
         id varchar(30), password varchar(50), name varchar(10), email varchar(50), date varchar(30)
  • 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/errno.h . . . . 1 match
         ||18||int EXDEV||파일시스템이 인지할수 없는 영역에 부적당한 링크를 만들려고 시도할 때 이 에러메세지가 나온 다. 이것은 링크를 사용할때만 발생하지만 또, rename으로 파일을 재명명할 때 발생하기도 한다.||
  • OurMajorLangIsCAndCPlusPlus/print/이도현 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/print/하기웅 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/print/허준수 . . . . 1 match
         using namespace std;
  • OurMajorLangIsCAndCPlusPlus/stdio.h . . . . 1 match
         || int rename(const char *, const char *) || 첫번째 인자의 파일을 두번째 인자의 이름으로 바꾸어준다. ||
  • PHP-방명록만들기 . . . . 1 match
          mysql_query("CREATE DATABASE IF NOT EXISTS problem CHARACTER SET euckr",$connect);//$dbname = mysql_create_db("problem", $connnect);와 동일
          mysql_query("SET NAMES euckr");
          $mt = $mt."Name VARCHAR( 20 ) NOT NULL, ";
  • POLY/김태진 . . . . 1 match
         using namespace std;
  • PPProject/20041001FM . . . . 1 match
         using namespace std;
  • Pairsumonious_Numbers/권영기 . . . . 1 match
         using namespace std;
  • Pairsumonious_Numbers/김태진 . . . . 1 match
         using namespace std;
  • PokerHands/Celfin . . . . 1 match
         using namespace std;
  • PokerHands/문보창 . . . . 1 match
         using namespace std;
  • PolynomialCoefficients/문보창 . . . . 1 match
         using namespace std;
  • PowerOfCryptography/문보창 . . . . 1 match
         using namespace std;
  • PreviousFrontPage . . . . 1 match
         MoinMoin is a Python WikiClone, based on PikiPiki. The name is a common German slang expression explained on the MoinMoin page. If you run a Wiki using MoinMoin, please add it to the MoinMoinWikis page.
         You can edit any page by pressing the link at the bottom of the page. Capitalized words joined together form a WikiName, which hyperlinks to another page. The highlighted title searches for all pages that link to the current page. Pages which do not yet exist are linked with a question mark: just follow the link and you can add a definition.
  • PrimaryArithmetic/1002 . . . . 1 match
         if __name__=="__main__":
  • PrimaryArithmetic/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • PrimaryArithmetic/문보창 . . . . 1 match
         using namespace std;
  • PrimaryArithmetic/허아영 . . . . 1 match
         using namespace std;
  • PrimaryArithmetic/황재선 . . . . 1 match
         if __name__ == '__main__':
  • PrimeNumberPractice . . . . 1 match
         using namespace std;
  • ProgrammingLanguageClass/Exam2002_2 . . . . 1 match
          * pass by value-result, pass by reference, pass by name 에서 actual parameter 로의 Binding Time 을 서술하시오
  • ProgrammingLanguageClass/Report2002_1 . . . . 1 match
         <identifier> → any names conforming C identifier
  • ProjectPrometheus/AT_BookSearch . . . . 1 match
         if __name__=="__main__":
  • ProjectPrometheus/AT_RecommendationPrototype . . . . 1 match
          def __init__(self, aBookName):
          self.bookName = aBookName
          #print self.bookName, " relation : " , book.bookName, self.bookRelation[book]
          # print book.bookName
          output += book.bookName
         if __name__=="__main__":
  • ProjectVirush/Prototype . . . . 1 match
          char msg[] = "My name is Na Hwidong,.";
  • ProjectZephyrus/Server . . . . 1 match
          * 모든 객체 정의 완성 상태. Rename과 코딩중에 필요한 부가적인 정보를 알아 내야 한다.
  • ProjectZephyrus/ThreadForServer . . . . 1 match
         rename하는 방식도 그리 무리는 없을것 같다.
  • PyIde/FeatureList . . . . 1 match
          * rename
  • PythonMultiThreading . . . . 1 match
         if __name__=="__main__":
  • PythonXmlRpc . . . . 1 match
         if __name__=='__main__':
  • Random Walk2/곽세환 . . . . 1 match
         using namespace std;
  • RandomFunction . . . . 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;
  • 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/ExtremePair . . . . 1 match
         if __name__ == '__main__':
  • RandomWalk2/Leonardong . . . . 1 match
         using namespace std;
  • RandomWalk2/Vector로2차원동적배열만들기 . . . . 1 match
         using namespace std;
  • RandomWalk2/상규 . . . . 1 match
         using namespace std;
  • RandomWalk2/현민 . . . . 1 match
         using namespace std;
  • Randomwalk/조동영 . . . . 1 match
         using namespace std;
  • RegularExpression/2011년스터디 . . . . 1 match
         <a href ="dfdof" class=dfdfd" name ="cdef"></a>
  • RelationalDatabaseManagementSystem . . . . 1 match
         The basic relational building block is the domain, or data type. A tuple is an ordered multiset of attributes, which are ordered pairs of domain and value. A relvar (relation variable) is a set of ordered pairs of domain and name, which serves as the header for a relation. A relation is a set of tuples. Although these relational concepts are mathematically defined, they map loosely to traditional database concepts. A table is an accepted visual representation of a relation; a tuple is similar to the concept of row.
  • Release Planning . . . . 1 match
         Rename : ReleasePlanning 으로 이름변경합니다.
  • ReverseAndAdd/Celfin . . . . 1 match
         using namespace std;
  • ReverseAndAdd/곽세환 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/김범준 . . . . 1 match
         if __name__ == '__main__':
  • ReverseAndAdd/김정현 . . . . 1 match
         if __name__ == '__main__':
  • ReverseAndAdd/김회영 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/남도연 . . . . 1 match
         if __name__=='__main__':
  • ReverseAndAdd/남상협 . . . . 1 match
         if __name__=='__main__':
  • ReverseAndAdd/신재동 . . . . 1 match
         if __name__ == '__main__':
  • ReverseAndAdd/최경현 . . . . 1 match
         if __name__ == '__main__' :
  • ReverseAndAdd/태훈 . . . . 1 match
         if __name__ == '__main__':
  • ReverseAndAdd/허아영 . . . . 1 match
         using namespace std;
  • ReverseAndAdd/황재선 . . . . 1 match
         if __name__ == '__main__':
  • Robbery/조현태 . . . . 1 match
         using namespace std;
  • Ruby/2011년스터디/서지혜 . . . . 1 match
          _tprintf(_T("\t[Process name]\t[PID]\t[ThreadID]\t[PPID]\n"));
  • RubyLanguage/Class . . . . 1 match
          * Namespace
         == Namespace ==
          * 앞의 Service 클래스는 최상위 레벨의 namespace에 속해 있고, 뒤의 Service 클래스는 Library 모듈에 속해 있다.
  • 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/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;
  • 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
         using namespace std;
  • ScheduledWalk/진영&세환 . . . . 1 match
         using namespace std;
  • ScheduledWalk/창섭&상규 . . . . 1 match
         using namespace std;
  • Self-describingSequence/문보창 . . . . 1 match
         using namespace std;
  • Self-describingSequence/조현태 . . . . 1 match
         using namespace std;
  • SeminarHowToProgramIt/Pipe/VendingMachineParser.py . . . . 1 match
          def parse(self,aString=None,aStream=None,aName=None):
          lexer=shlex.shlex(aStream,aName)
         if __name__=='__main__':
  • SeminarHowToProgramIt/Pipe/vendingmachine.py . . . . 1 match
         if __name__=='__main__':
  • ShellSort/문보창 . . . . 1 match
         using namespace std;
         const int MAX_NAME = 81;
         void input_turtle(char turt[][MAX_NAME], const int & nTurt);
         void incoding(const char oldTurt[][MAX_NAME], const char newTurt[][MAX_NAME], const int & nTurt, int * code);
         void print_turtle(const char turt[][MAX_NAME], const int * code, const bool * isMove, const int & nTurt);
          char oldTurt[MAX_TURTLE][MAX_NAME], newTurt[MAX_TURTLE][MAX_NAME];
         void input_turtle(char turt[][MAX_NAME], const int & nTurt)
          cin.getline(turt[i], MAX_NAME, '\n');
         void incoding(const char oldTurt[][MAX_NAME], const char newTurt[][MAX_NAME], const int & nTurt, int * code)
         void print_turtle(const char turt[][MAX_NAME], const int * code, const bool * isMove, const int & nTurt)
  • Shoemaker's_Problem/곽병학 . . . . 1 match
         using namespace std;
  • Shoemaker's_Problem/김태진 . . . . 1 match
         using namespace std;
  • SignatureSurvey . . . . 1 match
         def readFromFile(aFileName):
          f = open(aFileName, 'r')
         def writeToFile(aFileName, aStr):
          f = open(aFileName, 'w')
         if __name__=="__main__":
  • Slurpys/곽세환 . . . . 1 match
         using namespace std;
  • Slurpys/문보창 . . . . 1 match
         using namespace std;
  • Slurpys/박응용 . . . . 1 match
         if __name__ == '__main__':
  • Slurpys/신재동 . . . . 1 match
         if __name__=='__main__':
  • Slurpys/황재선 . . . . 1 match
         if __name__ == '__main__':
  • SmallTalk/강좌FromHitel/강의2 . . . . 1 match
          font: (Font name: 'Arial' pointSize: 36) bold;
  • SmalltalkBestPracticePatterns/DispatchedInterpretation . . . . 1 match
         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.
  • SmithNumbers/남상협 . . . . 1 match
         using namespace std;
  • SmithNumbers/문보창 . . . . 1 match
         using namespace std;
  • SmithNumbers/신재동 . . . . 1 match
         using namespace std;
  • SpiralArray/세연&재니 . . . . 1 match
         using namespace std;
  • SpiralArray/영동 . . . . 1 match
         using namespace std;
  • SpiralArray/임인택 . . . . 1 match
         if __name__=='__main__':
  • 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;
  • StringOfCPlusPlus/세연 . . . . 1 match
         using namespace std;
  • SummationOfFourPrimes/김회영 . . . . 1 match
         using namespace std;
  • SummationOfFourPrimes/문보창 . . . . 1 match
         using namespace std;
  • SystemEngineeringTeam/TrainingCourse . . . . 1 match
          * 여러 도메인 구매대행 업체를 비교하였으나 가격과 서비스는 큰 차이가 없었음. 결국 결제가 가장 편한곳을 찾게 되었는데 [http://www.dotname.co.kr/ 닷네임 코리아]는 무통장 입금 방식의 결제가 가능했음. 개인별로 임시 계좌번호를 만들어 입금하면 바로 확인 되는 형식이라 별도의 확인 전화를 하거나 상대편에서 확인할때까지 기다릴 필요가 없었음. [http://www.hosting.kr/ hosting.kr]은 AcitveX방식의 결제를 해야 쉬운 결제가 가능하고 그 이외에는 절차가 너무 복잡해서 쓰지 않았음.
  • TFP예제/Omok . . . . 1 match
         if __name__ == '__main__':
  • Task . . . . 1 match
         Rename : AntTask
  • Temp/Commander . . . . 1 match
          cmds = self.parser.parse(aString=line,aName='Console')
         if __name__ == '__main__':
  • Temp/Parser . . . . 1 match
          def parse(self,aString=None,aStream=None,aName=None):
          lexer=shlex.shlex(aStream,aName)
         if __name__=='__main__':
  • 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
         <APPLET CODE = "filename">
          - PageName 만 보고서는 Computer System 이란 과목에 등장하는 LittleManComputer 가 생각나는군요..^^ - 임인택
  • TheJavaMan/스네이크바이트 . . . . 1 match
          JOptionPane.showInputDialog("Enter your name please");
  • 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/Leonardong . . . . 1 match
         if __name__ == '__main__':
  • 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;
  • TkinterProgramming/Calculator2 . . . . 1 match
          self.myNameSpace = {}
          return repr(eval(code, self.myNameSpace, self.myNameSpace))
          exec code in self.myNameSpace, self.myNamespace
          self.master.iconname('Tk-42')
  • TopicMap . . . . 1 match
          * [ include:WikiName] always includes the referred page
          * [ map:WikiName] for print inclusion (better names than ''map''?)
         This is useable for navigation in the '''normal''' view. Now imagine that if this is marked as a TopicMap, the ''content'' of the WikiName''''''s that appear is included ''after'' this table of contents, in the '''print''' view.
  • TowerOfCubes/조현태 . . . . 1 match
         using namespace std;
         const char FACE_NAME[BOX_FACE_NUMBER][7] = {"front", "back", "left", "right", "top", "bottom"};
          cout << FACE_NAME[showStack[i].topFace] << endl;
  • Trace . . . . 1 match
         using namespace std;
  • TugOfWar/강희경 . . . . 1 match
         if __name__ == '__main__':
  • TugOfWar/김회영 . . . . 1 match
         //using namespace std;
  • TugOfWar/남상협 . . . . 1 match
         if __name__=='__main__':
  • TugOfWar/문보창 . . . . 1 match
         using namespace std;
  • TugOfWar/신재동 . . . . 1 match
         if __name__ == '__main__':
  • TugOfWar/이승한 . . . . 1 match
         using namespace std;
  • UML . . . . 1 match
         In UML 2.0, the Collaboration diagram has been simplified and renamed the Communication diagram.
  • USACOYourRide/신진영 . . . . 1 match
         using namespace std;
  • UbuntuLinux . . . . 1 match
         tracd --port 8000 /var/trac/YourProjectNameHere/
         http://yourdomain:8000/YourProjectNameHere/wiki
          AuthName "leonardong"
         이제 [http://leonardong.nameip.net/trac/leonardong Trac]을 서버에서 돌릴 수 있다.
  • UglyNumbers/JuNe . . . . 1 match
         if __name__=='__main__':
  • UglyNumbers/김회영 . . . . 1 match
         using namespace std;
  • UglyNumbers/문보창 . . . . 1 match
         using namespace std;
  • UglyNumbers/송지원 . . . . 1 match
         using namespace std;
  • UglyNumbers/황재선 . . . . 1 match
         if __name__ == '__main__':
  • UpgradeC++/과제2 . . . . 1 match
         using namespace std;
  • VitosFamily/Celfin . . . . 1 match
         using namespace std;
  • VonNeumannAirport/Leonardong . . . . 1 match
         if __name__ == "__main__":
  • VonNeumannAirport/인수 . . . . 1 match
         using namespace std;
  • WERTYU/1002 . . . . 1 match
         if __name__=="__main__":
  • WERTYU/Celfin . . . . 1 match
         using namespace std;
  • WERTYU/문보창 . . . . 1 match
         using namespace std;
  • WERTYU/허아영 . . . . 1 match
         using namespace std;
  • WeightsAndMeasures/김상섭 . . . . 1 match
         using namespace std;
  • WeightsAndMeasures/문보창 . . . . 1 match
         using namespace std;
  • WeightsAndMeasures/신재동 . . . . 1 match
         if __name__=='__main__':
  • WeightsAndMeasures/황재선 . . . . 1 match
         if __name__ == '__main__':
  • WheresWaldorf/Celfin . . . . 1 match
         using namespace std;
  • WinCVS . . . . 1 match
          * User Name : local이외의 접속방법을 설정하였을때 ID를 넣어준다.
          * Module name and path on the server : 모듈의 이름 (폴더의 이름이 된다.)
  • XOR삼각형/aekae . . . . 1 match
         using namespace std;
  • XOR삼각형/곽세환 . . . . 1 match
         using namespace std;
  • Yggdrasil/temp . . . . 1 match
         using namespace std;
  • ZP&COW세미나 . . . . 1 match
         if __name__=='__main__':
  • ZeroPageServer/FixDate . . . . 1 match
         그런데, rdate 가 이번 테스트 업그레이드 버전 부터 안되는 것이다. 새버전에서 servername 을 입력받을수 없다고 하는데, 왜그런지 모르겠다. 그래서 대안으로 이것을 사용한다.
  • ZeroPageServer/old . . . . 1 match
          동문서버 말고도 idaizy.com 도 자체적으로 네임서버를 돌리고 있습니다. 근데 Named 에 대해 잘 몰라서 어떤식으로 운용되고있다고는 말씀드릴수가 없네요 아는게 없어서...-_- [임인택]
          원하시면 저희 서버에서 돌아가고 있는 named.conf 를 보여드리겠습니다. 스터디 하시면서 위키에 페이지 만들어주세요. 저도 보고 공부좀 하게요 :) - [임인택]
  • ZeroPageServer/set2002_815 . . . . 1 match
          * 27일 오후에 suexec rename, cgiwrap설치후 삭제하고, suexec 복구하자 잘 동작
  • [Lovely]boy^_^/3DLibrary . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/Diary/7/8_14 . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/EnglishGrammer/PresentPerfectAndPast . . . . 1 match
          ex) He told me his name, but I've forgotten it.(I can't remember it now.)
  • [Lovely]boy^_^/USACO/BrokenNecklace . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/MixingMilk . . . . 1 match
         using namespace std;
  • [Lovely]boy^_^/USACO/PrimePalinDromes . . . . 1 match
         using namespace std;
  • [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;
  • abced reverse . . . . 1 match
         using namespace std;
  • aekae/* . . . . 1 match
         using namespace std;
  • canvas . . . . 1 match
         using namespace std;
  • cookieSend.py . . . . 1 match
         if __name__=="__main__":
  • crossedladder/곽병학 . . . . 1 match
         using namespace std;
  • eternalbleu . . . . 1 match
         name : youngchang park
  • gusul/김태진 . . . . 1 match
          * [http://211.229.66.5/30stair/gusul/gusul.php?pname=gusul 링크]
  • hanoitowertroublesagain/이도현 . . . . 1 match
         using namespace std;
  • html5/outline . . . . 1 match
         <a href="mailto:smaple@example.com">name</a>
  • html5practice/즐겨찾기목록만들기 . . . . 1 match
          <form name="formInput">
         function doRemoveItem(itemName) {
          localStorage.setItem(itemName, "false");
          var pairs = "<table><tr><th>Name</th><th>Value</th></tr>\n";
          var pairs = "<table><tr><th>Name</th><th>Value</th></tr>\n";
  • koi_aio/권영기 . . . . 1 match
         using namespace std;
  • koi_cha/곽병학 . . . . 1 match
         using namespace std;
  • minesweeper/Celfin . . . . 1 match
         using namespace std;
  • sort/권영기 . . . . 1 match
         using namespace std;
  • study C++/ 한유선 . . . . 1 match
          using namespace std;
  • usa_selfish/권영기 . . . . 1 match
         using namespace std;
  • usa_selfish/김태진 . . . . 1 match
         // Copyright (c) 2012년 __MyCompanyName__. All rights reserved.
         using namespace std;
  • vending machine . . . . 1 match
         DeleteMe) rename or modify : 일단 ZeroPage 에서 작성했었던 VendingMachine 과는 다른 Spec 이여서 이 위키에서는 맞지 않은듯 합니다. 어떤 분이 작성하신건가요? --[1002]
  • whiteblue/MagicSquare . . . . 1 match
         using namespace std;
  • whiteblue/NumberBaseballGame . . . . 1 match
         using namespace std;
  • whiteblue/만년달력 . . . . 1 match
         using namespace std;
  • whiteblue/자료구조다항식구하기 . . . . 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;
         Object subclass: #NameOfSubclass
          instanceVariableNames: ''
          classVariableNames: ''
  • 구구단/S.S.S . . . . 1 match
         if __name__=='__main__':
  • 구구단/aekae . . . . 1 match
         using namespace std;
  • 구구단/강희경 . . . . 1 match
         using namespace std;
  • 구구단/곽세환 . . . . 1 match
         using namespace std;
  • 구구단/김범준 . . . . 1 match
         if __name__ == '__main__':
  • 구구단/김상윤 . . . . 1 match
         using namespace std;
  • 구구단/김태훈-zyint . . . . 1 match
         if __name__ == '__main__':
  • 구구단/문원명 . . . . 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
         if __name__ == '__main__':
  • 구구단/조재화 . . . . 1 match
         using namespace std;
          instanceVariableNames: ''
          classVariableNames: ''
  • 구구단/조현태 . . . . 1 match
         if __name__ == '__main__':
  • 구구단/허아영 . . . . 1 match
         if __name__== '__main__':
  • 금고/김상섭 . . . . 1 match
         using namespace std;
  • 금고/문보창 . . . . 1 match
         using namespace std;
  • 금고/조현태 . . . . 1 match
         using namespace std;
  • 금고/하기웅 . . . . 1 match
         using namespace std;
  • 기본데이터베이스/조현태 . . . . 1 match
         const char print_outs[HANG_MOK][5]={"id","name","tel","add"};
  • 김범준 . . . . 1 match
         duco ornamentum(라틴어로 계산기이지만 컴퓨터라고 하기로 함)
  • 김상윤 . . . . 1 match
         using namespace std;
  • 단식자바 . . . . 1 match
         [http://gigamail8.paran.com:8080/gigamail_pop.php?file=/D8/1/20050713/16/07/beonit@paran.com/1121238649_29721_x0.zip&filename=javaJava.zip 첫날소스]
  • 단어순서/방선희 . . . . 1 match
         using namespace std;
  • 데블스캠프2003/ToyProblems/Random . . . . 1 match
         using namespace std;
  • 데블스캠프2003/넷째날/Linux실습 . . . . 1 match
         여기서 다운 받아 실행한 후, Protocol을 SSH로 하고 Hostname을 zeropage.org로 하여 접속하세요. 그리고 부여받은 id와 비밀번호를 입력하면 됩니다.
  • 데블스캠프2005 . . . . 1 match
         [http://gigamail6.paran.com:8080/gigamail_pop.php?file=/D6/1/20050620/13/09/beonit@paran.com/1119244238_8864_x0.zip&filename=flashmx.zip FlashMX] - [데블스캠프2005/FLASH키워드정리]에서 사용할 플레시 프로그램
  • 데블스캠프2005/금요일/OneCard . . . . 1 match
         if __name__=='__main__':
  • 데블스캠프2006/CPPFileInput . . . . 1 match
         using namespace std;
  • 데블스캠프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/문제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;
  • 데블스캠프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;
          char cmdName[256];
          if( strcmp(argv[0], cmds[i].cmdName ) == 0 )
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/namsangboy . . . . 1 match
         if __name__=="__main__":
  • 데블스캠프2011/셋째날/String만들기/김준석 . . . . 1 match
         using namespace std;
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김준석 . . . . 1 match
         namespace TestWindowFormDevils
  • 데블스캠프2012/넷째날/묻지마Csharp/김태진 . . . . 1 match
         namespace WindowsFormsApplication1
  • 데블스캠프2012/넷째날/묻지마Csharp/서민관 . . . . 1 match
         namespace WindowsFormsApplication1
  • 데블스캠프2012/넷째날/후기 . . . . 1 match
          * 실제로 강사 당사자가 '''5일간''' 배운 C#은 실무(현업) 위주라 객체지향 관점이라던가 이런건 많이 못 배웠습니다. 함수 포인터와 비슷한 Delegate라던가 Multi Thread를 백그라운드로 돌린다던가 이런건 웬지 어린 친구들이 멘붕할듯 하고 저도 확신이 없어 다 빼버렸지요 ㅋㅋㅋㅋㅋㅋ namespace와 partial class, 참조 추가 dll 갖고 놀기(역어셈을 포함하여) 같은걸 재밌게도 해보고 싶었지만 예제 준비할 시간이 부족했어요ㅠ_- 개인적으로 마지막 자유주제 프로그램은 민관 군 작품이 제일 좋았어요 ㅋㅋ - [지원]
  • 랜웍/이진훈 . . . . 1 match
         using namespace std;
  • 렌덤워크/조재화 . . . . 1 match
         using namespace std;
  • 로그인없이ssh접속하기 . . . . 1 match
         a@A:~> ssh b@B hostname
  • 마름모출력/S.S.S . . . . 1 match
         if __name__=='__main__':
  • 마름모출력/zyint . . . . 1 match
         if __name__ == '__main__':
  • 마름모출력/김범준 . . . . 1 match
         if __name__ == '__main__':
  • 마름모출력/김정현 . . . . 1 match
         if __name__ == '__main__':
  • 마름모출력/남도연 . . . . 1 match
         if __name__=='__main__':
  • 마름모출력/문보창 . . . . 1 match
         if __name__== '__main__':
  • 마름모출력/윤성복 . . . . 1 match
         if __name__=='__main__':
  • 마름모출력/조현태 . . . . 1 match
         if __name__ == '__main__':
  • 마름모출력/허아영 . . . . 1 match
         if __name__== '__main__':
  • 마방진/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;
  • 몸짱프로젝트/InfixToPrefix . . . . 1 match
         if __name__ == '__main__':
  • 문자반대출력/조현태 . . . . 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
         #include <ctime> using namespace std;
  • 미로찾기/조현태 . . . . 1 match
         using namespace std;
  • 반복문자열/조현태 . . . . 1 match
         using namespace std;
  • 반복문자열/허아영 . . . . 1 match
         using namespace std;
  • 방울뱀스터디/만두4개 . . . . 1 match
         if __name__ == '__main__':
  • 보드카페 관리 프로그램 . . . . 1 match
         using namespace std;
  • 보드카페 관리 프로그램/강석우 . . . . 1 match
         using namespace std;
  • 비밀키/강희경 . . . . 1 match
         using namespace std;
          char fileName[10];
          cin >> fileName;
          ifstream fin(fileName);
          cin >> fileName;
          ofstream fout1(fileName);
  • 비밀키/김홍선 . . . . 1 match
         using namespace std;
  • 비밀키/노수민 . . . . 1 match
         using namespace std;
          char fileName[10];
          cin >> fileName;
          ifstream fin(fileName);
          char fileName[10];
          cin >> fileName;
          ifstream fin(fileName);
  • 비밀키/박능규 . . . . 1 match
         using namespace std;
  • 비밀키/임영동 . . . . 1 match
         using namespace std;
  • 비밀키/조재화 . . . . 1 match
         using namespace std;
  • 비밀키/황재선 . . . . 1 match
         using namespace std;
  • 비행기게임/BasisSource . . . . 1 match
         if __name__=='__main__':main()
  • 빵페이지/마방진 . . . . 1 match
         using namespace std;
  • 삼총사CppStudy/20030806 . . . . 1 match
         using namespace std;
  • 삼총사CppStudy/숙제1/곽세환 . . . . 1 match
         using namespace std;
  • 새싹교실/2011 . . . . 1 match
          * [새싹교실/2011/Noname]
  • 성적처리프로그램 . . . . 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;
  • 숫자를한글로바꾸기/조현태 . . . . 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
         if __name__ == '__main__':
  • 알고리즘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
          * a plastic or stone figure of a gnome, used as a garden ornament
  • 웹에요청할때Agent바꾸는방법 . . . . 1 match
         if __name__ == "__main__":
  • 위키개발2006 . . . . 1 match
          owiki_page_name - refer 하는 카페들이 있는 서버 에서 n_referUrl = 카페 인곳
  • 위키설명회 . . . . 1 match
          * Rename, [문서구조조정]을 통해서 [Refactoring]을 경험하고, 이것이 프로그래밍의 영역에서 어떠한 관점을 가지고 있는지 이야기 해 본다.
  • 유용한팁들 . . . . 1 match
         a@A:~> ssh b@B hostname
  • 윤성준 . . . . 1 match
         using namespace std;
  • 이승한/질문 . . . . 1 match
         using namespace std;
  • 이영호/개인공부일기장 . . . . 1 match
         21 (목) - Compilers, C++공부 시작(C++자체가 쉬워 7일만에 끝낼거 같음. -> C언어를 안다고 가정하고 C++를 가르쳐 주는 책을 보기 시작.), 기본문법, namespace, function overloading, class 추상화, 은닉성까지 완벽하게 정리.
  • 이차함수그리기/조현태 . . . . 1 match
         using namespace std;
  • 인터프리터/권정욱 . . . . 1 match
         using namespace std;
  • 임인택/CVSDelete . . . . 1 match
         if __name__=='__main__':
  • 자료병합하기/조현태 . . . . 1 match
         using namespace std;
  • 작은자바이야기 . . . . 1 match
          * 리플렉션과 제네릭스를 써서 map -> object와 object -> map을 하는 부분을 해봤습니다. 자바의 일반적인 세 가지 방식의 클래스 내 변수에 대해 getClass, getFields, getMethods를 사용해 private, 나 접근자가 있는 경우의 값을 받아왔습니다. getter를 사용해서 변수 값을 받아올 때 이름이 get으로 시작하는 다른 함수를 제외하기 위해 method.getParameterTypes().length == 0 같은 부분은 이렇게 체크해야 된다는 부분은 나중에 제네릭스 관련으로 써먹을만 할 것 같습니다. 그리고 mapToObject에서는 문제가 없었지만 objectToMap의 경우에는 제네릭스의 type erase때문에 Class<T> expectedType = T.class; 같은 코드를 사용할 수 없어서 map.put(field.getName(), (T)field.get(obj));에서 형변환의 타입 안전성을 위해 인자로 Class<T> valueType을 받아오고 valueType.isAssignableFrom(field.getType())로 체크를 하는 부분도 공부가 많이 됐습니다. - [서영주]
          * driver의 설정에서 new com.mysql.jdbc.Driver(); 대신 볼 수 있는 Class.forName("com.mysql.jdbc.Driver"); 이러한 코드는 컴파일 타임 종속성을 런타임 종속성으로 바꾼 것이다.
         Class<Driver> clazz = (Class<Driver>) Class.forName("com.mysql.jdbc.Driver");
          * http요청(http://hostname/contextPath/path?params) -> contextPath를 보고 해당하는 war를 찾음 -> war 내부의 web.xml을 보고 <servlet-mapping>의 정보를 보고 해당 주소에 매핑된 servlet을 찾는다. -> 해당하는 servlet이 없을 경우 defalut servlet이 처리
  • 잔디밭/권순의 . . . . 1 match
         using namespace std;
  • 정규표현식/스터디/문자하나찾기/예제 . . . . 1 match
         hello my name is helloguy
  • 정규표현식/스터디/반복찾기/예제 . . . . 1 match
         NetworkManager checkbox.d environment hostname localtime openoffice rc6.d sysctl.d
  • 정렬/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;
  • 정모/2013.5.6/CodeRace . . . . 1 match
         namespace CodeRace
  • 제곱연산자 전달인자로 (Setting) . . . . 1 match
         using namespace std;
  • 조영준/CodeRace/130506 . . . . 1 match
         namespace CodeRace
  • 중위수구하기/조현태 . . . . 1 match
         using namespace std;
  • 진법바꾸기/문보창 . . . . 1 match
         using namespace std;
  • 최소정수의합/임인택 . . . . 1 match
         if __name__=='__main__':
  • 최소정수의합/조현태 . . . . 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/0728 . . . . 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;
  • 파스칼삼각형/임상현 . . . . 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;
  • 포인터 swap . . . . 1 match
         using namespace std;
  • 프로그래밍언어와학습 . . . . 1 match
         DeleteMe) 제목짓는 센스가 없는 관계로;; 원글의 뜻에 맞게 제목을 고쳐주시기를; Rename & Refactor This Page; --석천
  • 프로그래밍잔치/첫째날 . . . . 1 match
          I. '''ZeroWiki Name Space 설명, 토론 앞으로의 발전 방향 토론 (["페이지이름"]) '''
          * namespace 의 첫번째 규칙 5
  • 피보나치/Leonardong . . . . 1 match
         using namespace std;
  • 피보나치/S.S.S . . . . 1 match
         if __name__=='__main__':
  • 피보나치/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
         if __name__ == '__main__':
  • 피보나치/방선희 . . . . 1 match
         using namespace std;
  • 피보나치/손동일 . . . . 1 match
         using namespace std;
  • 피보나치/아영,규완,보창 . . . . 1 match
         if __name__== '__main__':
  • 피보나치/이동현,오승혁 . . . . 1 match
         using namespace std;
  • 피보나치/이승한 . . . . 1 match
         if __name__ == '__main__':
  • 피보나치/조재화 . . . . 1 match
         using namespace std;
  • 피보나치/태훈 . . . . 1 match
         if __name__ == '__main__':
  • 하노이탑/윤성복 . . . . 1 match
         using namespace std;
  • 하노이탑/이재혁김상섭 . . . . 1 match
         using namespace std;
  • 하노이탑/조현태 . . . . 1 match
         using namespace std;
  • 하욱주/Crap . . . . 1 match
         using namespace std;
  • 현재 위키에 어떤 습관이 생기고 있는걸까? . . . . 1 match
          * 외국에서 개발되어서 어쩔수 없다기 보다, 현재 Web 인코딩을 그대로 filename에 가져다 쓰기 때문입니다. python 스크립트 만들어저 지워요. --NeoCoin
  • 호너의법칙/조현태 . . . . 1 match
         using namespace std;
  • 후각발달특별세미나 . . . . 1 match
         using namespace std;
Found 1194 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.2033 sec