E D R , A S I H C RSS

Full text search for "a..f"

a..f


Search BackLinks only
Display context of search results
Case-sensitive searching
  • VonNeumannAirport/1002 . . . . 61 matches
         이럴 때, traffic 을 구하면 1명이 나온다.
          CPPUNIT_ASSERT_EQUAL (1, conf->getTraffic ());
          int getTraffic () {
          CPPUNIT_ASSERT_EQUAL (1, conf->getTraffic ());
          CPPUNIT_ASSERT_EQUAL (2, conf->getTraffic ());
          traffic += people;
          int getTraffic () {
          return traffic;
          CPPUNIT_ASSERT_EQUAL (102, conf->getTraffic ());
          CPPUNIT_ASSERT_EQUAL (expectedSet[i], conf->getTraffic ());
         1->1 로 1명 가기 : traffic 1.
         1->1 로 1명 더 가기 : traffic 2.
         1->1 로 100명 더 가기 : traffic 102.
         1->2 로 1명 가기 : traffic 2.
          CPPUNIT_ASSERT_EQUAL(2, conf->getTraffic());
          CPPUNIT_ASSERT_EQUAL(2, conf->getTraffic());
          this->traffic = 0;
          traffic += people;
          int getTraffic () {
          return traffic;
  • VonNeumannAirport/인수 . . . . 43 matches
         // 끝부분에 소트시키는 부분이 있는데.. 귀찮아서 그냥 map에 때려넣었다. map<int,int> 해서 키값은 traffic양, 값은 테스트번호, 이런식으로 하면 지가 알아서 정렬한다.
         //Traffic은 거의 데이타 저장고(data holder)의 역할을 하고 있네요. C의 struct처럼 말이죠.
         class Traffic;
         class Traffic
          Traffic(int departureGateNum, int arrivalGateNum, int passengerNum)
          vector<Traffic> _traffics;
          int _totalTraffic;
          void addTrafficData(const Traffic& traffic)
          _traffics.push_back(traffic);
          int getTrafficAmount(const Traffic& traffic) const
          return traffic.getPassengerNum();
          int getDistance(const Traffic& traffic) const
          if( _departureGateNums[i] == traffic.getDepartureGateNum() )
          if( _arrivalGateNums[j] == traffic.getArrivalGateNum() )
          int getTotalTraffic()
          for(int i = 0 ; i < _traffics.size() ; ++i)
          total += getDistance(_traffics[i]) * getTrafficAmount(_traffics[i]);
          _totalTraffic = total;
          return _totalTraffic;
          map<int, int> _trafficAmountCollection;
  • VonNeumannAirport/Leonardong . . . . 42 matches
         Traffic하고 Configuration을 각각 2차원 행렬로 표현했다. Traffic은 ( origin, destination )에 따른 traffic양이고, Configuration은 origin에서 destination 까지 떨어진 거리를 저장한 행렬이다. 전체 트래픽은 행렬에서 같은 위치에 있는 원소끼리 곱하도록 되어있다. 입출력 부분은 제외하고 전체 트래픽 구하는 기능까지만 구현했다.
         class TrafficMatrix(Matrix):
          def construct( self, origin, traffics ):
          for traffic in traffics:
          self.matrix[origin-1][traffic.destination-1] = traffic.load
         class Traffic:
         def total( traffic, distance ):
          * traffic.getLoad(origin, dest)
          self.traffic = TrafficMatrix(MAX)
          def testTraffic(self):
          self.traffic.construct( origin = 1,
          traffics = [Traffic(1,100),
          Traffic(2,50)] )
          self.assertEquals( 100, self.traffic.getLoad( origin = 1,
          self.assertEquals( 50, self.traffic.getLoad( origin = 1,
          self.traffic.construct( origin = 1,
          traffics = [Traffic(2,100)])
          self.traffic.construct( origin = 2,
          traffics = [Traffic(1,200)])
          self.assertEquals( 600, total( self.traffic, self.distMatrix ) )
  • VonNeumannAirport/남상협 . . . . 28 matches
          def __init__(self,cityNum,trafficList, configureList):
          self.trafficList = []
          for trafficData in trafficList:
          trafficOfCity = []
          for traffic in trafficData[:-1]:
          trafficOfCity.append(int(traffic))
          self.trafficList.append(trafficOfCity)
          def calculateTraffic(self):
          trafficResult = []
          traffic=0
          for i in range(2,len(self.trafficList[departureGate-1]),2):
          arrivalGate = self.trafficList[departureGate-1][i]
          traffic+=(abs(configure[1].index(arrivalGate)-configure[0].index(departureGate))+1)*self.trafficList[departureGate-1][i+1]
          trafficResult.append((confNum,traffic))
          trafficResult.sort(lambda x,y: cmp(x[1],y[1]))
          return trafficResult
          trafficList = []
          trafficList.append(Data.readline().split(" "))
          airport = Airport(cityNum, trafficList, configureList)
          def calculateAllTraffic(self):
  • 데블스캠프2009/목요일/연습문제/MFC/송지원 . . . . 24 matches
         #if !defined(AFX_TESTDLG_H__B619E89A_C192_46A8_8358_6AC21A6D48CC__INCLUDED_)
         #define AFX_TESTDLG_H__B619E89A_C192_46A8_8358_6AC21A6D48CC__INCLUDED_
          //{{AFX_DATA(CTestDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CTestDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CTestDlg)
          afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
          afx_msg void OnPaint();
          afx_msg HCURSOR OnQueryDragIcon();
          afx_msg void Button7();
          afx_msg void Button8();
          afx_msg void Button9();
          afx_msg void Button4();
          afx_msg void Button5();
          afx_msg void Button6();
          afx_msg void Button1();
          afx_msg void Button2();
          afx_msg void Button3();
          afx_msg void Button0();
  • 데블스캠프2010/다섯째날/ObjectCraft . . . . 15 matches
         = ObjectCraft =
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/변형진 변형진]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/허준 허준]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/김정욱 김정욱]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/서민관 서민관]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/강소현 강소현]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/박재홍 박재홍]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션1/김상호 김상호]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/변형진 변형진]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/허준 허준]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/박재홍 박재홍]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/강소현 강소현]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/서민관 서민관]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션2/김상호 김상호]
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft/미션3/김상호 김상호]
  • 자바와자료구조2006 . . . . 12 matches
         [http://h1.ripway.com/preved/sildenafil.html sildenafil]
         [http://www.gayhomes.net/billnew/sildenafil.html sildenafil]
         [http://www.gayhomes.net/billnew/tadalafil.html tadalafil]
         [http://h1.ripway.com/preved/tadalafil.html tadalafil]
         [http://eteamz.active.com/sumkin/files/sildenafil.html sildenafil]
         [http://eteamz.active.com/sumkin/files/tadalafil.html tadalafil]
  • Gof/Composite . . . . 9 matches
          * Leaf (Rectangle, Line, Text, etc.)
          * composition의 leaf 객체를 표현한다. leaf 는 children를 가지지 않는다.
          * 클라이언트들은 Component 클래스의 인터페이스를 이용, composite 구조의 객체들과 상호작용을 한다. 만일 상호작용하는 객체가 Leaf인 경우, 해당 요청은 직접적으로 처리된다. 만일 상호작용하는 객체가 Composite인 경우, Composite는 해당 요청을 자식 컴포넌트들에게 전달하는데, 자식 컴포넌트들에게 해당 요청을 전달하기 전 또는 후에 추가적인 명령들을 수행할 수 있다.
          * 클라이언트를 단순하게 만든다. 클라이언트는 각각의 객체와 복합 구조체를 동등하게 취급할 수 있다. 클라이언트는 그들이 다루려는 객체가 Composite 인지 Leaf 인지 알 필요가 없다. 이러함은 composition 을 정의하는 클래스들에 대해 상관없이 함수들을 단순하게 해준다.
          * 새로운 종류의 컴포넌트들을 추가하기 쉽게 해준다. 새로 정의된 Composite 나 Leaf 의 서브클래스들은 자동적으로 현재의 구조들과 클라이언트 코드들과 작용한다. 클라이언트 코드들은 새로운 Component 클래스들에 대해서 수정될 필요가 없다.
         Equipment 의 서브클래스는 디스크 드라이브나 IC 회로, 스위치 등을 표현하는 Leaf 클래스를 포함할 수 있다.
         RTL Smalltalk 컴파일러 프레임워크 [JML92] 는 CompositePattern을 널리 사용한다. RTLExpression 은 parse tree를 위한 Component 클래스이다. RTLExpression 은 BinaryExpression 과 같은 서브클래스를 가지는데, 이는 RTLExpression 객체들을 자식으로 포함한다. 이 클래스들은 parse tree를 위해 composite 구조를 정의한다. RegisterTransfer 는 프로그램의 Single Static Assignment(SSA) 형태의 중간물을 위한 Component 클래스이다. RegisterTransfer 의 Leaf 서브클래스들은 다음과 같은 다른 형태의 static assignment 를 정의한다.
          * VisitorPattern은 명령들과 Composite 와 Leaf 클래스 사이를 가로질러 분포될 수 있는 행위들을 지역화한다.
  • MineSweeper/Leonardong . . . . 9 matches
          return Room.safyZone()
          def safyZone(): # static method
          safyZone = staticmethod( safyZone )
          if Room.safyZone().equals( self.ground.getZone(row,col) ):
          afterSweep = MineSweeper( MineGround(rowSize, colSize, info) ).sweep()
          for line in afterSweep:
          self.failUnless( Room.safyZone().equals( ground.getZone(0,0) ) )
          self.failUnless( Room.safyZone().equals( ground.getZone(-1,0) ))
  • DelegationPattern . . . . 8 matches
          private int _traffic;
          public int getTraffic() {
          return _traffic;
          _traffic+=getDistance(fromCity,toCity)*aNumber;
          private int _traffic;
          public int getTraffic() {
          return _traffic;
          _traffic+=getDistance(fromCity,toCity)*aNumber;
  • 영호의바이러스공부페이지 . . . . 8 matches
         Staff -
          be COMMAND.COM. After the first .COM file is infected,each time
         named John Mcafee gets his greedy hands on them and turns them into big
         So the best thing to do to some Mcafee dependant sucker, or lame board is
         Make a copy of the file and keep it for safe keeping.
         e 0150 5A A0 01 39 00 B4 02 AF 00 7C 04 7C A4 FA 05 10
         e 0760 5A A0 01 39 00 B4 02 AF 00 7C 04 7C A4 FA 05 10
         code_start equ 100h ; Address right after PSP in memory
          org code_start ; Start code image after PSP
         virus_msg1 db cr,lf,tab,"ATTENTION! Your computer has been afflicted with$"
         root. Each run after that will begin infection of files following. The
  • MoreEffectiveC++/Techniques1of3 . . . . 7 matches
         bool isSafeToDelete(const void *address)
         이러한 것은 간단하다. operator new는 collection에 메모리를 할당하는 주소를 기록하고, operator delete는 그것을 지운다. 그리고 isSafeToDelete는 collection에 해당 주소가 있는지 알려주는 역할을 한다. 만약 operator new와 operator delete가 전역 공간에 있다면 이것은 모든 타입의 작업시에 적용 될것이다.
         실제로 세가지 생각이 이러한 디자인을 매달리지 못하게 한다. '''첫번째는''' 전역 공간에 어떤것을 정의하는 극도로 피하려는 경향이다. operator enw나 operator delete같은 미리 정의된 함수에 대하여 특별하게 고친다는 것은 더 그럴 것이다. '''둘째로''' 효율에 관한 문제이다. 모든 메모리 할당에서 overhead가 발생한다는 의미인데, 이것을 유지하겠는가? '''마지막으로''' 걱정되는 것은 평범하지만 중요한 것으로 isSafeToDelete이 모든 수행에 관하여 적용되는 적용하는 것이다. 하지만 이것이 근본적으로 불가능하다고 보이기 때문이다. 조금더 이약 해보자면, 다중 상속이나, virtual base class가 가지는 여러게의 주소들, 이 주소들 때문에 isSafeTo Delete에게 전달되는 주소에 대한 확실한 보장이 없다. 자세한 내용은 Item 24, 31일 참고하라.
         위에서 isSafeToDelete를 구현할때 다중 상속이나 가상 기초 함수으로 여러개의 주소를 가지고 있는 객체가 전역의 해당 함수를 복잡하게 할것이라고 언급했다. 그런 문제는 isOnHeap에서 역시 마찬가지이다. 하지만 isOnHeap는 오직 HeapTracked객체에 적용 시킨 것이기 때문에, dynamic_cast operatror를 활용으로 위의 문제를 제거한다. 간단히 포인터를 dynamic_cast 하는 것은 (혹은 const void* or volatile void* or 알맞는 것으로 맞추어서) 객체의 가장 앞쪽 포인터, 즉, 할당된 메모리의 가장 앞쪽에 주소를 가리키는 포인터를 의미한다. 그렇지만 dynamic_cast는 가상함수를 하나 이상 가지는 객체를 가리키는 포인터에 한해서만 허용 된다. isSafeToDelete함수는 모든 포인터에 관해서 가능하기 때문에 dynamic_cast가 아무런 소용이 없다. isOnHeap는 조금더 선택의 폭이 있어서 this를 const void*로 dynamic_cast하는 것은 우리에게 현재 객체의 메모리 시작점의ㅣ 포인터를 주게 된다. 그 포인터는 HeapTracked::operator new가 반드시 반환해야만 하는 것으로 HeapTrack::operator new의 처음 부분에 있다. 당신의 컴파일러가 dynamix_cast를 지원하면 이러한 기술은 이식성이 높다.
         ifstream inputFile("datafile.dat");
  • OOP/2012년스터디 . . . . 7 matches
         bool isLeafYear;
         void CalLeafYear(int year);
          CalLeafYear(year);
          if((month==1 || month==2) && isLeafYear==true) month+=12;
          if(isLeafYear==true&&month==2) eDay=mEnd[0];
         void CalLeafYear( int year )
          isLeafYear =(year % 400 == 0) || ((year % 100 != 0) && (year % 4 == 0));
  • 서지혜/단어장 . . . . 7 matches
         '''baffle'''
          당황하게 하다 : The thing that baffles me is that the conversations do not center around the adults but almost exclusively about their respective kids
          무릎을 꿇다 : The town succumbed after a short siege.
          망각 : Eternal oblivion, or simply oblivion, is the philosophical concept that the individual self "experiences" a state of permanent non-existence("unconsciousness") after death. Belief in oblivion denies the belief that there is an afterlife (such as a heaven, purgatory or hell), or any state of existence or consciousness after death. The belief in "eternal oblivion" stems from the idea that the brain creates the mind; therefore, when the brain dies, the mind ceases to exist. Some reporters describe this state as "nothingness".
          Their health was to be monitored for a month, but after two woks all of the rats in the programming group had melted into a dense goo that tasted a little like quiche. - [GotoConsideredHarmful]
  • 5인용C++스터디/타이머보충 . . . . 6 matches
         StdAfx.h 에서...
         #include <afxwin.h> // MFC core and standard components
         #include <afxext.h> // MFC extensions
         #include <afxdisp.h> // MFC Automation classes
         #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
         #ifndef _AFX_NO_AFXCMN_SUPPORT
         #include <afxcmn.h> // MFC support for Windows Common Controls
         #endif // _AFX_NO_AFXCMN_SUPPORT
         //{{AFX_INSERT_LOCATION}}
          //{{AFX_MSG_MAP(CMMTimerView)
          //}}AFX_MSG_MAP
          //{{AFX_MSG(CMMTimerView)
          //}}AFX_MSG
          afx_msg LRESULT OnMMTimer(WPARAM wParam, LPARAM lParam);
  • Linux/MakingLinuxDaemon . . . . 6 matches
         root 1387 1 1303 1303 TS 14 Oct15 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe
         root 1417 1387 1303 1303 TS 14 Oct15 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe
         root 1419 1417 1303 1303 TS 23 Oct15 ? 00:00:00 logger -p daemon.err -t mysqld_safe -i
         root 1387 1 1303 1303 TS 14 Oct15 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe
         root 1417 1387 1303 1303 TS 14 Oct15 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe
         root 1419 1417 1303 1303 TS 23 Oct15 ? 00:00:00 logger -p daemon.err -t mysqld_safe -i
  • MoreEffectiveC++/Appendix . . . . 6 matches
         One topic Cargill does not discuss in C++ Programming Style is exceptions. He turns his critical eye to this language feature in the following article, however, which demonstrates why writing exception-safe code is more difficult than most programmers realize: ¤ MEC++ Rec Reading, P22
         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
         Three Usenet newsgroups are devoted to C++. The general-purpose anything-goes newsgroup is °comp.lang.c++ . The postings there run the gamut from detailed explanations of advanced programming techniques to rants and raves by those who love or hate C++ to undergraduates the world over asking for help with the homework assignments they neglected until too late. Volume in the newsgroup is extremely high. Unless you have hours of free time on your hands, you'll want to employ a filter to help separate the wheat from the chaff. Get a good filter — there's a lot of chaff. ¤ MEC++ Rec Reading, P47
         If your compilers don't yet support explicit, you may safely #define it out of existence: ¤ MEC++ auto_ptr, P6
         This won't make auto_ptr any less functional, but it will render it slightly less safe. For details, see Item 5. ¤ MEC++ auto_ptr, P7
  • RSSAndAtomCompared . . . . 6 matches
         most likely candidates will be [http://blogs.law.harvard.edu/tech/rss RSS 2.0] and [http://ietfreport.isoc.org/idref/draft-ietf-atompub-format/ Atom 1.0].
         [http://ietfreport.isoc.org/idref/draft-ietf-atompub-protocol/ Atom Publishing Protocol], which is closely integrated with the Atom feed format and is based on the experience with the existing protocols.
         Atom [http://www.ietf.org/internet-drafts/draft-ietf-atompub-autodiscovery-01.txt standardizes autodiscovery]. Additionally, Atom feeds contain a “self” pointer, so a newsreader can auto-subscribe given only the contents of the feed, based on Web-standard dispatching techniques.
         using any network protocol, for example [http://ietfreport.isoc.org/idref/draft-saintandre-atompub-notify/ XMPP]. Atom also has support for aggregated
          <id>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id>
  • CSP . . . . 5 matches
         #Copyright 2003 June Kim <juneaftn at hanmail dot net>
          s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
          s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
         #Copyright 2003 June Kim <juneaftn at hanmail dot net>
         #Copyright 2003 June Kim <juneaftn at hanmail dot net>
         #Copyright 2003 June Kim <juneaftn at hanmail dot net>
         #Copyright 2003 June Kim <juneaftn at hanmail dot net>
  • DebuggingSeminar_2005/AutoExp.dat . . . . 5 matches
         ; from afxwin.h
         ; from afxcoll.h
         ; from afxstat_.h
         ; from afx.h
         ; from afxcoll.h
  • FortuneCookies . . . . 5 matches
          * Show your affection, which will probably meet with pleasant response.
          * You will be awarded a medal for disregarding safety in saving someone.
          * Love is in the offing. Be affectionate to one who adores you.
          * Good news from afar can bring you a welcome visitor.
          * You are going to have a new love affair.
  • MoinMoinTodo . . . . 5 matches
          * Document the config options (possibly ''after'' the refactoring)
          * Support URNs, see http://www.ietf.org/internet-drafts/draft-daigle-uri-std-00.txt and http://www.ietf.org/internet-drafts/draft-hakala-isbn-00.txt
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 5 matches
         http://luaeclipse.luaforge.net/
         http://luaforge.net
         LuaForWindows_v5.1.4-35.exe
         기본적으로 "/World of Warcraft/interface/addons/애드온명" 으로 폴더가 만들어져있어야한다.
         http://www.wowwiki.com/World_of_Warcraft_API
         또한 Widget과 LuaFunction의 사용정보를 볼수 있다.
         사이트는 http://www.codeplex.com/WarcraftAddOnStudio 에서 다운 받을 수 있다.
  • Zeropage/Staff/회의 . . . . 5 matches
          == Zeropage/Staff/회의 ==
         [Zeropage/Staff/회의_2006_01_19]
         [Zeropage/Staff/회의_2006_02_13]
         [Zeropage/Staff/회의_2006_03_04]
         [Zeropage/Staff]
  • 2004겨울여행 . . . . 4 matches
          * 남이섬 가는 [http://www.namisum.com/traffic/traffic_01.html 교통편]은 청량리->가평(기차), 가평->남이섬(시내버스)이 무난해 보입니다. 청량리역 롯데리아 앞에서 만나는 것이 어떨지.. -- [재선]
          * [http://www.namisum.com/traffic/traffic_01.html 교통편]을 보면 가평->남이섬 입구가는 버스가 11시40분 다음이 1시 30분입니다. 가서 너무 조금 놀다오면 섭섭하기 때문에 때문에 될 수 있으면 11시 40분 버스를 탔으면 좋겠습니다. 그러려면 적어도 아침 10시에 청량리에서 버스를 타야하므로 '''9시 30분'''까지 '''청량리 백화점 앞'''(예전 롯데리아 있던 곳, 지금은 없어졌습니다.)으로 모여주세요~! --휘동
  • 5인용C++스터디/API에서MFC로 . . . . 4 matches
          //{{AFX_MSG_MAP(CApplicationView)
          //}}AFX_MSG_MAP
          //{{AFX_MSG(CApplicationView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
          afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
          afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
          //}}AFX_MSG
  • AcceleratedC++/Chapter6 . . . . 4 matches
          iter after = url_end(b, e);
          ret.push_back(string(b, after));
          b = after;
          // is there at least one appropriate character before and after the separator?
  • EightQueenProblem/nextream . . . . 4 matches
         function safe(line) {
          if (safe(line)) check(line+1);
         function printAfter(position) {
          printAfter(positions[i]);
         function safe(line) {
          if (safe(line)) check(line+1);
  • FoafMacro . . . . 4 matches
         ||[[Foaf(http://internetalchemy.org/iand/foaf.rdf)]]||
         ||[[Foaf(http://internetalchemy.org/iand/foaf.rdf,homepage)]]||
  • InterWikiIcons . . . . 4 matches
          * [wiki:FOAF:http://dannyayers.com/misc/foaf/foaf.rdf DannyAyers]
          * Foldoc:FOAF
          * RDFweb:FOAFwiki :)
          * [http://musikis.cafe24.com/ccmpic CCMPic] - http://musikis.cafe24.com/ccmpic/imgs/ccmpic-16.png
  • Refactoring/OrganizingData . . . . 4 matches
          * You have a literal number with a paricular meaning. [[BR]] ''Crate a constant, name it after the meaning, and replace the number with it.''
          * A class has a numeric type code that does not affect its behavior. [[BR]] ''Replace the number with a new class.''
          * You have an immutable type code that affects the bahavior of a class. [[BR]] ''Replace the type code with subclasses.''
          * You have a type code that affects the behavior of a class, but you cannot use subclassing. [[BR]] ''REplace the type code with a state object.''
  • UDK/2012년스터디 . . . . 4 matches
          * [http://www.udk.com/kr/documentation.html 튜토리얼], [http://www.3dbuzz.com/vbforum/sv_home.php 3D Buzz] [http://cafe.naver.com/cookingani UDK 카페]와 [http://book.naver.com/bookdb/book_detail.nhn?bid=6656697 Mastering Unreal]을 참고하여 진행
          * [http://3dcafe.com/ 3D Cafe] - 외국 사이트인데 역사가 깊은 사이트라나
          * [http://cafe.naver.com/maxkill/122108 책 추천]
  • Zeropage/Staff . . . . 4 matches
         = ZeroPage의 Staff 란? =
          * ZeroPager라면 누구든지 Staff가 될 수 있습니다.
          * 단, Staff 모임에 꼭 참가해야만 합니다.
         [Zeropage/Staff/회의]
  • 금고/김상섭 . . . . 4 matches
          int height, safe, testnum, i;
          cin >> height >> safe;
          if(table[safe][height])
          cout << table[safe][height] << endl;
  • 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 4 matches
         #include "stdafx.h"
          //{{AFX_DATA(CAboutDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CAboutDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CAboutDlg)
          //}}AFX_MSG
          //{{AFX_DATA_INIT(CAboutDlg)
          //}}AFX_DATA_INIT
          //{{AFX_DATA_MAP(CAboutDlg)
          //}}AFX_DATA_MAP
         //{{AFX_MSG_MAP(CAboutDlg)
         //}}AFX_MSG_MAP
          //{{AFX_DATA_INIT(CTestMFCDlg)
          //}}AFX_DATA_INIT
          m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
          //{{AFX_DATA_MAP(CTestMFCDlg)
          //}}AFX_DATA_MAP
         //{{AFX_MSG_MAP(CTestMFCDlg)
         //}}AFX_MSG_MAP
  • 데블스캠프2010 . . . . 4 matches
          || 1시 ~ 3시 || [박성현] || [wiki:데블스캠프2010/첫째날/오프닝 오프닝] || [김수경] || [wiki:데블스캠프2010/Prolog Prolog] || [박성현] || [wiki:EightQueenProblem Eight Queen] || [강성현] || [wiki:데블스캠프2010/넷째날/DHTML DHTML] || [변형진] || [wiki:데블스캠프2010/다섯째날/ObjectCraft ObjectCraft] ||
          || 3시 ~ 5시 || 박지상 || 게임회사 이야기 || [김홍기] || PP || [김창준] || 학습 || [안혁준] || C++0x || [변형진] || [wiki:데블스캠프2010/다섯째날/ObjectCraft ObjectCraft] ||
  • 문자반대출력/최경현 . . . . 4 matches
          FILE *before, *after;
          after = fopen("result.txt", "w");
          fputs(string, after);
          fclose(after);
  • 오목/민수민 . . . . 4 matches
         #if !defined(AFX_SAMPLEVIEW_H__7D3F7617_AE70_11D7_A975_00010298970D__INCLUDED_)
         #define AFX_SAMPLEVIEW_H__7D3F7617_AE70_11D7_A975_00010298970D__INCLUDED_
          //{{AFX_VIRTUAL(CSampleView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CSampleView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          afx_msg void OnMouseMove(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_SAMPLEVIEW_H__7D3F7617_AE70_11D7_A975_00010298970D__INCLUDED_)
         #include "stdafx.h"
          //{{AFX_MSG_MAP(CSampleView)
          //}}AFX_MSG_MAP
          // TODO: add cleanup after printing
  • 작은자바이야기 . . . . 4 matches
          * Collection 일반화, 순차적 순회, 대부분의 자료구조에서 O(1), 변경하지 않는 한 thread safe
          * servlet의 thread safety
          * filter, servlet은 하나의 객체를 url에 매핑해서 여러 스레드에서 쓰이는 것임. 따라서 thread-safe 해야 한다.
          * thread-safe하기 위해서는 stateful해서는 안 된다. Servlet이 stateless하더라도 내부에 stateful한 객체를 들고 있으면 결국은 stateful하게 된다. 자주 하는 실수이므로 조심하도록 하자.
  • BabyStepsSafely . . . . 3 matches
         Baby Steps, Safely
         This article outlines the refactoring of an algorithm that generate the prime numbers up to a user specified maximum. This algorithm is called the Sieve of Eratosthenes. This article demonstrates that the granularity of the changes made to the source code are very small and rely completely on the ability to recompile and test the code after every change no matter how small. The step where the code is tested insures that each step is done safely. It is important to note that the execution of tests do not actually guarantee that the code is correct. The execution of the tests just guarantees that it isn't any worse that it used to db, prior to the change. This is good enough for the purposes of refactoring since we are tring to not damage anything thay may have worked before Therefore for each change in the code we will be recompilling the code and running the tests.
  • Calendar성훈이코드 . . . . 3 matches
         int IsLeafYear(int year);
          if(IsLeafYear(year) == 0) days = 29;
         int IsLeafYear(int year)
  • CleanCode . . . . 3 matches
          * [http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882 CleanCode book]
          * 도서 : [http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882 Clean Code]
         /* You can handle empty array with "array.length === 0" statement in anywhere after array is set. */
  • DebuggingSeminar_2005/DebugCRT . . . . 3 matches
         // include crtdbg.h after all other headers.
         = after =
         = after =
  • EightQueenProblem/서상현 . . . . 3 matches
         int safe(int x, int y)
          if (safe(i, j)) {
          if (safe(i, j)) {
  • GDBUsage . . . . 3 matches
         Starting program: /home/staff/sapius/source/ipc_test/pipe1 15
         Starting program: /home/staff/sapius/source/ipc_test/pipe1
         Starting program: /home/staff/sapius/source/ipc_test/pipe1
  • Garbage collector for C and C++ . . . . 3 matches
         # code from the heap. Currently this only affects the incremental
         # -DJAVA_FINALIZATION makes it somewhat safer to finalize objects out of
         # in which most client code is written in a "safe" language, such as
         # allocated through the debugging interface. Affects the amount of
  • JTDStudy/첫번째과제/상욱 . . . . 3 matches
          * JUnit 4.1을 추천합니다. 3~4년 후에는 4.1이 일반화 되어 있겠죠. 사용하다 보니, 4.1은 배열간의 비교까지 Overloading되어 있어서 편합니다. 다음의 예제를 보세요. SeeAlso [http://neocoin.cafe24.com/cs/moin.cgi/JUnit JUnit in CenterStage] --NeoCoin
          * 이 언어들의 시작점으로는 간단한 계산이 필요할때 계산기보다 열기보다 늘 IDLE나 rib(ruby)를 열어서 계산을 하지. 예를들어서 [http://neocoin.cafe24.com/cs/moin.cgi/ET-house_%ED%99%98%EA%B8%89%EC%BD%94%EC%8A%A4?highlight=%28et%29 et-house환급코드 in CenterStage] 같은 경우도 그래. 아 그리고 저 코드 군에 있을때 심심풀이 땅콩으로 짜논거. SeeAlso [http://neocoin.cafe24.com/cs/moin.cgi/%EC%95%BC%EA%B5%AC%EA%B2%8C%EC%9E%84 숫자야구 in CenterStage]
  • MFC/MessageMap . . . . 3 matches
          //}}AFX_MSG
          afx_msg LRESULT OnAcceptClient(WPARAM wParam, LPARAM lParam); // 이부분에 이렇게 정의한 메시지를 실행할 함수를 넣어준다. 함수명은 하고 싶은데로..
         afx_msg LRESULT OnAcceptClient(WPARAM wParam, LPARAM lParam)
          //{{AFX_VIRTUAL(CEx14App)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CEx14App)
          afx_msg void OnAppAbout(); // 위저드로 생성되는 기본 코드에서는 오로지 ID_APP_ABOUT 매시지 만을 처리하는 함수가 존재한다.
          //}}AFX_MSG
          //{{AFX_MSG_MAP(CEx14App)
          //}}AFX_MSG_MAP
          //{{AFX_DATA(CAboutDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CAboutDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CAboutDlg)
          //}}AFX_MSG
          //{{AFX_DATA_INIT(CAboutDlg)
          //}}AFX_DATA_INIT
          //{{AFX_DATA_MAP(CAboutDlg)
          //}}AFX_DATA_MAP
  • MicrosoftFoundationClasses . . . . 3 matches
         #include <afxwin.h> //about class library
          nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadex
          nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadex
  • MySQL 설치메뉴얼 . . . . 3 matches
          After creating or updating the grant tables, you need to restart
         After everything has been unpacked and installed, you should test your
          shell> bin/mysqld_safe --user=mysql &
         More information about `mysqld_safe' is given in *Note mysqld-safe::.
         initially have no passwords. After starting the server, you should set
  • SoftwareCraftsmanship . . . . 3 matches
          * wiki:Wiki:SoftwareCraftsmanship , wiki:Wiki:QuestionsAboutSoftwareCraftsmanshipBook - OriginalWiki 에서의 이야기들.
          * wiki:NoSmok:SoftwareCraftsmanship
  • StringOfCPlusPlus/상협 . . . . 3 matches
          String after=String(" is genius");
          cout<<after<<'\n'<<nam.nval()<<'\n';
          String sum=nam+after;
  • ThinkRon . . . . 3 matches
         Let me tell a brief story about how that came about. Our president, at the time was Bob Doherty. Doherty came from General Electric via Yale, and had been one of the bright young men who were taken under the wing of the famous engineer Stiglitz. Every Saturday, Stiglitz would hold a session with these talented young men whom General Electric had recruited and who were trying to learn more advanced engineering theory and problem-solving techniques. Typically, Bob Doherty would sometimes get really stuck while working on a problem. On those occasions, he would walk down the hall, knock on Stiglitz’s door, talk to him — and by golly, after a few minutes or maybe a quarter of an hour, the problem would be solved.
         One morning Doherty, on his way to Stiglitz’s office, said to himself, "Now what do we really talk about? What’s the nature of our conversation?" And his next thought was, "Well Stiglitz never says anything; he just asks me questions. And I don’t know the answer to the problem or I wouldn’t be down there; and yet after fifteen minutes I know the answer. So instead of continuing to Stiglitz’s office, he went to the nearest men’s room and sat down for a while and asked himself, "What questions would Stiglitz ask me about this?" And lo and behold, after ten minutes he had the answer to the problem and went down to Stiglitz’s office and proudly announced that he knew how to solve it.
  • WikiSlide . . . . 3 matches
         <!> After editing pages, please leave the edit form by "`Save Changes`" since otherwise your edits will be lost!
          (!) A common error is to insert an additional blank after the ending equal signs!
         New pages are created by simply adding a new WikiName to an existing page and clicking on it after saving the existing page.
          * `DeletePage`: Delete a page (after a security question)
  • [Lovely]boy^_^/EnglishGrammer/PresentAndPast . . . . 3 matches
          Note the position of always/never/usually, etc... (before the main verb, after be verb) ( 위치 주의 )
          ex) I walked home after the party last night. ( = all the way, completely)
          But we use the simple past to say that one thing happened after another.(뭔가가 일어난 뒤에는 단순과거만 쓰래요.)
  • 데블스캠프2004/금요일 . . . . 3 matches
          from StarCraft import StarCraft
          sc = StarCraft ()
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/김정욱 . . . . 3 matches
         Describe 데블스캠프2010/다섯째날/ObjectCraft/미션1/김정욱 here
         struct craft{
          struct craft zergling[2];
  • 영호의해킹공부페이지 . . . . 3 matches
         Scenario: It's a Sunday afternoon. There is nothing to do. The sun is cooking
         After Eliteness...
         is still available); Note: after that you can't change to the big net monitor
         gfr25 - | gfr25-01-s1.saix.net | Graaff-Reinet dial up
  • 오목/곽세환,조재화 . . . . 3 matches
         #if !defined(AFX_OHBOKVIEW_H__1263A16D_AC1C_11D7_8B87_00105A0D3B1A__INCLUDED_)
         #define AFX_OHBOKVIEW_H__1263A16D_AC1C_11D7_8B87_00105A0D3B1A__INCLUDED_
          //{{AFX_VIRTUAL(COhbokView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(COhbokView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_OHBOKVIEW_H__1263A16D_AC1C_11D7_8B87_00105A0D3B1A__INCLUDED_)
         #include "stdafx.h"
          //{{AFX_MSG_MAP(COhbokView)
          //}}AFX_MSG_MAP
          // TODO: add cleanup after printing
  • 오목/재니형준원 . . . . 3 matches
         #if !defined(AFX_OMOKVIEW_H__95EACAA5_FAEA_4766_A6B3_6C6245050A8B__INCLUDED_)
         #define AFX_OMOKVIEW_H__95EACAA5_FAEA_4766_A6B3_6C6245050A8B__INCLUDED_
          //{{AFX_VIRTUAL(COmokView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(COmokView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_OMOKVIEW_H__95EACAA5_FAEA_4766_A6B3_6C6245050A8B__INCLUDED_)
         #include "stdafx.h"
          //{{AFX_MSG_MAP(COmokView)
          //}}AFX_MSG_MAP
          // TODO: add cleanup after printing
  • 오목/재선,동일 . . . . 3 matches
         #if !defined(AFX_SINGLEVIEW_H__E826914F_AE74_11D7_8B87_000102915DD4__INCLUDED_)
         #define AFX_SINGLEVIEW_H__E826914F_AE74_11D7_8B87_000102915DD4__INCLUDED_
          //{{AFX_VIRTUAL(CSingleView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CSingleView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_SINGLEVIEW_H__E826914F_AE74_11D7_8B87_000102915DD4__INCLUDED_)
         #include "stdafx.h"
          //{{AFX_MSG_MAP(CSingleView)
          //}}AFX_MSG_MAP
          // TODO: add cleanup after printing
  • 오목/진훈,원명 . . . . 3 matches
         #if !defined(AFX_OMOKVIEW_H__5E50035A_B51D_11D7_8B86_00105A0D3B05__INCLUDED_)
         #define AFX_OMOKVIEW_H__5E50035A_B51D_11D7_8B86_00105A0D3B05__INCLUDED_
          //{{AFX_VIRTUAL(COmokView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(COmokView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_OMOKVIEW_H__5E50035A_B51D_11D7_8B86_00105A0D3B05__INCLUDED_)
         #include "stdafx.h"
          //{{AFX_MSG_MAP(COmokView)
          //}}AFX_MSG_MAP
          // TODO: add cleanup after printing
  • 임인택/CVSDelete . . . . 3 matches
          for afile in files:
          print afile
          os.remove(folder+'/'+afile)
  • 정모/2011.5.9 . . . . 3 matches
          * 저 토요일 3시부터 면접스터디가 잡혀서 아침 10시부터 2시까지 있다 갑니다. 데블스 staff 모임 참가 못할 거 같으니 나머지 staff분이 회의 후 회의 내용 공유해주세요 - [Enoch]
          * 스타2를 플레이해본 적은 없지만 스타1 캠페인 에디터나 RPG만들기는 조금씩 찌끄려봤는데 이번 기호의 OMS를 보고 유저의 게임 만들기에 있어 엄청난 발전과 변화를 불러 일으켰더군요. 버그가 많고 코드에 대한 이해가 필요하다는 점도 있지만 스타2로 만들어진 와우는 정말 흥미로웠습니다. 데블스 staff 회의를 진행하면서 이제까지의 데블스캠프에 대해 회고해보고 어떻게 해야 개선할 수 있을지 고민해 보았는데 ZP에서 학우들이 학술적으로 오랜 시간 동안 많은 공유를 할 수 있는 몇 안되는 큰 행사이니 만큼 뜻깊은 시간이 되었으면 좋겠습니다. - [Enoch]
  • 정모/2012.3.12 . . . . 3 matches
          * [변형진]의 [http://zeropage.org/seminar/59923 Type Safety using Java Generics].
          * 전시회 홍보, 동아리 방 설명에 이어서 OMS가 상당히 인상 깊었던 정모였습니다. 제목만 보고도 그 주제를 고르신 이유를 바로 알았습니다. 전체적으로 Type, Type Safety, Java Generics에 대해서 상당히 깊이 다루지 않았나 싶네요. 사실 제네릭스 모양이 C++의 템플릿과 비슷하게 생겨서 같은 것이라고 생각하고 있었는데 이건 확실히 '만들어진 이유가 다르다'고 할 만 하군요. 그리고 마지막에 이야기했던 Type Erasure는 제네릭스를 구현할 때 JVM 레벨에서 구현하지 않고 컴파일러 부분에서 처리를 하도록 했기 때문에 타입이 지워지는 거라는 얘기를 들었는데 맞는지 모르겠군요. 이거 때문에 제네릭스 마음에 안 들어하는 사람들도 있는 모양이던데. 중간에 이 부분에 대한 개선이 이루어지고 있다는 말씀을 잠깐 하셨는데 컴파일 이후에도 타입 정보가 사라지지 않도록 스펙을 수정하고 있는 건가요? 좀 궁금하군요. 여담이지만 이번에 꽤 인상깊게 들었던 부분은 예상외로 Data Type에 대한 부분이었습니다. 이걸 제가 1학년 여름방학 때 C++ 스터디를 한다고 수경 선배한테 들은 기억이 지금도 나는데, 그 때는 Type이 가능한 연산을 정의한다는 말이 무슨 뜻인지 이해를 못 했었죠 -_-;;; 이 부분은 아마 새내기들을 대상으로 새싹을 할 때 말해줘야 할 필요가 있지 않을까 싶습니다. 아마 당장은 이해하지 못 하겠지만. 후후 - [서민관]
          * Type safety를 설명하기 위해 Data type 이야기에서 시작했습니다. Data type에 대한 나름의 정의는 멘토링을 통해 듣고 새싹에서 알차게 우려먹은 내용이었어요. 아마 많은 새싹 교실 선생님들께서 첫 주에 변수와 자료형에 대해 수업을 진행하지 않을까 생각하는데 여러분도 알차게 써먹으시길ㅋㅋㅋ
  • 창섭/통기타 . . . . 3 matches
         || [http://cafe.daum.net/picatongjjang 중앙대학교 통기타 동아리 피카통 모임 다음까페] ||
         || [http://cafe19.daum.net/_c21_/bbs_list?grpid=2Yce&fldid=V9D 피카통 10기 다음까페 기타관련게시판] ||
         || [http://cafe.daum.net/folkguitar 최대의 통기타 다음까페 통리] ||
  • 0PlayerProject/커널업로드작업정리 . . . . 2 matches
          * 종류 : JFFS2 ( 메모리를 위한 것이지만 조금 느림), yaffs ( 안정성이 보장되지 않지만, 그나마 나음)
          * 현재는 yaffs로 설정되어 있음
  • ASXMetafile . . . . 2 matches
          * <ASX>: Indicates an ASX metafile.
          * [http://msdn.microsoft.com/workshop/imedia/windowsmedia/crcontent/asx.asp Windows Media metafile] - [DeadLink]
  • CVS . . . . 2 matches
         버전 관리 프로그램 몇가지 : IBM의 CLEAR/CASTER, AT&T의 SCCS, CMU(카네기 멜론 대학)의 SDC, DEC의 CMS, IBM Rational의 {{{~cpp ClearCase}}}, MS의 {{{~cpp Visual SourceSafe}}}, [Perforce], SubVersion, AlianBrain
         돈이 남아 도는 프로젝트 경우 {{{~cpp ClearCase}}}를 추천하고, 오픈 소스는 돈안드는 CVS,SubVersion 을 추천하고, 게임업체들은 적절한 가격과 성능인 AlianBrain을 추천한다. Visual SourceSafe는 쓰지 말라, MS와 함께 개발한 적이 있는데 MS내에서도 자체 버전관리 툴을 이용한다.
  • Class/2006Fall . . . . 2 matches
          * Start writing script after 4 Nov.
          * [http://cafe24.daum.net/causkier 스키 강의 카페]
  • CppUnit . . . . 2 matches
         #include "stdafx.h" // MFC 인 경우.
          * 초기 준비할때 삽질하는 경우가 많다. -_-; CppUnit 의 경우는 헤더화일들의 include 순서들이 중요하다. 그리고 MFC 의 경우는 stdafx.h 를 각각의 화일들마다 include 해줘야 한다. (API에서 CppUnit 는 어떨지 궁금해진다.)
  • DevPartner . . . . 2 matches
         [http://cafe.daum.net/devpartner DevPartnerDaumCafe]
  • DevelopmentinWindows/APIExample . . . . 2 matches
         #include "afxres.h"
         #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_KOR)
          "#include ""afxres.h""rn"
  • EffectiveC++ . . . . 2 matches
         scaf/printf -> cin/cout[[BR]]
         // the Base part of a Derived object is unaffected by this assignment operator.
  • Favorite . . . . 2 matches
         [http://cafe.daum.net/goMS 대학원준비카페(다음)]
         [http://jeppy.cafe24.com 종필이형 개인위키]
  • Gof/Singleton . . . . 2 matches
         #include <afxtempl.h>
         #include "stdafx.h"
  • GridComputing . . . . 2 matches
          * [http://gridcafe.web.cern.ch/gridcafe/animations.html Flash를 이용한 쉬운 그리드 설명]
  • GuiTestingWithMfc . . . . 2 matches
         #include "stdafx.h"
          //{{AFX_MSG_MAP(CGuiTestingOneApp)
          //}}AFX_MSG
          AfxEnableControlContainer();
         #ifdef _AFXDLL
         #include "stdafx.h" // resource, mfc 를 이용할 수 있다.
          AfxEnableControlContainer();
         #ifdef _AFXDLL
  • HowToStudyXp . . . . 2 matches
          * ["SoftwareCraftsmanship"] (Pete McBreen) : 새로운 프로그래머상
         이게 힘들면 같이 스터디를 하는 방법이 있습니다(스터디 그룹에 관한 패턴 KH도 참고하시길. http://www.industriallogic.com/papers/khdraft.pdf). 이 때 같이 책을 공부하거나 하는 것은 시간 낭비가 많습니다. 차라리 공부는 미리 다 해오고 만나서 토론을 하거나 아니면 직접 실험을 해보는 것이 훨씬 좋습니다 -- 두사람 당 한대의 컴퓨터와 커대란 화이트 보드를 옆에 두고 말이죠. 제 경우 스터디 팀과 함께 저녁 시간마다 가상 XP 프로젝트를 많이 진행했고, 짤막짤막하게 프로그래밍 세션도 많이 가졌습니다.
  • InterMap . . . . 2 matches
         Nappingin http://nappingin.cafe24.com/wiki/wiki.php/
         PurePond http://purepond.cafe24.com/wiki/moin.cgi/ # 임인택의 개인위키
  • IpscLoadBalancing . . . . 2 matches
         June Kim <juneaftn@hanmail.net>"""
         June Kim <juneaftn@hanmail.net>
  • LUA_1 . . . . 2 matches
         루아의 공식 사이트는 http://www.lua.org/ 입니다. 하지막 MS-Windows 환경에서 루아를 시작하고 싶으시다면 http://code.google.com/p/luaforwindows/ 에서 루아 프로그램을 다운 받으실 수 있습니다. 우선 MS-Windows 환경이라고 가정하고 앞서 말한 사이트의 Download 페이지에서 LuaForWindows_v5.1.4-45.exe 를 다운 받습니다. 나중에는 버전명이 바뀐 바이너리 파일이겠죠. 이 파일을 다운로드 받아서 설치하면 시작>Programs>Lua>Lua (Command Line) 를 찾아 보실 수 있습니다. 해당 프로그램을 실행하면 Command 화면에 ">" 와 같은 입력 프롬프트를 확인하실 수 있습니다. 그럼 간단히 Hello world를 출력해 볼까요?
          그리고 세번째는 많은 게임의 스크립트 언어로 검증이 되었다는 점입니다. 대표적으로 World of Warcraft(WOW)가 있겠죠. 많은 사람들이 루아를 WOW을 통해서 알게 되었죠. 간략하게 루아의 특징에 대해서 알아 보았습니다. 좀 더 자세한 루아의 역사는 http://en.wikipedia.org/wiki/Lua_(programming_language) 에서 확인할 수 있습니다. 한글 위키 페이지가 내용이 좀 부족하네요.
  • MatrixAndQuaternionsFaq . . . . 2 matches
          After raw multiplication, each outward normal will no longer be
          normalised and consequently will affect other calculations such as
          M = ----- . | -(DI-FG) AI-GC -(AF-DC) |
          correctly. The Y-axis is also rotated correctly. However, after
          M = | -BDE+AF -BDF+AE -BC |
          M = | -BDE+AF BDF+AE -BC 0 |
          M = | -BDE+AF BDF+AE -BC 0 |
  • MoinMoinBugs . . . . 2 matches
         And as a fun sidenote, the UserPreferences cookie doesn't seem to work. The cookie is in my ~/.netscape/cookies file still. My EfnetCeeWiki and XmlWiki cookies are duplicated!? It is kind of like the bug you found when I, ChristianSunesson, tried this feature with netscape just after you deployed it.
          * Hmmm, that '''is''' so. :) Take a look at the message at the top of the diff page after clicking on "updated", it'll often show text like "spanning x versions". You need the current CVS version for that, though.
  • MoinMoinFaq . . . . 2 matches
         then yes. Just put your name or email address after your comment. It is
          1. Cut&paste the text into the edit box of that page, after clicking "{{{~cpp EditPage}}}".
  • MoinMoinMailingLists . . . . 2 matches
          Talk about ''using'' MoinMoin (very low-traffic).
          Talk about MoinMoin development, bugs, new features, etc. (low-traffic)
  • MoniWiki/HotKeys . . . . 2 matches
          ||R(not Safari)||action=show ||Refresh||
          ||Q, S, R(Safari only)[[BR]]또는 F3(Firefox only)|| ||[[Icon(search)]] FindPage ||
  • MoreEffectiveC++/Efficiency . . . . 2 matches
         예를들어서 iostream과 stdio 라이브러리를 생각해 보자. 둘다 모두 C++프로그래머에게 유효하다. iostream 라이브러리는 C에 비해 유리한 몇가지의 이점이 있다. 예를들어서 iostream 라이브러리는 형 안정적이고(type-safe), 더 확장성 있다. 그렇지만 효율의 관점에서라면 iostream라이브러리는 stdio와 반대로 보통 더 떨어진다. 왜냐하면 stdio는 일반적으로 oostream 보다 더 작고 더 빠르게 실행되는 결과물을 산출해 내기 때문이다.
         그렇지만 operator<<는 형안정(type-safe)이고 확장성(extensible)하다 그리고 printf는 그렇지 못하다.
  • MoreEffectiveC++/Miscellany . . . . 2 matches
         == Item 33: Make non-leaf classes abstract. ==
         아직 일반적인 규칙이 남아 있다.:non-leaf 클래스가 추상화 되어야 한다. 당신은 아마도 외부의 라이브러리를 사용할때, 묶어 줄만한 규칙이 필요할 것이다. 하지만 우리가 다루어야 하는 코드에서, 외부 라이브러리와 가까워 진다는 것은 신뢰성, 내구성, 이해력, 확장성에서 것과 떨어지는 것을 야기한다.
  • MoreMFC . . . . 2 matches
          afx_msg void OnPaint ();
         #include <afxwin.h>
  • NUnit/C++예제 . . . . 2 matches
         #include "stdafx.h"
         #include "stdafx.h"
  • Plugin/Chrome/네이버사전 . . . . 2 matches
          "safe_search=1&" + // 1 is "safe"
  • PrettyPrintXslt . . . . 2 matches
          select="substring-after($value,$from)" />
          select="substring-after($text,'
  • ProgrammingPearls/Column5 . . . . 2 matches
          * 발판을 마련하자.(Build scaffolding.)
          * Scaffolding
  • PyUnit . . . . 2 matches
          'wrong size after resize'
          assert self.wdiget.size() == (100,150), 'wrong size after resize'
  • PythonThreadProgramming . . . . 2 matches
          print string," Now Sleeping after Lock acquired for ",sleeptime
          * 위 소스에서 why 부분,, 왜 sleep을 넣었을까?(만약 저것을 빼면 한쓰레드가 자원을 독점하게 된다) -> Python 은 threadsafe 하지 않다. Python에서는 자바처럼 스레드가 문법의 중요한 위치를 차지하고 있지 않다. 그것보다 이식 가능성을 더 중요하게 생각한다.
  • TFP예제/WikiPageGather . . . . 2 matches
          safe = string.letters + string.digits
          if c not in safe:
  • UML . . . . 2 matches
         This diagram describes the structure of a simple Restaurant System. UML shows [[Inheritance_(computer_science)|Inheritance]] relationships with a [[triangle]]; and containers with [[rhombus|diamond shape]]. Additionally, the role of the relationship may be specified as well as the cardinality. The Restaurant System has any number of Food dishes(*), with one Kitchen(1), a Dining Area(contains), and any number of staff(*). All of these objects are associated to one Restaurant.
         At the same time, UML is often considered to have become too bloated, and fine-grained in many aspects. Details which are best captured in source code are attempted to be captured using UML notation. The [[80-20 rule]] can be safely applied to UML: a small part of UML is adequate for most of the modeling needs, while many aspects of UML cater to some specialized or esoteric usages.
  • UsenetMacro . . . . 2 matches
         [[Usenet(http://groups-beta.google.com/group/comp.unix.programmer/browse_thread/thread/d302919d5af2b802)]]
         [[Usenet(http://groups-beta.google.com/group/comp.unix.programmer/browse_thread/thread/d302919d5af2b802)]]
  • WikiSandBox . . . . 2 matches
          WikiSandBox ddsf sdaf sadf sdf saf sda sdf sdf sdf sdf sfd sdf sdf sd fsdf sd sdf sda sdf sd fs sadf sdf sd sdf sdf sdf sdf df sadf ww w w w w w w w w w w w w w w w w ddodo
  • WikiTextFormattingTestPage . . . . 2 matches
         I inserted 8 blank lines after this, to see if whitespace is "contracted".
         Here is a .gif URL for testing: http''''''://c2.com/sig/wiki.gif (This link disabled by 6 single quotes after the http.)
  • ZPBoard/PHPStudy/MySQL . . . . 2 matches
          * mysql_connect, mysql_close, mysql_query, mysql_affected_rows, mysql_num_rows, mysql_fetch_row, mysql_fetch_array
          * mysql_affected_rows
  • ZPHomePage . . . . 2 matches
          * http://cafe.naver.com/rina7982.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=750 - 웹안전색상
         [http://mozilla.or.kr MozillaFirefox] 에서도 무리없이 브라우징 할 수 있도록 해주세요. 간단해요. 표준 HTML 만 사용하면 됩니다. - [임인택]
  • Zeropage/Staff/회의_2006_01_19 . . . . 2 matches
          = [Zeropage/Staff/회의_2006_01_19] =
         [Zeropage/Staff/회의]
  • Zeropage/Staff/회의_2006_02_13 . . . . 2 matches
         = Zeropage/Staff/회의_2006_02_13 =
         [Zeropage/Staff/회의]
  • Zeropage/Staff/회의_2006_03_04 . . . . 2 matches
         = Zeropage/Staff/회의_2006_03_04 =
         [ZeroPage/Staff]
  • [Lovely]boy^_^/영작교정 . . . . 2 matches
          * [[HTML(<STRIKE>)]] I was obliged to leave after such a unpleasantly battle.[[HTML(</STRIKE>)]]
          * I was obliged to leave after such an unplesant battle.
  • html5/communicationAPI . . . . 2 matches
          * [HTML5 스터디 카페] http://cafe.naver.com/webappdev.cafe
  • html5/others-api . . . . 2 matches
          * http://cafe.naver.com/tonkjsp.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=1727
  • html5/richtext-edit . . . . 2 matches
         http://cafe.naver.com/webappdev.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=91
  • html5/web-storage . . . . 2 matches
          * http://cafe.naver.com/webappdev/124
          * http://cafe.naver.com/webappdev/125
  • html5/web-workers . . . . 2 matches
         http://cafe.naver.com/webappdev.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=141&social=1
  • 데블스캠프2005/java . . . . 2 matches
         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.
  • 데블스캠프2009/목요일/연습문제/MFC/김태욱 . . . . 2 matches
         #include "stdafx.h"
          //{{AFX_DATA(CAboutDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CAboutDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CAboutDlg)
          //}}AFX_MSG
          //{{AFX_DATA_INIT(CAboutDlg)
          //}}AFX_DATA_INIT
          //{{AFX_DATA_MAP(CAboutDlg)
          //}}AFX_DATA_MAP
          //{{AFX_MSG_MAP(CAboutDlg)
          //}}AFX_MSG_MAP
          //{{AFX_DATA_INIT(CZxczxcDlg)
          //}}AFX_DATA_INIT
          m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
          //{{AFX_DATA_MAP(CZxczxcDlg)
          //}}AFX_DATA_MAP
          //{{AFX_MSG_MAP(CZxczxcDlg)
          //}}AFX_MSG_MAP
  • 데블스캠프2009/목요일/연습문제/MFC/박준호 . . . . 2 matches
         #include "stdafx.h"
          //{{AFX_DATA(CAboutDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CAboutDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CAboutDlg)
          //}}AFX_MSG
          //{{AFX_DATA_INIT(CAboutDlg)
          //}}AFX_DATA_INIT
          //{{AFX_DATA_MAP(CAboutDlg)
          //}}AFX_DATA_MAP
          //{{AFX_MSG_MAP(CAboutDlg)
          //}}AFX_MSG_MAP
          //{{AFX_DATA_INIT(CTestAPPDlg)
          //}}AFX_DATA_INIT
          m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
          //{{AFX_DATA_MAP(CTestAPPDlg)
          //}}AFX_DATA_MAP
          //{{AFX_MSG_MAP(CTestAPPDlg)
          //}}AFX_MSG_MAP
  • 데블스캠프2009/목요일/연습문제/MFC/정종록 . . . . 2 matches
         #include "stdafx.h"
          //{{AFX_DATA(CAboutDlg)
          //}}AFX_DATA
          //{{AFX_VIRTUAL(CAboutDlg)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CAboutDlg)
          //}}AFX_MSG
          //{{AFX_DATA_INIT(CAboutDlg)
          //}}AFX_DATA_INIT
          //{{AFX_DATA_MAP(CAboutDlg)
          //}}AFX_DATA_MAP
         //{{AFX_MSG_MAP(CAboutDlg)
         //}}AFX_MSG_MAP
          //{{AFX_DATA_INIT(CTestDlg)
          //}}AFX_DATA_INIT
          m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
          //{{AFX_DATA_MAP(CTestDlg)
          //}}AFX_DATA_MAP
         //{{AFX_MSG_MAP(CTestDlg)
         //}}AFX_MSG_MAP
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/변형진 . . . . 2 matches
          * [wiki:데블스캠프2010/다섯째날/ObjectCraft ObjectCraft]
  • 데블스캠프2010/다섯째날/ObjectCraft/미션2/강소현 . . . . 2 matches
         Describe 데블스캠프2010/다섯째날/ObjectCraft/미션2/강소현 here
         == after ==
  • 데블스캠프2010/회의록 . . . . 2 matches
         == Object Craft (강사 : [변형진]) ==
          * Object Craft 후속 강의를 연다. -[변형진] 학우
  • 레밍즈프로젝트/프로토타입/파일스트림 . . . . 2 matches
         || Open || Safely opens a file with an error-testing option. ||
         {{{#include "stdafx.h"
  • 몸짱프로젝트/BinarySearchTree . . . . 2 matches
          === After Rafactoring ===
          if (ptr->left == NULL && ptr->right == NULL) // leaf node
  • 박치하 . . . . 2 matches
         === Old Trafford ===
         http://pds15.cafe.daum.net/download.php?grpid=qkLj&fldid=6lGP&dataid=2&fileid=1
  • 새싹교실/2012/Dazed&Confused . . . . 2 matches
         [http://farm8.staticflickr.com/7059/6896354220_8e441aaf97_m.jpg http://farm8.staticflickr.com/7059/6896354220_8e441aaf97_m.jpg] [http://farm8.staticflickr.com/7075/7042450571_199ccd6d41_m.jpg http://farm8.staticflickr.com/7075/7042450571_199ccd6d41_m.jpg]
  • 새싹교실/2012/해보자 . . . . 2 matches
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
         printf("after swap\nnum1: %d, num2: %d\n",num1, num2);
  • 스터디그룹패턴언어 . . . . 2 matches
          * [안전한장소패턴](SafePlacePattern)
          * AfterHoursPattern
         원문 : http://www.industriallogic.com/papers/khdraft.pdf
  • 안녕하세요 . . . . 2 matches
         === Old Trafford ===
         http://pds15.cafe.daum.net/download.php?grpid=qkLj&fldid=6lGP&dataid=4&fileid=1
  • 위키설명회2005 . . . . 2 matches
         <p href = "http://cafe.naver.com/gosok.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=135">ZDnet기사</p>
  • 정규표현식/스터디/문자집합으로찾기/예제 . . . . 2 matches
         #d0afo3.ewe
         #aed9af.dfasf
  • 정모/2006.1.5 . . . . 2 matches
         == Staff ==
         [Zeropage/Staff]
  • 정모/2011.5.2 . . . . 2 matches
         == Staff 모집 ==
          * 정모는 제 시간 전에 갔으나 저녁 못 먹었다고 카벅 ㅊㅁㅊㅁ하러 갔다온 덕분에 앞부분을 살짜쿵 놓쳐버렸습니다. google->IBM->삼성으로 이어지는 각종 홍보가 많아서 하나라도 참여해보고 싶지만 이 상태에서 일을 추가했다간 이도저도 아닌 상태가 되기때문에 하지 못하는게 정말 아쉽더라구요 ㅠ 11월에 정통부장 끝나고 보죠. 그리고 11학번, 10학번이 staff로 참여했으면 하는게 제 개인적인 생각입니닼(특히 박레기) 그리고 지원이 누나 OMS에서 진로에 대해서 꽤 알아가는게 많았구요, 어제 회계와사회 시간에 박인선 교수님이 비슷한 얘기 또 해서 놀랐습니다. 그나저나 학생회를 한게 꽤 큰 문제더군요. 뭣 좀 할라치면 과 행사하는거 다 참여해야되니;;; '''프로그래밍 경진대회 준비하기 힘들어요. 참가 좀 많이 해주세요.''' - [윤종하]
  • 2005Fall수업 . . . . 1 match
         [http://aekae.cafe24.com/wiki/project 프로젝트 팀 페이지]
  • 2010JavaScript . . . . 1 match
         == after that.. ==
  • 2011년독서모임 . . . . 1 match
          * 실제로 앨리스 삽화를 보면 무시무시하게 생겼지요 ㄲㄲㄲ [http://cafefiles.naver.net/20110228_300/bkm0726_1298870052866hSeq0_jpg/%C0%DA%B9%D9%BF%F6%C5%A9_bkm0726.jpg 자바워크 그림] 다만 영어단어로는 Jabberwock이지만요 ㅎㅎ 발음이 동의어라 그런가 무시무시한 것도 같..ㅠㅠ - [강소현]
  • 2학기파이선스터디 . . . . 1 match
          http://turing.cafe24.com - 초보를 위한 파이선 설명
  • 3N+1Problem/Leonardong . . . . 1 match
          def getMaximumCycleLength(self, aFrom, aTo):
          for i in range( aFrom, aTo + 1):
          def getMaximumCycleLen(self, aFrom, aTo):
          for i in range( aFrom, aTo + 1):
         # 45m after tuning
  • 5인용C++스터디/다이얼로그박스 . . . . 1 match
         [http://iruril.cafe24.com/iruril/study/modal/Modal.htm]
  • 5인용C++스터디/멀티쓰레드 . . . . 1 match
         [http://iruril.cafe24.com/iruril/study/thread/thread%20syn.html]
  • 5인용C++스터디/버튼과체크박스 . . . . 1 match
         //{{AFX_MSG(CMy111View)
         afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
          //{{AFX_MSG_MAP(CMy111View)
  • 5인용C++스터디/에디트박스와콤보박스 . . . . 1 match
          //{{AFX_MSG_MAP((CCreateEditView)
          //{{AFX_MSG(CCreateEditView)
          //}}AFX_MSG
          afx_msg void OnChangeEdit1();
          AfxGetMainWnd()->SetWindowText(str);
  • ACE . . . . 1 match
          * http://imays.pe.kr:41414/ - 스튜디오 플로리스 배현직씨 홈페이지 (cafe9, blitz1941 서버 프로젝트 맡으신 분)
  • ACM_ICPC/PrepareAsiaRegionalContest . . . . 1 match
          ==== Solution of Problem G. Safe ====
  • APlusProject . . . . 1 match
         Upload:APP_MeetingRecord_Draft.zip - 회의록 초안입니다.
  • Ajax . . . . 1 match
         Like DHTML, LAMP, or SPA, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together. In fact, derivative/composite technologies based substantially upon Ajax, such as AFLAX are already appearing.
         Ajax applications use web browsers that support the above technologies as a platform to run on. Browsers that support these technologies include Mozilla Firefox, Microsoft Internet Explorer, Opera, Konqueror and Apple Safari.
         웹 상에선 요새 한참 인기인 중인 기술. RichInternetApplication 은 Flash 쪽이 통일할 줄 알았는데 (MacromediaFlex 를 보았던 관계로) 예상을 깨게 하는데 큰 공로를 세운 기술.;
         MacromediaFlex 가 인기를 끌지 못한 이유? 글쌔. 서버 한대당 2만달러가 넘는 비싼 라이센스 때문이 아닐까. -_a -[1002]
  • Android/WallpaperChanger . . . . 1 match
          Log.e("MyService", "run after destory");
  • BigBang . . . . 1 match
          * [http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3485.pdf c++11(아마도?) Working Draft]의 7.5절 linkage specification 참고
  • Bioinformatics . . . . 1 match
         Established in 1988 as a national resource for molecular biology information, NCBI creates public databases, conducts research in computational biology, develops software tools for analyzing genome data, and disseminates biomedical information - all for the better understanding of molecular processes affecting human health and disease.
  • C++/SmartPointer . . . . 1 match
         // CA will be freed after CB is freed, and vise versa.
  • CC2호 . . . . 1 match
         [http://myhome.hanafos.com/~kukdas/index.html C가 있는 홈페이지]
  • CProgramming . . . . 1 match
         [http://myhome.hanafos.com/~kukdas/index.html C가 있는 홈페이지]
  • CVS/길동씨의CVS사용기ForRemote . . . . 1 match
          * 수많은 엔터프라이즈 툴들이 CVS를 지원합니다. (Rational Rose, JBuilder, Ecilpse, IntelliJ, Delphi etc) 이들 툴로서 gui의 접근도 가능하고, 컴퓨터에 설치하신 WinCVS로도 가능합니다. 하지만 그런 툴들도 모두 이러한 과정을 거치는것을 단축하고 편의성을 제공합니다. (WinCVS 역시) Visual Studio는 자사의 Source Safe외에는 기본 지원을 하지 않는데, 플러그인을 찾게되면, 링크 혹은 아시면 링크 걸어 주세요. --["상민"]
  • CategoryHomepage . . . . 1 match
         Note that such pages are "owned" by the respective person, and should not be edited by others, except to leave a message to that person. To do so, just append your message to the page, after four dashes like so:
  • CleanCodeWithPairProgramming . . . . 1 match
          1. mysql 시작 : /usr/bin/mysqld_safe --user=mysql&
  • CompleteTreeLabeling . . . . 1 match
         모든 잎(leaf)의 깊이가 같고 모든 내부 노드의 차수(degree)가 k인(즉 분기계수(branching factor)가 k인) 트리를 k진 완전 트리(complete k-ary tree)라고 한다. 그런 트리에 대해서는 노드의 개수를 쉽게 결정할 수 있다.
  • DPSCChapter1 . . . . 1 match
         Learning an object-oriented language after programming in another paradigm, such as the traditional procedural style, is difficult. Learning to program and compose application in Smalltalk requires a complex set of new skills and new ways of thinking about problems(e.g Rosson & Carroll, 1990; Singley, & Alpert, 1991). Climbing the "Smalltalk Mountain" learning curve is cetainly nontrivial. Once you have reached that plateau where you feel comfortable building simple Smalltalk applications, there is still a significant distance to the expert peak.
  • DataStructure/Tree . . . . 1 match
          * 만약 x가 leaf(맨 끝 노드) - 그냥 지우면 되지 뭐..--;
  • DirectDraw/Example . . . . 1 match
         #include "stdafx.h"
          SAFE_DELETE(suf1);
          SAFE_DELETE(suf2);
          SAFE_DELETE(disp);
  • DoubleDispatch . . . . 1 match
         Float Float::addFloat(const Float& aFloat)
          return Float(this + aFloat);
         Float Integer::addFloat(const Float& aFloat)
          return asFloat().addFloat(aFloat); // Integer를 Float로 바꿔준 다음 계산
         ["MoreEffectiveC++"] 에서 [http://zeropage.org/wiki/MoreEffectiveC_2b_2b_2fTechniques3of3#head-a44e882d268553b0c56571fba06bdaf06618f2d0 Item31] 에서도 언급됨.
  • Eclipse . . . . 1 match
          * Eclipse 2.2 Draft 에서 Java like file 의 지원이 있다. JSP 따위. 그런데 완료 시점은 03 November .. JDT 공식 지원은 너무 느리네.. -- NeoCoin
  • EffectiveSTL/Container . . . . 1 match
          * 그 외에 Non Standard라고 써있는게 있긴 한데, 잘 안쓰는 것 같다. 혹시라도 나중에 중요성이 부각되면 다시 봐야겠다. 딴게 급하니 일단.. AfterCheck
         ifstream dataFile("ints.dat");
         list<int> data(ifstream_iterator<int>(dataFile),ifstream_iterator<int>()); // 이런 방법도 있군. 난 맨날 돌려가면서 넣었는데..--;
         ifstream dataFile("ints.dat");
         ifstream_iterator<int> dataBegin(dataFile);
         = Item12. Have realistic expectations about the thread safety of STL containers. =
  • EightQueenProblem/lasy0901 . . . . 1 match
         두번째 프로그램은 ... 이상하게 컴파일이 안되더군요.. 알고보니 #include <stdafx.h> 을 안 넣어서 (VC6.0) 낭패-_-a
  • Emacs . . . . 1 match
         (eval-after-load "color-theme"
  • EnglishSpeaking/2012년스터디 . . . . 1 match
          * We listened audio file and read part of script by taking role.(And after reading script once, we also change our role and read script again.)
  • EnglishSpeaking/TheSimpsons/S01E01 . . . . 1 match
          * Payroll Staff
  • ExtremeBear/OdeloProject . . . . 1 match
          * 오늘은 XP after 가아닌 XP before 정도 였다.
  • FoundationOfUNIX . . . . 1 match
          * afa df asdf 막 친다음 Ctrl +U, Ctrl + h 해보기
  • HighResolutionTimer . . . . 1 match
         The '''QueryPerformanceCounter''' function retrieves the current value of the high-resolution performance counter (if one exists on the system). By calling this function at the beginning and end of a section of code, an application essentially uses the counter as a high-resolution timer. For example, suppose that '''QueryPerformanceFrequency''' indicates that the frequency of the high-resolution performance counter is 50,000 counts per second. If the application calls '''QueryPerformanceCounter''' immediately before and immediately after the section of code to be timed, the counter values might be 1500 counts and 3500 counts, respectively. These values would indicate that .04 seconds (2000 counts) elapsed while the code executed.
  • HowToStudyDesignPatterns . . . . 1 match
         이런 식의 "사례 중심"의 공부를 위해서는 스터디 그룹을 조직하는 것이 좋습니다. 혼자 공부를 하건, 그룹으로 하건 조슈아 커리프스키의 유명한 A Learning Guide To Design Patterns (http://www.industriallogic.com/papers/learning.html'''''')을 꼭 참고하세요. 그리고 스터디 그룹을 효과적으로 꾸려 나가는 데에는 스터디 그룹의 패턴 언어를 서술한 Knowledge Hydrant (http://www.industriallogic.com/papers/khdraft.pdf'''''') 를 참고하면 많은 도움이 될 겁니다 -- 이 문서는 뭐든지 간에 그룹 스터디를 한다면 적용할 수 있습니다.
  • IDL . . . . 1 match
         물론, 인터페이스를 정의하는 방법이 IDL 만 있는 것은 아니다. [Visibroker] 의 경우 [Caffeine] 이라는 것을 이용하면 IDL 을 사용하지 않아도 되며, Java 의 RMI 나 RMI-IIOP 를 이용해면 IDL 을 몰라도 인터페이스를 정의할 수 있다. 하지만, IDL 은 OMG에서 규정하고 있는 인터페이스 정의 언어의 표준이고 개발자가 익히기에 어렵지 않은 만큼 CORBA 프로그램을 할 때는 꼭 IDL 을 사용하도록 하자.
  • JihwanPark . . . . 1 match
          * home : http://bosoa.cafe24.com
  • JosephYoder방한번개모임 . . . . 1 match
          * [https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=1pibLA94VQ8Z1cckW8IOsedbQ9joDuCwwafH93jHDgv3l-ASNn_QW2rGhxrWT&hl=en_US Refactoring Testing and Patterns]
  • JuNe . . . . 1 match
         juneaftn앳hanmail닷net
  • Kongulo . . . . 1 match
          '"joi@google.com,admin@192.168.250.1,snafu@slashdot.org". '
  • LawOfDemeter . . . . 1 match
         use queries from within a debugger without affecting the process under test.
  • LearningToDrive . . . . 1 match
         I can remeber clearly the day I first began learning to drive. My mother and I were driving up Interstate 5 near Chico, California, a horizon. My mom had me reach over from the passenger seat and hold the steering wheel. She let me get the feel of how motion of the wheel affected the dirction of the car. Then she told me, "Here's how you drive. Line the car up in the middle of the lane, straight toward the horizon."
  • Linux/디렉토리용도 . . . . 1 match
         draft는 웹상의 내용을 기본으로 내가 추가할 만한 부분을 추가함. (그런게 있을지나 모르겠네.. 너무 좋은 내용이 많다)
  • MFC/CollectionClass . . . . 1 match
         = type-safe collection class =
          || {{{~cpp InsertAfter(POSITION, ObjectType)}}} || 알아서 =.=;; ||
          || {{{~cpp InsertAfter(POSITION, ObjectType)}}} || 알아서 =.=;; ||
  • MFCStudy_2001/MMTimer . . . . 1 match
          CAlcaDlg *pDlg=(CAlcaDlg*)AfxGetMainWnd();
         CAlcaDlg *pDlg = (CAlcaDlg*)AfxGetMainWnd();
          ASSERT(pThis->GetSafeHwnd());
  • MoinMoinNotBugs . . . . 1 match
         ''This issue will be resolved in the course of XML formatting -- after all, XML is much more strict than any browser.''
  • MoniWikiPlugins . . . . 1 match
          * foaf
  • MoniWikiPo . . . . 1 match
         "no trailing white space allowed after tables or titles.<br />\n"
  • MoreEffectiveC++ . . . . 1 match
          * Item 33: Make non-leaf classes abstract. - 유도된 클래스가 없는 상태의 클래스로 추상화 하라.
  • MoreEffectiveC++/C++이 어렵다? . . . . 1 match
          [http://zeropage.org/moin/moin.cgi/MoreEffectiveC_2b_2b_2fEfficiency#head-fe2478216366d160a621a81fa4e3999374008afa Item 24 Virtual 관련], [http://zeropage.org/moin/moin.cgi/MoreEffectiveC_2b_2b_2fMiscellany#head-ce86e4dc6d00b898731fbc35453c2e984aee36b8 Item 32 미래 대비 프로그램에서 String문제]
  • MySQL . . . . 1 match
          * 시작 : safe_mysqld &
  • MySQL/root암호분실시 . . . . 1 match
         shell> safe_mysqld --skip-grant &
  • ObjectOrientedReengineeringPatterns . . . . 1 match
         [1002] 의 경우 Refactoring for understanding 이라는 녀석을 좋아한다. 그래서 가끔 해당 코드를 읽는중 생소한 코드들에 대해 일단 에디터에 복사한뒤, 이를 조금씩 리팩토링을 해본다. 중간중간 주석을 달거나, 이를 다시 refactoring 한다. 가끔 정확한 before-after 의 동작 유지를 무시하고 그냥 실행을 해보기도 한다. - Test 까진 안달아도, 적절하게 약간의 모듈을 추출해서 쓸 수 있었고, 코드를 이해하는데도 도움을 주었다. 이전의 모인모인 코드를 읽던중에 실천해봄.
  • OpenCamp/첫번째 . . . . 1 match
          * [https://trello-attachments.s3.amazonaws.com/504f7c6ae6f809262cf15522/5050dc29719d8029024cca6f/f04b35485152d4ac19e1392e2af55d89/forConference.html 다운로드]
  • PPProject/Colume2Exercises . . . . 1 match
          cout << "after shifting : " << roll(str, n, i) << endl;
  • PairProgramming토론 . . . . 1 match
         또한, 모든 분야에 있어 전문가는 존재하지 않습니다. 그렇다고 해서, 자신의 전문 영역만 일을 하면 그 프로젝트는 좌초하기 쉽습니다. (이 말이 이해가 되지 않으면 Pete McBreen의 ''Software Craftsmanship''을 읽어보시길) 그 사람이 빠져나가 버리면 아무도 그 사람의 자리를 매꿔주기가 어렵기 때문입니다. 따라서 PairProgramming을 통해 지식 공유와 팀 빌딩을 합니다. 서로 배우는 것, 이것이 PairProgramming의 핵심입니다. 그런데 "배운다는 것"은 꼭 실력의 불균형 상태에서 상대적으로 "적게 아는 사람" 쪽에서만 발생하는 것이 아닙니다.
  • PersonalHistory . . . . 1 match
          * [http://jeppy.cafe24.com/cap 세계문화체험단] - 20050630~20050717
  • ProgrammingLanguageClass . . . . 1 match
         컴파일러를 독학하려는 사람들은 [http://no-smok.net/nsmk/_c4_c4_c6_c4_c0_cf_b7_af_c3_df_c3_b5_bc_ad_c0_fb 컴파일러추천서적] 참고.
  • ProgrammingLanguageClass/Report2002_2 . . . . 1 match
         No report will be accepted after due date.
  • ProjectPrometheus/CookBook . . . . 1 match
         Java 에서는 HttpURLConnection 을 이용한다. 관련 코드는 http://www.javafaq.nu/tips/servlets/index.shtml 를 참조.
  • QualityAttributes . . . . 1 match
          * Safety
  • RSS . . . . 1 match
         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]
  • RandomWalk/임인택 . . . . 1 match
          // accept after connection was estabilished to previous host.
  • RedThon . . . . 1 match
          [http://turing.cafe24.com 왕초보 파이썬] 『열형강의 파이썬』 저자 이강성씨가 만든 파이썬 기초를 가르쳐주는 페이지입니다. 간단하게 따라해보세요.^^ --[Leonardong]
  • Refactoring/RefactoringReuse,andReality . . . . 1 match
         === Refactoring Safely ===
  • Refactoring/SimplifyingConditionalExpressions . . . . 1 match
          if (data.before( SUMMER_START ) || data.after(SUMMER_END) )
          case AFRICAN:
         │European| │ │African │ │Norwegian Blue│
  • SubVersion . . . . 1 match
         윈도우즈에서 이용을 해보려고 하는데.. 이래저래 애로사항이 많군요..ㅠㅠ, 버전관리도구는.. VisualSourceSafe 말고는 못쓰는건가... ㅠㅠ - [임인택]
  • TeachYourselfProgrammingInTenYears . . . . 1 match
          pubdate: after 1992 and title: days and
  • TheJavaMan/테트리스 . . . . 1 match
         [http://iruril.cafe24.com/iruril/Tetris/Tetris_SM.html]
  • TopicMap . . . . 1 match
         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.
  • ToyProblems . . . . 1 match
          * The Art and Craft of Problem Solving
  • Trac . . . . 1 match
         [http://neocoin.cafe24.com/cs/moin.cgi/Trac 아파치 없이, 설치 방법과 운용 방법]
  • VMWare/OSImplementationTest . . . . 1 match
         [http://neri.cafe24.com/menu/bbs/view.php?id=kb&page=1&sn1=&divpage=1&sn=off&ss=on&sc=on&keyword=x86&select_arrange=headnum&desc=asc&no=264 출처보기]
  • VonNeumannAirport . . . . 1 match
          * load 를 발생시키는 예를 Passenger 뿐만 아니라 다른 여러가지를 둔다. ex) 여행객 가방, 컨테이너의 경우 traffic load 2, 4 를 발생시킨다.
  • WhatToExpectFromDesignPatterns . . . . 1 match
         DesignPatterns capture many of the structures that result from refactoring. Using these patterns early in the life of a design prevents later refactorings. But even if you don't see how to apply a pattern until after you've built your system, the pattern can still show you how to change it. Design patterns thus provide targets for your refactorings.
  • WikiWikiWeb . . . . 1 match
          * [http://news.mpr.org/programs/futuretense/daily_rafiles/20011220.ram Ward Cunningham Radio Interview]
  • WinCVS . . . . 1 match
          4. 확인을 하면 파일들이 편집할 공간으로 나온다. sourcesafe의 체크인 정도로 생각하면 된다.
  • WordPress . . . . 1 match
         [http://sapius.dnip.net/wp three leaf clover]
  • ZeroPageServer . . . . 1 match
          * cafe24에서 호스팅 받고 있는 서버
  • ZeroPageServer/BlockingUninvitedGuests . . . . 1 match
          - [임인택]의 [http://purepond.cafe24.com/ 개인위키]도 ZeroPage 에서와 같은 문제점을 (그것도 더 심하게) 겪었는데 아파치의 보안기능 (.htaccess 파일 이용)을 적용해봐도 결과는 마찬가지였다. 누군가의 장난이거나 검색엔진(+사용자)의 무지에서 오는 문제인것이 확실하였는데. 결국 NoSmoke:노스모크모인모인 의 '''등록한 사용자만 글을 쓸수 있게 하는''' 기능을 이용하여 이 문제를 해결하였다. 여담으로.. 쓰레기 페이지를 손수 지우느라 엄청 고생함...-_-;;
  • ZeroPageServer/계정신청상황2 . . . . 1 match
         || 김창준 || june || 93 || 1993 ||z || juneaftn 엣 하나포스 || zr ||
  • [Lovely]boy^_^/Diary/2-2-10 . . . . 1 match
          * The XB Project starts really. A customer is Jae-dong. So we determine to programm network othelo, that Jae-dong's preparation. At first, we start hopefully, but..--; after all integration is failed. In our opinion, we start beginner's mind. but we learned much, and interested it. And new customer is Hye-sun. Since now, our project begins really. Since tomorrow, during 2 weeks, we'll focus on TDD and pair programming with simple programming.
  • [Lovely]boy^_^/Diary/2-2-15 . . . . 1 match
          * I worry about father's smoking... after my mom was hospitalization, he decreases amount of drinking, but increases amount of smoking.
  • [Lovely]boy^_^/Diary/2-2-9 . . . . 1 match
          * It's a first week after a mid-exams. I desperated at mid-exams, so I decide to study hard.
  • [Lovely]boy^_^/EnglishGrammer/Passive . . . . 1 match
          A. After will / can / must / going to / want to, etc...
          B. After should have / might have / would have / seem to have, etc..
          ex) Mr. Bruno is much better after his operation, but he's still not supposed to do any heavy work.(= his doctors have advised him not to)
  • jQuery . . . . 1 match
          * Internet Explorer, Firefox, Safari, Opera 모두에서 작동
  • jeppy . . . . 1 match
          * homepage : http://jeppy.cafe24.com
  • neocoin/Log . . . . 1 match
          * IS - 11/4 Working Draft 작성 ( text + CD or Floppy)
  • snowflower . . . . 1 match
         ||TrasHCraft||!@#!@$!@#!|| 2005.12 ~ 2006.02 ||
  • 걸스패닉 . . . . 1 match
         [http://iruril.cafe24.com/iruril/ez2000/ez2000/ezboard.cgi?db=GirlsPanic]
  • 검색에이전시_temp . . . . 1 match
          * [http://pylucene.osafoundation.org/ 파이루씬] 파이썬으로 구현된 검색 엔진
  • 고슴도치의 사진 마을처음화면 . . . . 1 match
         [http://www.cs.cmu.edu/afs/cs.cmu.edu/user/avrim/www/Randalgs97/home.html Randomized Algoritms]
  • 구자겸 . . . . 1 match
         == Deaf 자겸 ==
  • 금고/문보창 . . . . 1 match
         // Safe
  • 기술적인의미에서의ZeroPage . . . . 1 match
         Possibly unimaginable by computer users after the 1980s, the RAM of a computer used to be faster than or as fast as the CPU during the 1970s. Thus it made sense to have few registers and use the main memory as substitutes. Since each memory location within the zero page of a 16-bit address bus computer may be addressed by a single byte, it was faster, in 8-bit data bus machines, to access such a location rather than a non-zero page one.
  • 기억 . . . . 1 match
          i. 감정 : 정의가(affective value)-감정이 극단 적인것이 더 잘기억, 기분 일치(mood congruence)-사람의 성격에 따라 기억 되는 단어, 상태 의존(state dependence)-술취한 사람, 학습 자세
  • 대학원준비 . . . . 1 match
         [http://cafe.daum.net/goMS 대학원 준비 카페(다음)]
  • 데블스캠프2002 . . . . 1 match
          1. ["StarCraft"] - 내가 생각해본 문제.. Class에 대한 이해와 접근에 도움을 주기 위해.. --광민
  • 데블스캠프2006/월요일/연습문제/if-else/성우용 . . . . 1 match
         #include <stdafx.h>
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 1 match
         $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
          echo "Binary-safe Read: ";
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/강소현 . . . . 1 match
         Describe 데블스캠프2010/다섯째날/ObjectCraft/미션1/강소현 here
  • 데블스캠프2010/다섯째날/ObjectCraft/미션1/박재홍 . . . . 1 match
         Describe 데블스캠프2010/다섯째날/ObjectCraft/미션1/박재홍 here
  • 데블스캠프2010/다섯째날/ObjectCraft/미션2/변형진 . . . . 1 match
          * after [REFACTORING]
  • 데블스캠프2010/다섯째날/후기 . . . . 1 match
         = ObjectCraft(강사: 변형진) =
  • 데블스캠프2011/넷째날/Git/권순의 . . . . 1 match
         #include "stdafx.h"
  • 데블스캠프2011/준비 . . . . 1 match
         = Staff =
  • 데블스캠프2011/첫째날/오프닝 . . . . 1 match
          || [송지원] || 16기 예비 졸업생이자 [데블스캠프2011] Staff 입니다 || enochbible || Enoch ||
  • 데블스캠프2012/둘째날/후기 . . . . 1 match
          * [김민재] - APM이 뭔가 했더니 Apache + PHP (perl? python?) + MySQL 인걸 알았을 때의 놀라움 ㅋㅋㅋㅋ 내 컴퓨터에서 준석이 형 페이지에 접속했을 때 정말 신기했습니다. 또 MyAdmin으로 데이터베이스를 직접 만드는 것도 처음 해보았습니다. (cafe24 호스팅에서는 DB 만들기가 안되더라구요..) 오늘 여러모로 신기한 체험을 많이 해 보았습니다.
  • 데블스캠프2013/셋째날/머신러닝 . . . . 1 match
         #include "stdafx.h"
  • 레밍즈프로젝트/이승한 . . . . 1 match
         stdafx에 몽땅 끌어 넣어 놓았던 include들의 상호 참조.
  • 레밍즈프로젝트/프로토타입/STLLIST . . . . 1 match
         || InsertAfter || Inserts a new element after a given position. ||
  • 멘티스 . . . . 1 match
         [http://jeppy.cafe24.com 종필이형 홈피]
  • 문제풀이/1회 . . . . 1 match
         Equivalent to eval(raw_input(prompt)). Warning: This function is not safe from user errors! It expects a valid Python expression as input; if the input is not syntactically valid, a SyntaxError will be raised. Other exceptions may be raised if there is an error during evaluation. (On the other hand, sometimes this is exactly what you need when writing a quick script for expert use.)
  • 방울뱀스터디/GUI . . . . 1 match
         after=button1 # 현재 pack하려는 객체를 button1바로뒤에 만들어 준다.
  • 삼총사CppStudy/Inheritance . . . . 1 match
          당신은 지금 StarCraft라는 게임의 제작자를 맡게 되었다.(가정입니다.-_-유치하더라도 들어주세요.) 먼저 마린과 파이어뱃이라는 유니트가 기획되었다.
  • 새싹교실/2011/A+ . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2011/GGT . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2011/學高 . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2012/개차반 . . . . 1 match
         {{{#include <stdafx.h>
  • 새싹교실/2012/부부동반 . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2012/설명회 . . . . 1 match
          1. World Cafe
  • 새싹교실/2012/세싹 . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2012/아무거나 . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹교실/2012/우리반 . . . . 1 match
          * 참고로 ZeroWiki는 MoniWiki Engine을 사용하며 Google Chrome이나 Mozila Firefox, Safari보다는 Internet Explorer에서 가장 잘 돌아가는 것 같습니다.
  • 새싹배움터05 . . . . 1 match
         [CVS] 나 [VisualSourceSafe] 와 같은 녀석들도 한번 세미나 해봤으면 좋겠습니다. - [톱아보다]
  • 송지원 . . . . 1 match
          * [데블스캠프2011] - Staff로 참여, 월~금 All 참여
  • 알고리즘5주참고자료 . . . . 1 match
         [http://www.cs.cmu.edu/afs/cs.cmu.edu/user/avrim/www/Randalgs97/home.html 관련자료]
  • 오목/휘동, 희경 . . . . 1 match
         #if !defined(AFX_GRIMVIEW_H__A8571F68_AE69_11D7_A974_0001029897CD__INCLUDED_)
         #define AFX_GRIMVIEW_H__A8571F68_AE69_11D7_A974_0001029897CD__INCLUDED_
          //{{AFX_VIRTUAL(CGrimView)
          //}}AFX_VIRTUAL
          //{{AFX_MSG(CGrimView)
          afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
          //}}AFX_MSG
         //{{AFX_INSERT_LOCATION}}
         #endif // !defined(AFX_GRIMVIEW_H__A8571F68_AE69_11D7_A974_0001029897CD__INCLUDED_)
  • 위시리스트 . . . . 1 match
          http://www.kyobobook.co.kr/product/detailViewEng.laf?ejkGb=BNT&mallGb=ENG&barcode=9781849695046&orderClick=LAG&Kc=
  • 위시리스트/130511 . . . . 1 match
          * 컴퓨터 네트워크 Behrouz A. Forouzan, Firouz Mosharraf 저 - [김민재]
  • 위키개발2006 . . . . 1 match
          owiki_cafe - 중앙서버, 해당서버
  • 위키설명회2006 . . . . 1 match
         ZeroPage/Staff 에 있는데, 나중에 링크걸겠음.
  • 음계연습하기 . . . . 1 match
         프로그래밍도 이러한 음계(etude-연습곡)연습을 꾸준히 해서 장인(Craftsman)으로 발전해 나가는 길이 있지 않을까?
  • 이승한/자전거여행 . . . . 1 match
          http://cafe.daum.net/mulzip (여행 정보가 많다.)
  • 이태양 . . . . 1 match
         === OldTrafford ===
  • 임다찬 . . . . 1 match
         ||[주요한]||Old Trafford||
  • 임인택 . . . . 1 match
         [http://sfx-images.mozilla.org/affiliates/Banners/120x600/rediscover.png]
  • 전문가되기세미나 . . . . 1 match
         == Personal Safety ==
  • 전문가의명암 . . . . 1 match
         전문가라는 것은 한가지 방면에 도가 텄다는 것을 말한다. 여기서 말하는 "도"라는 것은 장인(craftsman)의 의미를 내포한다. 그 유명한 미야모토무사시가 무엇때문에 하산하자마자 좌절하고 다시 입산했던가. 기름장수가 쳐다보지도 않고 기름을 퐁퐁 공중으로 날려 호리병에 넣는 모습을 보고 그는 충격을 먹었다. 그 기름장수는 분명 전문가였다.
  • 정모 . . . . 1 match
         ||||2023.11.22||[조영호]||||||||아두이노로 마이크 샘플링 해서 녹음하기 & 온습도 기록해서 Grafana로 모니터링하기||[정모/2023.11.22/참석자]||
  • 정모/2006.1.12 . . . . 1 match
         = Zeropage/Staff =
  • 정모/2006.1.19 . . . . 1 match
         - 2006.1.18 에 했던 Staff 모임 결과를 발표
         sock = socket(AF_INET, SOCK_STREAM)
  • 정모/2006.2.16 . . . . 1 match
         = staff에서 얘기 한 것 =
  • 정모/2011.3.21 . . . . 1 match
          1. 준석이 OMS(World of Warcraft) : 동영상을 적절하게 사용해서 집중력을 높여준 세미나였다. 아쉬운 점은 쪼----금 길었다는거;;
  • 정모/2011.4.11 . . . . 1 match
         == Staff 모집 ==
  • 정모/2012.8.29 . . . . 1 match
          * 한 가지 방법은 [https://trello.com/board/4f772fd6de39daf31f04799f ZeroPage Board]의 List나 Label로 관리하는 방법이고, 또 한 가지 방법은 [https://trello.com/zeropage ZeroPage Organization]의 Board로 따로 관리하는 방법입니다. 후자를 선택할 경우 ZeroPage Board가 덜 복잡해지는 대신 따로 Member를 추가해야 한다는 단점이 있습니다. 의견주세요. - [변형진]
  • 제로스 . . . . 1 match
          * 우리 OS 직접 만들어보는 실습은 [http://www.kyobobook.co.kr/product/detailViewKor.laf?ejkGb=KOR&mallGb=KOR&barcode=9788979143256&orderClick=LAA 만들면서 배우는 OS 구조와 원리] 책이 좋지 않을까 싶은데 ㅋ 따라하기도 쉽고, 현태가 더 upgrade해서 만들 수 있는 부분이 있으면 코멘트 해주고 ㅋ- [김건영]
  • 조동영 . . . . 1 match
         이멜 : chonie 골뱅이 hanafos 닷 com
  • 즐겨찾기 . . . . 1 match
         [http://jeppy.cafe24.com 종필이형 개인위키]
  • 지도분류 . . . . 1 match
         || ["VisualSourceSafe"] || Microsoft의 Visual Studio의 일원인 소스 관리 도구 ||
  • 페이지제목띄어쓰기토론 . . . . 1 match
          거듭 말씀드리지만, 기능상으로는 제한이 없습니다. 그리고 띄어쓰기 자체가 붙여쓰기보다 나쁘다는 어처구니 없는 일반진술도 하지 않았습니다. 어떤 구체적인 컨텍스트 속에서 이야기를 해야죠. 위키네임이 주는 편리한 기능이란 단어를 붙여쓰면 자동으로 링크가 되는 것을 말합니다. 사람들이 FrontPage라고 하면 될 것을 {{{~cpp ["front page"]}}}나 {{{~cpp ["Front Page"]}}}, 혹은 {{{~cpp ["Frontpage"]}}} 등으로 링크를 걸었다는 것이죠. 또, 사실 사용자가 띄어쓰기를 하건 말건, 혹은 대소문자를 어떻게 섞어쓰건 일종의 분리층(separation layer)을 둬서 모두 동일한 페이지이름으로 매핑을 하는 방법이 있습니다. 하지만 이렇게 되면 새로운 규칙 집합(제가 말하는 규칙이란 사람들간의 규칙을 일컫습니다)이 필요할 것입니다. 국문 경우는 몰라도 영문 경우는 띄어쓰기를 하냐 안하냐가 아주 차이가 큽니다. 노스모크는 초기부터 영어 페이지이름을 많이 사용했고 현재도 그러하기 때문에 이런 문제는 꽤 중요했죠. 또 (영문 경우) 기존의 위키표준을 지킨다는 생각도 있었고요. 하지만 여기는 아직 출발단계이고 하니까 다른 실험을 해볼 수 있겠죠. 아, 그리고 생각이 난건데, 페이지이름을 띄어쓰기를 하게 되면, 사람들이 이걸 위키에서 말하는 어떤 고유한 "단어"로서의 페이지이름(위키의 페이지이름은 "단어"입니다. 그게 하나의 커뮤니케이션 단위이기 때문이죠.)이 아니고 게시판에서의 게시물 제목 수준으로 생각하게 되는 경향(affordance)이 있었습니다. 사실 위키에서의 페이지이름은 프로그래밍의 변수이름처럼 상당히 중요한 역할을 하는데, 붙여쓰기를 하게 되면 사람들에게 기존 의식틀에서 벗어나서 페이지이름이 고유한 것이고, 기존의 게시물 제목과는 다르다는 인식을 심어주는 데에 많은 도움이 되었습니다. 다른 원인도 있겠지만, 주변에서 페이지이름에 띄어쓰기 붙여쓰기 등 별 제한 없이 자유로운 곳일수록 페이지이름을 페이지이름으로 활용하지 못하는 경우를 많이 봤습니다. 만약 띄어쓰기를 허용한다면 오히려 더욱 엄격한 규칙과 이의 전파가 필요할지도 모르겠습니다.
  • 프로그램내에서의주석 . . . . 1 match
          pDelNode->deleteSafely(bRecursive);
         // MODE_ADDAFTER일 때는, newnode가 this의 자식인 brother의 바로 아래 동생으로 입양을 간다.
         // addChild(newnode, MODE_ADDAFTER, brother); //newnode가 brother 바로 뒤에 삽입된다.
         // addChild(newnode, MODE_ADDAFTER); //newnode가 first child로 삽입된다.
  • 프로젝트 . . . . 1 match
          * [http://jeppy.cafe24.com/cap 세계문화체험단]
  • 황현/Objective-P . . . . 1 match
         == Specification (Draft) ==
Found 286 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.4371 sec