E D R , A S I H C RSS

Full text search for "cho"

cho


Search BackLinks only
Display context of search results
Case-sensitive searching
  • VendingMachine/세연/1002 . . . . 54 matches
         bool isEndMenu (int choice) {
          return choice != 0;
          while(isEndMenu (choice))
          cin >> choice;
         === choice != 0 : 2번 ===
         bool isEndMenu (int choice) {
          return choice != MENU_END;
          switch(choice)
         === MENU 선택 부분과 관련(choice >= 0 && choice <= 4), 잘못된 메뉴 선택 골라주기 : 1, 2번 ===
         bool isValidMenu (int choice) {
          return choice >= 0 && choice <= 4;
         bool isValidMenu (int choice) {
          return choice >= MENU_END && choice <= MENU_INSERT_DRINK;
         bool isEndMenu (int choice) {
          return choice != MENU_ENDCODE;
         bool isValidMenu (int choice) {
          return choice >= MENU_START && choice <= MENU_END;
         bool isEndMenu (int choice) {
          return choice != MENU_ENDCODE;
         bool isValidMenu (int choice) {
  • .bashrc . . . . 23 matches
         echo -e "${CYAN}This is BASH ${RED}${BASH_VERSION%.*}${CYAN} - DISPLAY on ${RED}$DISPLAY${NC}\n"
          echo -e "${RED}나중에 또 봐요${NC}"
         alias path='echo -e ${PATH//:/\n}'
          echo -n -e "\033]0;$*\007" ;;
          echo "Usage: fstr "pattern" [files] "
          nf=$(echo $filename | tr A-Z a-z)
          echo "lowercase: $file --> $newname"
          echo "lowercase: $file not changed."
          echo "Usage: killps [-SIGNAL] pattern"
          echo -e "\nYou are logged on ${RED}$HOST"
          echo -e "\nAdditionnal information:$NC " ; uname -a
          echo -e "\n${RED}Users logged on:$NC " ; w -h
          echo -e "\n${RED}Current date :$NC " ; date
          echo -e "\n${RED}Machine stats :$NC " ; uptime
          echo -e "\n${RED}Memory stats :$NC " ; free
          echo -e "\n${RED}Local IP Address :$NC" ; echo ${MY_IP:-"Not connected"}
          echo -e "\n${RED}ISP Address :$NC" ; echo ${MY_ISP:-"Not connected"}
          echo
          echo -n "$@" '[y/n] ' ; read ans
          echo "programmable completion 을 쓰려면 bash 2.05 이상으로 업그레이드가 필요합니다."
  • 손동일 . . . . 23 matches
         int choose(int between[Max],int n,int check[Max]);
          j = choose(between,n,check);
         int choose(int between[Max],int n,int check[Max])
          sVertice * choice;
          choice = &vertices[i];
          while ( choice != goal )
          else if (&vertices[i] == choice)
          else if (vertices[i].neighbor[j][0] == choice->name)
          + choice->len_from_start;
          - choice->len_from_start > 0)
          + choice->len_from_start;
          choice->except = true;
          choice = goal;
          && (choice->len_from_start == 0
          || vertices[i].len_from_start < choice->len_from_start))
          choice = &vertices[i];
          while (choice->len_from_start != 0)
          if (vertices[i].name == choice->neighbor[j][0]
          == choice->len_from_start - choice->neighbor[j][1])
          path[z++] = char(choice->name);
  • CppStudy_2002_2/객체와클래스 . . . . 19 matches
          int choice;
          cin >> choice;
          if(choice >0 && choice <4 && m_quantity[choice-1]>0 && ((m_money-m_price[choice-1])>0))
          cout << m_beverage[choice-1] << "을 사셨습니다\n";
          switch(choice)
          int choice;
          cin >> choice;
          if(choice >0 && choice <4)
          cout << m_beverage[choice-1] << "을 고르셨습니다\n";
          switch(choice)
          int choice;
          cin >> choice;
          while(choice != 4)
          switch(choice)
          cin >> choice;
  • SuperMarket/세연/재동 . . . . 19 matches
          int choice;
          cin >> choice;
          if(choice>0 && choice<4) {
          if((_money - (_product[choice-1].cost * quanty)) >= 0) {
          _product[choice-1].quanty += quanty;
          _money = _money - (_product[choice-1].cost * quanty);
          int choice;
          cin >> choice;
          if(choice>0 && choice<4) {
          if((_product[choice-1].quanty - quanty) >= 0 ) {
          _product[choice-1].quanty -= quanty;
          _money += _product[choice-1].cost * quanty;
          int choice;
          cin >> choice;
          while(choice != 5) {
          switch(choice) {
          cin >> choice;
  • DevCppInstallationGuide . . . . 18 matches
         http://user.chol.com/~dbtrc/1.jpg
         http://user.chol.com/~dbtrc/2.jpg
         http://user.chol.com/~dbtrc/3.jpg
         http://user.chol.com/~dbtrc/4.jpg
         http://user.chol.com/~dbtrc/5.jpg
         http://user.chol.com/~dbtrc/6.jpg
         http://user.chol.com/~dbtrc/7.jpg
         http://user.chol.com/~dbtrc/8.jpg
         http://user.chol.com/~dbtrc/9.jpg
         http://user.chol.com/~dbtrc/10.jpg
         http://user.chol.com/~dbtrc/11.jpg
         http://user.chol.com/~dbtrc/12.jpg
         http://user.chol.com/~dbtrc/13.jpg
         http://user.chol.com/~dbtrc/132.jpg
         http://user.chol.com/~dbtrc/14.jpg
         http://user.chol.com/~dbtrc/15.jpg
         http://user.chol.com/~dbtrc/16.jpg
         http://user.chol.com/~dbtrc/17.jpg
  • WinampPluginProgramming/DSP . . . . 17 matches
         winamp SDK 를 받으면 sample 로 있는 dspecho 에 대한 분석.
          "Nullsoft Echo v0.2",
          " * Echo isn't very good!\n"
         short echo_buf[65536], echo_buf2[65536];
         // echo plugin.
          // echo doesn't support 8 bit right now cause I'm lazy.
          memcpy(echo_buf2, echo_buf, s*2);
          memcpy(echo_buf, echo_buf+s, s*2);
          memcpy(echo_buf+s, echo_buf+s*2, s*2);
          memcpy(echo_buf+s*2,echo_buf+s*3, s*2);
          memcpy(echo_buf+s*3,samples, s*2);
          int s = samples[x]/2+echo_buf2[x]/2;
  • SuperMarket/세연 . . . . 15 matches
          int choice;
          cin >> choice;
          if(choice == 1 && (money - (s_product[0].cost * quanty)) >= 0 )
          else if(choice == 2 && (money - (s_product[1].cost * quanty)) >= 0)
          else if(choice == 3 && (money - (s_product[2].cost * quanty)) >= 0)
          int choice;
          cin >> choice;
          if(choice == 1 && (s_product[0].quanty - quanty) >= 0 )
          else if(choice == 2 && (s_product[1].quanty - quanty) >= 0 )
          else if(choice == 3 && (s_product[2].quanty - quanty) >= 0 )
          int choice = 0;
          cin >> choice;
          while(choice != 5)
          switch(choice)
          cin >> choice;
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 14 matches
          int cho = a/21/28;
          System.out.println(""+ (char)first[cho] + (char)middle[joong] + (char)last[jong]);
         Chosung = {"ㄱ","ㄲ","ㄴ","ㄷ","ㄸ","ㄹ","ㅁ","ㅂ","ㅃ","ㅅ","ㅆ","o","ㅈ","ㅉ","ㅊ","ㅋ","ㅌ","ㅍ","ㅎ"};
          local cho = math.floor(unicode / 21/ 28)
          return Chosung[cho+1];
          chosungtable = {}
          chosungtable[#chosungtable+1] = cstc(v.type, samplingFirst(v.body))
          chosungtable[#chosungtable+1] = cstc(v.type, v.body)
          return stringtable, chosungtable
          <Anchors>
          <Anchor point="TOPLEFT">
          </Anchor>
          </Anchors>
  • 10학번 c++ 프로젝트/소스 . . . . 13 matches
         #include "cho.h"
          cho b;
         == cho.cpp ==
         #include "cho.h"
         cho::cho()
         cho::~cho()
         void cho::setwatch()
         == cho.h ==
         class cho {
          cho();
          ~cho();
  • Linux/필수명령어/용법 . . . . 13 matches
         chown
         - chown [ -cfvR ] 사용자 파일명(들)
         - $ chown blade /user/sisap/*
         echo
         : echo는 인수로 지정된 문자열을 그대로 화면에 출력한다. 이것은 인수로 주어진 문자열이 오퍼레이팅 시스템으로 읽혀진 후에 다시 그대로 화면에 ‘메아리’치는 것으로 생각할 수 있다.
         - echo [ -ne ] 문자열
         일반적으로 echo 명령은 프롬프트 상에서 사용되는 일은 없다. 하지만 스크립트 작성시 번번히 사용된다. 셸 스크립트 상에서 echo 명령은 BASIC의 PRINT 명령이나 C 언어의 printf() 함수와 같이 메시지를 출력하는 데에 자주 사용된다. 또한 전혀 필요없을 것 같은 echo의 -n 옵션도 스크립트 상에서는 유용하게 사용될 수 있다.
         - $ echo "The RedHat !"
         - $ echo -e 'Linux\RedHat !'
         - echo "It's changed to the blade.room"
         - echo -e "over and over..."
  • 창섭/배치파일 . . . . 13 matches
         2. CHOICE
         ◇ 사용법 :choice [/C[:]문자열][/N][/S][/T[:]기본키,대기시간][메세지]
         ◇ 예 : choice /c:abCD /s /t : C, 5 다음중에서 하나를 선택하십시오 a, b, C, D
         3. ECHO
         배치파일 실행중에 명령어를 화면에 표시할 것인지의 여부를 설정하며, 그 상태를 표시합니다. 한편 ECHO 명령 뒤에 오는 메세지는 화면에 나타납니다.
         ◇ 사용법 : echo [on/off] [문자열]
         - 없음 : 현재 ECHO 설정 상태를 표시합니다.
         echo off
         echo
         echo 안녕하세요?~
         ☞ 현재 echo 설정상태를 표시하며 안녕하세요?~ 라는 문구를 화면에 출력합니다.
         - 문자열 : 문자열을 생략하면 'press any key to continue...'라는 메세지가 화면에 출력됩니다. 만약 PAUSE 명령 뒤에 어떤 메세지를 지정하여 그 메시지를 출력하고 싶다면 'Echo On' 명령을 우선 내려야 합니다.
          echo on
         ◇ 설명 : 배치 처리 중 pause명령을 만났을때 임의의 다른 메시지를 화면에 출력하고 싶다면 예 에서와 같이 반드시 echo on 명령이 선행되어야 하며 예의 경우에는 ' 준비가 되었으면 아무키나 누르세요...' 라는 메세지가 출력됩니다.
         echo on
         echo 준비가 되었으면 아무키나 누르세요...
         echo %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
  • 2010php/방명록만들기 . . . . 12 matches
          echo("Connect Succesful.<br/>");
          echo($result);
         echo($obj->name);
          echo("<br>기본정보 : $name $no $pw $status $date <br>");
          echo("내 용 : $contents <br>");
          echo" <b>[$i]</b>";
          echo"<a href='index.php?page=$i'>[$i]</a>";
          echo("<img src = 'http://cfile234.uf.daum.net/image/152622034C88B1DC682870'><br>");
          echo("<img src = 'http://cfile223.uf.daum.net/image/162622034C88B1DC696BEC'><br>");
          echo("<img src = 'http://cfile206.uf.daum.net/image/142622034C88B1DC6AA52F'><br>");
          echo("<img src = 'http://cfile232.uf.daum.net/image/152622034C88B1DC6BFF47'><br>");
          echo("<img src = 'http://cfile234.uf.daum.net/image/162622034C88B1DC6C0395'><br>");
  • whiteblue/MyTermProject . . . . 12 matches
         void choose_1();
         void choose_2();
         void choose_3();
         void choose_4();
          choose_1();
          choose_2();
          choose_3();
          choose_4();
         void choose_1() // 1번 선택
         void choose_2() // 2번 선택
         void choose_3() // 3번 선택
         void choose_4() // 4번 선택
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 10 matches
         //echo str_repeat(" ",300);
          echo "> ".$read;
          echo $result;
          echo $buf[0]."\r\n\r\nPHP Parse: ";
          echo $result;
          echo "ASCII Read: ";
          echo "Binary-safe Read: ";
          echo $to_read;
          echo $result;
          echo "\r\n__EOF__\r\n\r\n";
  • 이승한/PHP . . . . 10 matches
          echo("MySql 서버 연결에 실패하였습니다.");
          echo("connected<br>");
          echo( "저장된 레코드가 없습니다.");
          echo("<tr><td>번호</td><td>이름</td><td>영어</td><td>수학</td>");
          echo("<tr><td>$no</td>");
          echo("<td>$name</td>");
          echo("<td>$eng</td>");
          echo("<td>$math</td></tr>");
          * 화면에 문자 뿌리기 : echo(" 내용<br>");
          echo("$good");
  • VendingMachine/세연 . . . . 9 matches
          int choice;
          cin >> choice;
          return choice;
          int choice = VendingMachine.showMenu();
          while(choice != 0)
          if( choice >= 0 || choice <= 4)
          switch(choice)
          choice = VendingMachine.showMenu();
  • 가위바위보/재니 . . . . 9 matches
          int choose[2], result[3] = {0,};
          choose[0] = (int)fin.get();
          choose[1] = (int)fin.get();
          if (choose[0] == choose[1])
          else if(choose[0] == choose[1] + 1 || choose[0] == choose[1] - 2)
  • MedusaCppStudy . . . . 8 matches
         - choose {sprite, tea, tejava} - 음료수 선택하다.
         >> choose sprite
         >> choose sprite
         >> choose sprite
         >> choose sprite
         >> choose sprite
         >> choose hot milk
         총 159라인이고 choose함수가 30라인이 넘어서 어거지로 vend함수를 만들었구여..-_-;;
  • PrettyPrintXslt . . . . 8 matches
          <xsl:choose>
          </xsl:choose>
          <xsl:choose>
          </xsl:choose>
          <xsl:choose>
          </xsl:choose>
          <xsl:choose>
          </xsl:choose>
  • 문자반대출력/허아영 . . . . 8 matches
          choiceNum을 영어, 한글, 문자로 세분화 하려고 했으니 일단은 저렇게 코딩.
         char strchange(char ch[50], int lenstr, int choiceNum);
          int lenstr, choiceNum, i = 0;
          choiceNum = 0; // 영어
          choiceNum = 1; // 한글??
          *pCh = strchange(pCh, lenstr, choiceNum);
         char strchange(char *pCh, int lenstr, int choiceNum)
          switch(choiceNum)
  • LinkedList/세연 . . . . 7 matches
          int num, choice;
          cout << "1.push 2.pop 3.exit\nchoice : ";
          cin >> choice;
          while(choice != 3)
          switch(choice)
          cout << "1.push 2.pop 3.exit\nchoice : ";
          cin >> choice;
  • StackAndQueue/손동일 . . . . 6 matches
          int choice;
          cin >> choice;
          while(cin>>choice)
          if (choice==1)
          else if (choice==2)
          else if (choice==3)
  • VendingMachine/세연/재동 . . . . 6 matches
          int choice = -1;
          while(choice != 0)
          cin >> choice;
          if(choice >= 0 && choice <= 4)
          switch(choice)
  • whiteblue/파일읽어오기 . . . . 6 matches
          unsigned int nSchoolNumber; // User's school number
          nSchoolNumber = nSN;
          unsigned int getSchoolNumber() { return nSchoolNumber; }
          if ( userinfo[i]->getSchoolNumber() == nUserNum )
  • 데블스캠프2005/금요일/OneCard/이동현 . . . . 6 matches
          int choice = comCards.search(discard.retTop().num,discard.retTop().face);
          if(choice == -1){
          discard.add(comCards.delete(choice));
          choice = playerCards.search(discard.retTop().num,discard.retTop().face);
          if(choice == -1){
          discard.add(playerCards.delete(choice));
  • 새싹교실/2011/데미안반 . . . . 6 matches
          int choice=0;//int형 변수 선언 및 초기화
          scanf("%d",&choice);//정수형 숫자 입력 받음
          switch(choice)
          }while(choice != 0);
          scanf("%d",&choice);//정수형 숫자를 입력받음
          switch(choice)
  • 스택/조재화 . . . . 6 matches
         int cho[10];
          int choice;
          cin>>choice;
          switch(choice)
          cin >> cho[i];
          cout<<cho[j]<<"\t";
  • 큐/조재화 . . . . 6 matches
         int cho[10];
          int choice;
          cin>>choice;
          switch(choice)
          cin >> cho[i];
          cout<<cho[j]<<"\t";
  • 5인용C++스터디/클래스상속 . . . . 5 matches
          person cho("Cho", "JaeHwa");
          cho.set_age(19);
          cout<<"\nperson cho : "<<cho.get_name(full);
          cout<<endl<<"age : "<<cho.get_age();
  • Hessian . . . . 5 matches
         http://caucho.com/hessian/
         이를 컴파일 하기 위해서는 hessian-2.1.3.jar 화일과 jsdk23.jar, resin.jar 화일이 classpath 에 맞춰줘야 한다. (이는 resin 의 lib 폴더에 있다. hessian jar 화일은 [http://caucho.com/hessian/download/hessian-2.1.3.jar hessian] 를 다운받는다)
         import com.caucho.hessian.server.HessianServlet;
         Python 모듈은 http://caucho.com/hessian/download/hessianlib.py 를 다운받는다.
         import com.caucho.hessian.client.HessianProxyFactory;
  • 방울뱀스터디/만두4개 . . . . 5 matches
          #canvas.create_image(x, y, anchor=NW, image=playerImg)
          #canvas.create_image(x, y, anchor=NW, image=playerImg)
          #canvas.create_image(x, y, anchor=NW, image=oval)
         canvas.create_image(0, 0 , anchor=Tkinter.NW, image = frontImg)
          canvas.create_image(col * CELL, row * CELL , anchor=Tkinter.NW, image = imgList[row][col])
  • 빵페이지/도형그리기 . . . . 5 matches
          int choice;
          cin >> choice;
          while(choice != 6)
          switch(choice)
          cin >> choice;
  • C++스터디_2005여름/학점계산프로그램/정수민 . . . . 4 matches
          int school_number;
          school_number = 0;
          fin >> school_number;
          cout << "학번 : " << school_number << " 평점 : " << average << endl;
  • CppStudy_2002_1/과제1/CherryBoy . . . . 4 matches
          int choice;
          cin >> choice;
          print(exam,choice);
          }while(choice==0);
  • MedusaCppStudy/석우 . . . . 4 matches
         void choose(int& won, vector<Drinks>& vec);
          else if (command == "choose")
          choose(won, vec);
         void choose(int& won, vector<Drinks>& vec)
  • R'sSource . . . . 4 matches
         tmp = commands.getoutput('echo "%s" | smbclient -M 박준우 -' % string.join(string.split(urldump)))
          choicedRepUrl = 'http://www.replays.co.kr/technote' + matching.group(1)
          #print choicedRepUrl
          saveRep(choicedRepUrl)
  • SubVersion/BerkeleyDBToFSFS . . . . 4 matches
          echo "usage : $0 current_repos "
         echo $cRepos;
         echo $nRepos;
         chown www-data.svnadmin $cRepos -R
  • ZPBoard/PHPStudy/기본문법 . . . . 4 matches
          * echo 문으로 출력하는 것은 그대로 html 소스가 됨 (이걸 모르면 php를 제대로 써먹을 수가 없음)
          * echo 문으로 출력시에 echo "text" 보다 echo 'text'가 더 빠르다고 함. " " 와 ' ' 의 차이점은 " " 안에는 $변수 가 인식이 되고 ' ' 안에서는 $변수 하면 변수가 인식이 안되고 그대로 출력됨
  • 데블스캠프2011/셋째날/String만들기/김준석 . . . . 4 matches
          int choice = -1;
          if(select != -1) choice = select;
          if(choice != -1) return choice;
  • 몸짱프로젝트/BinarySearchTree . . . . 4 matches
          int choice;
          cin >> choice;
          if (choice == 4)
          switch(choice)
  • 블로그2007/송지훈 . . . . 4 matches
         echo "$j x $i = ";
         echo $j * $i ;
         echo " ";
         {echo "<br>";
  • 새싹교실/2012/세싹 . . . . 4 matches
          * w3schools를 소개했습니다. (www.w3schools.com)
          1) w3schools에서 html파트 읽고 실습해보기
          1) w3schools는 계속 조금씩 해보길 바랍니다.
  • 영호의해킹공부페이지 . . . . 4 matches
         hopefully by executing code of our choice, normally just to spawn a shell.
         else's. And so, my choice in shellcode - int 20h - program termination. :)
         echo shj3esh j0or a fuqn tw1t
         when i was at boarding school, and lets you use telkom coin phone to phone for
         Choose menu 3 (ME Memory Functions).
         Choose menu 6 (Field Test Display Settings).
  • 이승한/mysql . . . . 4 matches
          echo("MySql 서버 연결에 실패하였습니다.");
          echo("Hello Mysql");
          echo("$name");
          echo( "저장된 레코드가 없습니다.");
  • C++스터디_2005여름/학점계산프로그램/허아영 . . . . 3 matches
          void scholarship();//장학금, 학고 학생 출력,
         #define SCHOLARSHIP_NUM 12
          a.scholarship();
         void Student::scholarship()
          for(i = 0; i < SCHOLARSHIP_NUM; i++)
  • EffectiveC++ . . . . 3 matches
          * ''생성자 및 소멸자와 적절히 상호동작하기 때문에. they are clearly the superior choice.''
          string schoolName, schoolAddress;
  • FromDuskTillDawn/변형진 . . . . 3 matches
          echo "Test Case ".($n+1).".<br>";
          if($this->days) echo "Vladimir needs $this->days litre(s) of blood.<br>";
          else echo "There is no route Vladimir can take.<br>";
  • Linux/필수명령어 . . . . 3 matches
         || chown <id> <파일> || 파일 소유주(owner) 변경||
         || echo|| 어떤 것을 echo 화면에 인쇄한다.||
  • TicTacToe/임인택 . . . . 3 matches
          drawChoices(g);
          private void drawChoices(Graphics g) {
          private void drawCell(Graphics g, int i, int j, int choice) {
          if( choice == __O ) {
          else if( choice == __X ) {
  • html5/richtext-edit . . . . 3 matches
          * anchorNode : 선택을 시작한 위치에 있는 요소의 DOM노드 가져옴
          * anchorOffset : anchorNode 안에서 선택을 시작한 위치의 오프셋 반환
  • zennith/w2kDefaultProcess . . . . 3 matches
         Svchost.exe - 작업관리자에서 종료 불가
         기 때문에 2개 이상이 생길 수도 있다. Svchost.exe를 이용하는 프로세스들의 명세를
         출처 www.s2school.com
  • 데블스캠프2006/월요일 . . . . 3 matches
         ||am 04:00~06:00 ||[데블스캠프2006/CPPFileInput] [http://zerowiki.dnip.net/~namsangboy/schoolScore.html 데블스캠프2006/성적관리프로그램] [http://zeropage.org/svn/namsangboy/SchoolScore/SchoolScore.cpp Source]|| 남상협 (01) ||
  • 데블스캠프2013/둘째날/API . . . . 3 matches
          echo "<tr><td>$id</td><td>$name</td><td>$text</td><td><a href='http://$ip'>$ip</a></td></tr>";
          echo '<script>alert("내용이 없습니다."); location.href="index.php";</script>';
          echo '<script>alert("등록되었습니다."); location.href="index.php";</script>';
  • 방울뱀스터디/GUI . . . . 3 matches
         anchor=NW # 객체위치를 북서쪽으로 설정. fill옵션을 사용하지않아야 제대로 보일꺼 같은...
         radio1.pack(anchor=w)
         radio2.pack(anchor=w)
  • 스택/Leonardong . . . . 3 matches
          int choice;
          cin >> choice;
          switch(choice)
  • 조동영 . . . . 3 matches
         이멜 : chonie 골뱅이 hanafos 닷 com
         MSN : chonie 골뱅이 hananet 닷 net
         싸이월드 : /chonie
  • 큐/Leonardong . . . . 3 matches
          int choice;
          cin >> choice;
          switch(choice)
  • 피보나치/고준영 . . . . 3 matches
          if ($n <= 0) echo "잘못된 값이 입력되었 습니다.";
          echo "1";
          echo $result;
  • HelpOnLinking . . . . 2 matches
          * [#20030702 Anchor Name]
          * [#20030702 Anchor Name]
  • JUnit . . . . 2 matches
         @echo off
         @echo off
  • MoniWikiPlugins . . . . 2 matches
          * Anchor
          * SmileyChooser
          * Echo
  • MySQL 설치메뉴얼 . . . . 2 matches
          shell> chown -R root .
          shell> chown -R mysql data
  • PHP . . . . 2 matches
          * [http://www.phpschool.com/v2/index.html PHP School]
  • ProgrammingPearls/Column3 . . . . 2 matches
         void menuitem_click(int choice) {
          menuitem[choice] = true;
  • ProjectSemiPhotoshop/계획서 . . . . 2 matches
          * Product Name : Magic School
          * 시스템 메타포 설정 - Magic School etc
  • ZeroPage_200_OK . . . . 2 matches
          * W3Schools - http://www.w3schools.com/
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 2 matches
          * It's 1st day of a winter school vacation. I must do a plan.
          * Today, I saw a psycho that is only heard. I felt grimness at her.
  • 구구단/조재화 . . . . 2 matches
          * cho 클래스
          category: 'cho'
  • 새싹교실/2012/주먹밥 . . . . 2 matches
          * Javascript 학습은 http://www.w3schools.com/js/default.asp 에서 해주세요.
          * APM_SETUP폴더에 htdocs폴더에 index.html을 하기. http://www.w3schools.com/js/default.asp 가서 javascript예제 index.html에 작성하고 돌아가는것 확인.
  • 식인종과선교사문제/변형진 . . . . 2 matches
          if($canni>=0&&$missi>=0) echo "우측 식인종 {$this->right[canni]}+$canni, 선교사 {$this->right[missi]}+$missi<br>";
          elseif($canni<=0&&$missi<=0) echo "좌측 식인종 {$this->left[canni]}+".(-$canni).", 선교사 {$this->left[missi]}+".(-$missi)."<br>";
  • 제로스 . . . . 2 matches
          * 현재 프로젝트의 방향은 정하지 않은 것으로 보이니까 공룡책으로 이론 공부를 하고 Nachos라는 교육용 OS 프로그램 분석을 병행하면서 여기서 얻은 지식으로 OS를 만드는 접근 방법을 사용하는 것이 어떨까 하는데 다들 의견이 어떠신지 궁금? -- 이론 : Operating System Concepts -- 실습 : Nachos - [진석]
  • 중위수구하기/김태훈zyint . . . . 2 matches
          echo "A = $value[0] B=$value[1] C=$value[2]<br>";
          echo "중위수 = $value[1]"; // 가운데값 출력 +ㅁ+
  • 코드레이스출동 . . . . 2 matches
          37 echo $JAVA_HOME
          42 echo $JAVA_HOME
  • 1002/Journal . . . . 1 match
         읽기 준비 전 Seminar:ThePsychologyOfComputerProgramming 이 어려울 것이라는 생각이 먼저 들어서, 일단 영어에 익숙해져야겠다는 생각이 들어서 Alice in wonderland 의 chapter 3,4 를 들었다. 단어들이 하나하나 들리는 정도. 아직 전체의 문장이 머릿속으로 만들어지진 않는 것 같다. 단어 단위 받아쓰기는 가능하지만, 문장단위 받아쓰기는 힘든중.
  • 1002/TPOCP . . . . 1 match
         Seminar:ThePsychologyOfComputerProgramming 맡은 챕터 정리궁리중.
  • 2010JavaScript . . . . 1 match
          * 블로그 사용 http://w3schools.com/js/default.asp
  • ASXMetafile . . . . 1 match
          * <Logo href = "path of the logo source" Style = "a style" / >: Adds custom graphics to the Windows Media player by choosing either a watermark or icon style. The image formats that Windows Media Player supports are GIF, BMP, and JPEG.
  • Android/WallpaperChanger . . . . 1 match
          startActivityForResult(Intent.createChooser(i, "Select Picture"), SELECT_PICTURE);
          || 4/19 ||{{{MywallpaperActivity에서 TimeCycleActivity로 현재 값과 함께 넘어가는 기능 구현. TimeCycleActivity에 enum리스트로 현재 setting된 값을 single_choice list로 선택되고 setting버튼 cancle버튼을 통해 다시 돌아오는것 구현. }}}||
  • Atom . . . . 1 match
         Atom is an XML-based document format and HTTP-based protocol designed for the syndication of Web content such as weblogs and news headlines to Web sites as well as directly to user agents. It is based on experience gained in using the various versions of RSS. Atom was briefly known as "Pie" and then "Echo".
  • BeeMaja/변형진 . . . . 1 match
         echo BeeMaja($n);
  • BigBang . . . . 1 match
          * 참고 : http://www.hackerschool.org/HS_Boards/data/Lib_system/The_Mystery_of_Format_String_Exploitation.pdf
  • BuildingWikiParserUsingPlex . . . . 1 match
         처음에는 Wiki 에서 Tag 에 대해 Tagger 클래스를 만들고, link 를 걸어주는 부분에 대해 AutoLinker 를, Macro 에는 MacroApplyer 를 각각 만들어주었다. 그러다가 문제가 생겼는데, 태그중에 그 영향력이 겹치는 부분이 생겨나게 된 것이다. 즉, 예를 든다면 Macro 의 경우 CamelWord 로 이름지어지기도 하는데, 이는 AutoLinker 의 apply 를 거치면서 archor 태그가 붙어버리는 것이다.
  • CSS . . . . 1 match
         [http://user.chollian.net/~spacekan/] - CSS 2.0 첫 배우기 [Tutorial]
  • CVS . . . . 1 match
          * http://www.chonga.pe.kr/document/programming/cvs/index.php 해당 사이트에서 제작한 한글 Reference
  • ComponentBasedDevelopment . . . . 1 match
         http://ww5.introcom.net/~nkcho/ 관련 내용 자료를 많이 링크해 두셨다.
  • ComputerNetworkClass/Report2006/BuildingWebServer . . . . 1 match
          * [http://users.actcom.co.il/~choo/lupg/tutorials/multi-thread/multi-thread.html pthread]
  • D3D . . . . 1 match
         - http://www.gameschool.co.kr/cyberhtm/3dPolygon.htm - 폴리곤에 관한 page
  • DPSCChapter1 . . . . 1 match
         In general, designers -- in numerous domains, not just software -- apply their experience with past problems and solution to new, similar problems. As Duego and Benson(1996) point out, expert designers apply what is known in cognitive psychology and artificial intelligence as '''case-based reasoning''', remembering past cases and applying what they learned there. This is the sort of reasoning that chess masters, doctors, lawyers, and architects empoly to solve new problems. Now, design patterns allow software designers to learn from and apply the experiences of other designers as well. As in other domains, a literature of proven patterns has emerged. As a result, we can "stand on the shoulders of giants" to get us closer to the expert peak. As John Vlissies (1997) asserts, design patterns "capture expertise and make it accessible to non-experts" (p. 32).
  • DocumentObjectModel . . . . 1 match
         [http://www.w3schools.com/dom/default.asp XML_DOM 첫배우기.](tutorial)
  • EnglishSpeaking/2012년스터디 . . . . 1 match
          * [http://www.youtube.com/watch?v=C3p_N9FPdy4 English Speaking Schools Are Evil]
  • ExploringWorld/참고링크 . . . . 1 match
          http://caucho.com
  • Favorite . . . . 1 match
         [http://www.tgedu.net/student/cho_math/ 초등학교 수학]
  • FocusOnFundamentals . . . . 1 match
         A: Most students who are studying computer science really want to study software engineering but they don't have that choice. There are very few programs that are designed as engineering programs but specialize in software.
  • FortuneCookies . . . . 1 match
          * Among the lucky, you are the chosen one.
  • GDBUsage . . . . 1 match
         [http://users.actcom.co.il/~choo/lupg/tutorials/debugging/debugging-with-gdb.html gdb tutorial]
  • Garbage collector for C and C++ . . . . 1 match
         # to determine how particular or randomly chosen objects are reachable
  • Gof/FactoryMethod . . . . 1 match
         The function CreateMaze (page 84) builds and returns a maze. One problem with this function is that it hard-codes the classes of maze, rooms, doors, and walls. We'll introduce factory methods to let subclasses choose these components.
  • Googling . . . . 1 match
         || allinanchor || 링크된 글안에서 검색을 한다. ||
  • Hacking . . . . 1 match
          * ICMP echo attack
  • 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
  • HardcoreCppStudy/첫숙제/Overloading/변준원 . . . . 1 match
         int groucho(int k = 1, int m = 2, int n = 3); //맞음
  • HelloWorld . . . . 1 match
          echo "<H1>Hello, World!</H1><BR>n"
  • HelpOnPageCreation . . . . 1 match
         [[Anchor(variablesubstitution)]]
  • Hessian/Counter . . . . 1 match
         import com.caucho.hessian.server.HessianServlet;
  • HowToStudyXp . . . . 1 match
          * The Psychology of Computer Programming (Gerald M. Weinberg) : 프로그래밍에 심리학을 적용한 고전. Egoless Programming이 여기서 나왔다.
  • JavaScript/2011년스터디 . . . . 1 match
          * echo <<< 문을 쓸때 닫는 단어는 한 줄의 제일 처음에 써야합니다.(띄어쓰기 없어야함)
  • JavaScript/2011년스터디/7월이전 . . . . 1 match
          * 오늘은 저번시간에 궁금했던 사항들을 수경누나한테 설명받고, 객체와 구조체에 대해 설명을 들은다음 w3schools에서 몇몇가지 예제들을 실습해보았어요. ..이제 시험기간이고해서 방학때 스터디를 계속하게 될텐데, 방학들어가면 더 열심히해서 새싹이라는 느낌보다 스터디라는 느낌이 들 수 있도록 만들어야겠어요. -[김태진]
  • Kongulo . . . . 1 match
         # Matches URLs in <a href=...> tags. Chosen above htmllib.HTMLParser because
          """Returns all anchors from the document with contents 'htmldoc' at
  • LightMoreLight/허아영 . . . . 1 match
         I learned how to solve the Number of n's measure.. at a middle school.
  • Linux . . . . 1 match
         [http://phpschool.com/bbs2/inc_print.html?id=11194&code=tnt2] linux에서 NTFS 마운트 하기
  • Metaphor . . . . 1 match
         Choose a System Metaphor
         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.
  • MindMapConceptMap . . . . 1 match
         관련 자료 : 'Learning How To Learn', 'Learning, Creating and Using Knowledge - Concept Maps as Facilitative Tools in Schools and Corporations' (Joseph D. Novak)
  • 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.
  • MoinMoinBugs . . . . 1 match
         ''Differently broken. :) I think we can live with the current situation, the worst edges are removed (before, chopping the first byte out of an unicode string lead to broken HTML markup!). It will stay that way until I buy the [wiki:ISBN:0201616335 Unicode 3.0] book.''
  • MoreEffectiveC++/Appendix . . . . 1 match
         Each chapter in this book starts with some C++ software that has been published as an example of how to do something correctly. Cargill then proceeds to dissect — nay, vivisect — each program, identifying likely trouble spots, poor design choices, brittle implementation decisions, and things that are just plain wrong. He then iteratively rewrites each example to eliminate the weaknesses, and by the time he's done, he's produced code that is more robust, more maintainable, more efficient, and more portable, and it still fulfills the original problem specification. Anybody programming in C++ would do well to heed the lessons of this book, but it is especially important for those involved in code inspections. ¤ MEC++ Rec Reading, P21
  • NetworkDatabaseManagementSystem . . . . 1 match
         The chief argument in favour of the network model, in comparison to the hierarchic model, was that it allowed a more natural modeling of relationships between entities. Although the model was widely implemented and used, it failed to become dominant for two main reasons. Firstly, IBM chose to stick to the hierarchical model in their established products such as IMS and DL/I. Secondly, it was eventually displaced by the relational model, which offered a higher-level, more declarative interface. Until the early 1980s the performance benefits of the low-level navigational interfaces offered by hierarchical and network databases were persuasive for many large-scale applications, but as hardware became faster, the extra productivity and flexibility of relational systems won the day.
  • OOP . . . . 1 match
         Program consists of objects interacting with eachother Objects provide services.
  • PairProgramming . . . . 1 match
          * Protocol Analysis, 지식의 전달 - Seminar:CognitivePsychology 참조. 다른 사람의 사고과정을 관찰하고, 또한 자신의 사고과정을 다른 사람으로 하여금 관찰할 수 있게 해준다. 이는 자신의 프로그래밍 과정중 잘못된 부분을 고치는데 도움을 준다.
  • ProgrammingLanguageClass/2006/EndTermExamination . . . . 1 match
         up to ... (1) <어느 위치·정도·시점이> …까지(에), …에 이르기까지;<지위 등이> …에 이르러:up to this time[now] 지금껏, 지금[이 시간]까지는/I am up to the ninth lesson. 나는 제 9과까지 나가고 있다./He counted from one up to thirty. 그는 1에서 30까지 세었다./He worked his way up to company president. 그는 그 회사의 사장으로까지 출세했다. (2) [대개 부정문·의문문에서] 《구어》 <일 등>을 감당하여, …을 할 수 있고[할 수 있을 정도로 뛰어나]:You’re not up to the job. 너는 그 일을 감당하지 못한다./This novel isn’t up to his best. 이 소설은 그의 최고작에는 미치지 못한다./This camera is not up to much. 《구어》 이 카메라는 별로 대단한 것은 아니다./Do you feel up to going out today? 오늘은 외출할 수 있을 것 같습니까? 《병자에게 묻는 말》 (3) 《구어》 <나쁜 짓>에 손을 대고;…을 꾀하고:He is up to something[no good]. 그는 어떤[좋지 않은] 일을 꾀하고 있다./What are they up to? 그들은 무슨 짓을 하려는 것인가? (4) 《구어》 <사람이> 해야 할, …나름인, …의 의무인:It’s up to him to support his mother. 그야말로 어머니를 부양해야 한다./I’ll leave it up to you. 그것을 네게 맡기마./It’s up to you whether to go or not. 가고 안가고는 네 맘에 달려 있다./The final choice is up to you. 마지막 선택은 네 손에 달려 있다.
  • ProgrammingLanguageClass/2006/Report3 . . . . 1 match
         required to submit a listing of your program and a set of test data of your own choice,
  • ProgrammingLanguageClass/Report2002_2 . . . . 1 match
         As usual, you shall submit a floppy diskette with a listing of your program and a set of test data of your own choice, and the output from running your program on your test data set.
  • ProjectEazy . . . . 1 match
         [http://infocom.chonan.ac.kr/~limhs/ 천안대학교 임희석?교수]
  • ProjectPrometheus/CookBook . . . . 1 match
         resin.conf 에 다음을 셋팅해준다. (<caucho.com> 태그 안쪽에 삽입)
  • ProjectSemiPhotoshop/기록 . . . . 1 match
          * 시스템 메타포 설정 : ["ProjectSemiPhotoshop/Metaphore"] - MagicSchool etc
  • ProjectVirush/ZoneData . . . . 1 match
         0 인천 Inchon 2475139 2475139 0
  • ProjectZephyrus/Server . . . . 1 match
         ||클라이언트에서 온 메세지를 echo시키는 작업||{{{~cpp MessageCmd}}}||류상민||90%||
  • PyIde/Scintilla . . . . 1 match
         SetAnchor(GetLineEndPosition(end))
  • Python/DataBase . . . . 1 match
         res = cur.fetchone()
  • RSSAndAtomCompared . . . . 1 match
         People who generate syndication feeds have a choice of
  • RandomWalk/임인택 . . . . 1 match
          if( numOfUnVstdPlces != 0) // choose next direction
          public void putRoachOn(Roach roach) {
          myBoard.putRoachOn(myRoach);
  • Refactoring/SimplifyingConditionalExpressions . . . . 1 match
          * You have a conditional that chooses different behavior depending on the type of and object [[BR]] ''Move each leg of the conditional to an overriding method in a subclass. Make the orginal method abstract.''
  • ReleasePlanning . . . . 1 match
         Management can only choose 3 of the 4 project variables to dictate, development always gets the remaining variable. Note that lowering quality less than excellent has unforeseen impact on the other 3. In essence there are only 3 variables that you actually want to change. Also let the developers moderate the customers desire to have the project done immediately by hiring too many people at one time.
  • SmalltalkBestPracticePatterns/DispatchedInterpretation . . . . 1 match
         Sometimes, however, information in one object must influence the behavior of another. When the uses of the information are simple, or the possible choices based on the information limited, it is sufficient to send a message to the encoded object. Thus, the fact that boolean values are represented as instances of one of two classes, True and False, is hidden behind the message #ifTrue:ifFalse:.
  • TwistingTheTriad . . . . 1 match
         http://www.esug.org/summerschools/2000_Southampton/twistingTheTriad/twistingTheTriad.pdf
  • UbuntuLinux . . . . 1 match
         sh -c 'echo 1 > /proc/sys/net/ipv4/ip_forward'
  • Unicode . . . . 1 match
         {{{In computing, Unicode provides an international standard which has the goal of providing the means to encode the text of every document people want to store on computers. This includes all scripts in active use today, many scripts known only by scholars, and symbols which do not strictly represent scripts, like mathematical, linguistic and APL symbols.
  • WikiSandBox . . . . 1 match
          * [#20030702 Anchor Name]
  • WikiSandPage . . . . 1 match
         echo "부왘부왘".$res;
  • WikiSlide . . . . 1 match
          * `Anchor` - defines a link target line
  • WikiWikiWeb . . . . 1 match
         Wiki:WardCunnigham created the site and the WikiWikiWeb machinery that operates it. He chose wiki-wiki as an alliterative substitute for quick and thereby avoided naming this stuff quick-web. An early page, Wiki:WikiWikiHyperCard, traces wiki ideas back to a Wiki:HyperCard stack he wrote in the late 80's.
  • WritingOS . . . . 1 match
         '''NACHOS'''
         http://www.cs.washington.edu/homes/tom/nachos/
  • ZPBoard/APM . . . . 1 match
          * http://www.phpschool.com - PHP 한글 사이트 중 최고의 사이트^^
  • ZPBoard/PHPStudy/MySQL . . . . 1 match
          echo "<tr> <td>", $row["name"], "</td><td align=center>", $row["phone"], "</td> </tr>";
  • ZeroPageServer/계정신청상황 . . . . 1 match
         || 최태호 || thchoi || 96 || 1996 || zm ||smasss 엣 hanmail.net || zrmr ||
  • django/ModifyingObject . . . . 1 match
          if cursor.fetchone():
  • django/RetrievingObject . . . . 1 match
          row = cursor.fetchone()
  • html5/form . . . . 1 match
          * http://www.w3schools.com/html5/html5_form_input_types.asp
  • neocoin/Education . . . . 1 match
          잘 가르치기 위해서는 기본적인 교육학 이론보다는 Cognitive Psychology(학습부분)와 실제 "훌륭한 교사"들의 방법을 설명한 책(예컨대 NoSmok:SuccessfulCollegeTeaching ), 그리고 학습 과정을 설명한 책(NoSmok:HowPeopleLearn )이 좋을 것이다. 또 성인 교육에 있어서는 Training, Coaching 관련 서적이 많은 도움이 된다. --JuNe
  • to.상협 . . . . 1 match
         tmp = commands.getoutput('echo "%s" | smbclient -M 박준우 -' % string.join(string.split(urldump)))
  • 그림으로설명하기 . . . . 1 match
         [http://user.chollian.net/~jjang88/jung1math/1setl4.gif]
  • 덜덜덜 . . . . 1 match
         ||[조동영]||chonie골뱅이hananet.net|| :) || :) || :) || :) ||
  • 데블스캠프2012/셋째날/후기 . . . . 1 match
          * [김해천] - 크아아아. 각도조절 구현했어요. 상당히 재미있는 언어인 것 같습니다. 어제부터 자바스크립트에서 왠지모를 자유스러움(?)과 마력을 느꼈는데, 오늘 집에 오면서 책 하나 질렀습니다. 방학때 할 것이 엄청 많기는 하지만, 그래도 해볼렵니다. http://haechoen0.hosting.paran.com/ex.html
  • 몸짱프로젝트 . . . . 1 match
         SeeAlso [HowToStudyDataStructureAndAlgorithms] [DataStructure] [http://internet512.chonbuk.ac.kr/datastructure/data/ds1.htm 자료구조 정리]
  • 반복문자열/고준영 . . . . 1 match
          echo "CAUCSE LOVE.<br>";
  • 방울뱀스터디 . . . . 1 match
         canvas.create_image(0, 0, image=background, anchor=NW)
  • 방울뱀스터디/Thread . . . . 1 match
         canvas.create_image(0, 0, image=wall, anchor=NW)
  • 새싹교실/2011/쉬운것같지만쉬운반/2011.4.6 . . . . 1 match
         echo "100<br>10<br>1";
  • 순수원서 . . . . 1 match
         E-mail : choiwscj at intizen 점 com
  • 실시간멀티플레이어게임프로젝트/첫주차소스2 . . . . 1 match
         position = random.choice(organ)
  • 음계연습하기 . . . . 1 match
         에릭슨(Ericsson)의 전문성(expertise)연구가 이쪽 방면에 유명합니다(see also http://www.vocationalpsychology.com/expertise.htm 및 각종 인지심리학 서적). 바이올린 전문가들에 대해 막대한 추적조사를 해보았는데, 그들의 실력은 자신이 바이올린 연습(정확히 말하면 deliberate practice)에 투자한 시간과 거의 비례했습니다. 하지만 에릭슨은 여기에 전제를 답니다. 단순한 반복 연습은 아무 도움이 안된다고 강조합니다. 자기 자신을 관찰하는 것, 그리고 피드백을 통해 재조정하는 것이 중요합니다.
  • 임인택/내손을거친책들 . . . . 1 match
          * The Haskell School of Expression
  • 정모/2011.5.23 . . . . 1 match
          * 이래저래 커스 공연도 한다고 하고, 과제 때문에 불참도 하고, 저번 정모 때 워낙 11학번 학우들이 많이 있어서였을까요,, 조금 썰렁하다 라는 느낌이 있었지만,, 뭐 홍기의 세미나 잘 들었습니다. 이번 OMS에서 script에 대해서 하셨는데,, 아르바이트 할 때 약간 다뤘던 (간단한 웹 페이지 수정 작업을 했습니다. 그 외에 엑셀 작업 조금이랑,, 개인 공부(?)) 기억이 났습니다. 조금 고치고 저장한 다음에 페이지 열어보고, 잘 되네 이러고 다른거 수정 하고 했었습니다. 전역 후 승한이형이 알려준w3school.com 사이트에서 좀 기초적인 것만 공부하고 아르바이트를 시작했었는데, 자세하게 공부 할 기회가.. (없었던게 아니라 내가 안했을 지도..) 접,, 여튼 조금 더 관심을 가져 봐야 겠다는 생각이 든 OMS였습니다. ㅎ - [권순의]
  • 정모/2012.3.19 . . . . 1 match
          * 참가자 : [박성현], [서민관], [정종록], [김수경], [변형진], [임상현], [장용운], [정진경], [김태진], [권순의], [황현], [서지혜], [정의정], [추성준], [이민규], [박도건], [PichotFabien],[박상영],[김희성], [김민재] ...
  • 정모/2013.7.15 . . . . 1 match
          * [남근우] 회원의 'Introduction to psychology'
  • 창섭 . . . . 1 match
         [http://user.chollian.net/~bioman/ilban/ilban.htm 일반상식]
  • 파스칼삼각형/변형진 . . . . 1 match
         echo factorial($row-1)/(factorial($col-1)*factorial($row-$col));
  • 프로그래밍언어와학습 . . . . 1 match
         http://www.zdnet.co.kr/anchordesk/todays/jwkim/article.jsp?id=45258&forum=1 에 글에 대해서
  • 피보나치/변형진 . . . . 1 match
         echo pibo(1,1,$a);
Found 170 matching pages out of 7555 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.0340 sec