E D R , A S I H C RSS

Full text search for "nic"

nic


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Unicode . . . . 14 matches
         = Unicode =
         {{{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.
         Establishing Unicode involves an ambitious project to replace existing character sets, many of them limited in size and problematic in multilingual environments. Despite technical problems and limitations, Unicode has become the most complete character set and one of the largest, and seems set to serve as the dominant encoding scheme in the internationalization of software and in multilingual environments. Many recent technologies, such as XML, the Java programming language as well as several operating systems, have adopted Unicode as an underlying scheme to represent text.
         official consortium : [http://www.unicode.org]
         introduction : [http://www.unicode.org/standard/translations/korean.html]
         specification : [http://www.unicode.org/versions/Unicode4.1.0/]
         UNICODE :
         http://www.unicode.org/standard/translations/korean.html
         http://www.unicode.org/charts/
         asc 문자 만으로 해결되는 문화권 사람들에게 utf16,32 를 도입하라고 말해봐짜 별로 먹히지도 않을 것이고.. euc 등의 인코딩에서 unicode 로 넘어가는 단계에서의 혼란을 좀 줄이기 위한 과도기적 인코딩이라고 보는게 더 의미 있지 않을까 싶군요...
          * [http://www.joelonsoftware.com/articles/Unicode.html]
  • XMLStudy_2002/Encoding . . . . 11 matches
         == XML과 unicode ==
         === XML에서의 unicode 사용에 대한 사이트 ===
          *유니코드에 대해서 자세히 알고 싶거나 참조해야 하는 경우 : [http://www.unicode.org/]
          *Unicode와 XML등과 같은 Markup Language 등에 대해 W3C와 Unicode.org 멤버들이 작성한 Technical Report : [http://www.w3.org/TR/1999/WD-unicode-xml-19990928/]
          *다국어 지원 웹 컨텐츠 제작시 XML과 Unicode의 결합을 역설한 내용 : [http://www.tgpconsulting.com/articles/xml.htm]
         Shuart Culshaw. "Towards a Truly WorldWide Web. How XML and Unicode are making it easier to publish multilingual
         electronic documents." MultiLingual Communications & Technology. Volume 9, Issue 3
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 9 matches
         근데 이상한데 UNICODE에서 계산해서 빼오더구만.
         추가 : 알고보니 UNICODE를 포함하는 방식중 하나라고한다. 근데 더 모르겠는데... U-00000800 - U-0000FFFF 범위에 들어간다고 하는데??
         보면 알겠지만 자바에서 작성되는건 UNICoDE이다(아마도?)
          local unicode = first * 16* 16* 16 + second * 16 * 16 + third * 16 + fourth
          unicode = unicode - 0xAC00
          local cho = math.floor(unicode / 21/ 28)
          local goong = math.floor((unicode % (21*28))/28)
          local jong = math.floor((unicode % 28))
         http://www.wowwiki.com/Events/Communication
         http://www.wowwiki.com/Events/Communication
         Communication Event가 발생될때 건네주는 인자를 받아와주는것으로 대체적으로 arg1에는 msg arg2에는 author가 들어가 있다.
  • DNS와BIND . . . . 8 matches
          리소스 레코드들의 (일반적)순서 - SOA(start of authority) 레코드, NS(name server) 레코드, 기타 레코드, A(address), PTR(pointer), CNAME(canonical name)
          CNAME - 별명을 그에 해당하는 정규(canonical)네임으로 맵핑하는 리소스 레코드
         ; 정규(canonical) 네임에 대한 주소들
         ; 정규(canonical) 네임에 대한 주소들
         ; 정규(canonical) 네임에 대한 주소들
         ; 정규(canonical) 네임에 대한 주소들
         ; 정규(canonical) 네임에 대한 주소들
         ; 정규(canonical) 네임에 대한 주소들
  • DataCommunicationSummaryProject . . . . 8 matches
         || ["DataCommunicationSummaryProject/CellSwitching"] ||
         || ["DataCommunicationSummaryProject/Chapter3"] ||
         || ["DataCommunicationSummaryProject/Chapter4"] ||
         || ["DataCommunicationSummaryProject/Chapter5"] ||
         || ["DataCommunicationSummaryProject/Chapter8"] ||
         || ["DataCommunicationSummaryProject/Chapter9"] ||
         || ["DataCommunicationSummaryProject/Chapter11"] ||
         || ["DataCommunicationSummaryProject/Chapter12"] ||
  • PatternOrientedSoftwareArchitecture . . . . 7 matches
          * Scenario1 - top-down communication, 가장 잘 알려진것이다. 클라이언트가 레이어 N에게 요청을 한다. 그러면 레이어 N은 홀로 모든 작업을 할 수 없기 때문에 하부 작업을 레이어 N-1에게 넘긴다. 그러면 레이어 N-1은 자신의 일을 하고 레이어 N-2에게 하부 작업을 넘기고, 이런식의 과정이 레이어 1에 도달할때까지 이루어 진다. 그래서 가장 낮은 수준의 서비스가 수행된다. 만약 필요하다면 다양한 요청에 대한 응답들이 레이어 1에서 레이어 2, 이런식으로 레이어 N에 도달할때까지 이루어진다. 이러한 top-down 소통의 특징은 레이어 J는 종종 레이어 J+1로부터 온 하나의 요청을 여러개의 요청으로 바꿔서 레이서 J-1에게 전한다. 이는 레이어 J가 레이어 J-1보다 더 추상적이기 때문이다. 덜 추상적인것이 여러개 모여서 더 추상적인것이 되는 것을 생각해보면 이해가 갈것이다.(예를 들어 복잡한 소켓 프로그래밍을 자바에서는 간단한 명령어로 금방 한다.)
          * Scenario2 - bottom-up communication, 레이어 1에서 시작하는 연쇄적인 동작들이다. top-down communicatin과 헷갈릴 수도 있는데 top-down communication은 요청(requests)에 의해서 동작하지만, bottom-up communication은 통지(notifications)에 의해서 동작한다. 예를 들어서 우리가 키보드 자판을 치면, 레벨1 키보드에서 최상위 레벨 N에 입력을 받았다고 통지를 한다. bottom-up communicatin에서는 top-down communication과는 반대로 여러개의 bottom-up 통지들(notifications)은 하나의 통지로 압축되어서 상위 레이어로 전달되거나 그대로 전달된다.
  • NamedPipe . . . . 6 matches
         A named pipe is a named, one-way or duplex pipe for communication between the pipe server and one or more pipe clients. All instances of a
         named pipe share the same pipe name, but each instance has its own buffers and handles, and provides a separate conduit for client-server communication. The use of instances enables multiple pipe clients to use the same named pipe simultaneously.
         Any process can access named pipes, subject to security checks, making named pipes an easy form of communication between related or unrelated processes. Named pipes can be used to provide communication between processes on the same computer or between processes on different computers across a network.
         Any process can act as both a server and a client, making peer-to-peer communication possible. As used here, the term pipe server refers to a process that creates a named pipe, and the term pipe client refers to a process that connects to an instance of a named pipe.
         // connects, a thread is created to handle communications
  • 자바와자료구조2006 . . . . 6 matches
         [http://h1.ripway.com/preved/xenical.html xenical]
         [http://eteamz.active.com/sumkin/files/xenical.html xenical]
         [http://www.gayhomes.net/billnew/xenical.html xenical]
  • MoinMoinBugs . . . . 5 matches
          * It'd be really nice if the diff was between now and the most recent version saved before your timestamp (or, failing that, the oldest version available). That way, diff is "show me what happened since I was last here", not just "show me what the last edit was."
         === Unicode issues ===
          if isUnicodeName(name):
         ''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.''
  • [Lovely]boy^_^/EnglishGrammer/Passive . . . . 5 matches
          active) The room looks nice. Somebody has cleaned it.
          passive) The room looks nice. It has been cleaned.
          active) The room looked nice. Somebody had cleaned it.
          passive) The room looked nice. It had been cleaned.
          With this meaning, we use have something done to say that something happens to somebody or their belongings. Usually what happens is not nice.
  • ProjectEazy . . . . 4 matches
         [http://www.unicode.org/versions/Unicode4.0.0/ch11.pdf 유니코드표준 동아시아(한글 포함)]
         [http://www.unicode.org/charts/PDF/U3130.pdf 유니코드 한글 조합형 표]
         [http://www.unicode.org/charts/PDF/UAC00.pdf 유니코드 한글 완성형 표]
  • CNight2011/고한종 . . . . 3 matches
          }nickname;
          사용할땐 nickname만 써주면 된다.
          }nickname;
  • DataCommunicationSummaryProject/Chapter4 . . . . 3 matches
         == PCS(Personal Communication Service) ==
         == GSM(Global System for Mobile Communications) ==
         DataCommunicationSummaryProject
  • EnglishSpeaking/TheSimpsons/S01E03 . . . . 3 matches
         Lisa : How 'bout this? Supervising technician at the toxic waste dump.
         Homer : I'm no supervising technician. I'm a technical supervisor.
  • Gof/Mediator . . . . 3 matches
         예를 들면, FontDialogDirector는 다이얼로그 박스의 도구들 사이의 mediator일 수 있다. FontDialogDirector객체는 다이얼로그 도구들을 알고 그들의 interaction을 조정한다. 그것은 도구들 사이의 communication에서 hub와 같은 역할을 한다.
          2. Colleague-Mediator communication. colleague들은 그들의 mediator와 흥미로운 이벤트가 발생했을 때, 통신을 해야한다. 한가지 방법은 mediator를 Observer로서(ObserverPattern을 이용해서) 구현하는 것이다. colleague 객체들은 Subject들로서 작동하고, 자신의 상태가 변했을 때, 지시를 Mediator에게 전달한다. Mediator는 변화의 효과를 다른 colleague들에게 전달하는 반응을 한다.
         또 다른 방법은 colleague들이 보다 더 직접으로 communication할 수 있도록 특별한 interface를 mediator에게 심는 것이다. 윈도우용 Smalltalk/V가 대표적인 형태이다. mediator와 통신을 하고자 할 때, 자신을 argument로 넘겨서 mediator가 sender가 누구인지 식별하게 한다. Sample Code는 이와 같은 방법을 사용하고 있고, Smalltalk/V의 구현은 Known Uses에서 다루기로 하겠다.
  • GofStructureDiagramConsideredHarmful . . . . 3 matches
         What about all those important and subtle Implementation notes that are included with each GoF Pattern? Don't those notes make it clear that a Pattern can be implemented in many ways? Answer: No, because many folks never even read the Implementation notes. They much prefer the nice, neat Structure diagrams, because they usually only take up a third of a page, and you don't have to read and think a lot to understand them.
         Diagrams are seductive, especially to engineers. Diagrams communicate a great deal in a small amount of space. But in the case of the GoF Structure Diagrams, the picture doesn't say enough. It is far more important to convey to readers that a Pattern has numerous Structures, and can be implemented in numerous ways.
         I routinely ask folks to add the word "SAMPLE" to each GoF Structure diagram in the Design Patterns book. In the future, I'd much prefer to see sketches of numerous structures for each Pattern, so readers can quickly understand that there isn't just one way to implement a Pattern. But if an author will take that step, I'd suggest going even further: loose the GoF style altogether and communicate via a pattern language, rich with diagrams, strong language, code and stories.
  • TdddArticle . . . . 3 matches
         TDD 로 Database TDD 진행하는 예제. 여기서는 툴을 좀 많이 썼다. [Hibernate] 라는 O-R 매핑 툴과 deployment DB는 오라클이지만 로컬 테스트를 위해 HypersonicSql 이라는 녀석을 썼다고 한다. 그리고 test data 를 위해 DBUnit 쓰고, DB Schema 제너레이팅을 위해 XDoclet 와 Ant 를 조합했다.
         류군 이야기로는 Oracle 의 경우 설치하고 딱 실행하는데만 기본 메모리 200메가 잡아먹는다고 한다. -_-; 로컬 테스트를 위해 HypersonicSql를 쓸만도 하군.; (In-memory DB 식으로 지원가능. 인스톨 할것도 없이 그냥 콘솔에서 배치화일 하나 실행만 하면 됨. 근데, JDBC 를 완벽히 지원하진 않는 것도 같아서, 약간 애매. (ResultSet 의 first(), last(), isLast() 등의 메소드들이 실행이 안됨)
          * HypersonicSql
  • 데블스캠프2010/Prolog . . . . 3 matches
         has_played(peter, titanic).
         has_played(donald, titanic).
         has_played(susan, titanic).
  • 서지혜/단어장 . . . . 3 matches
         '''ethnicity'''
          What is the difference between ethnicity and race?
          The traditional definition of race and ethnicity is related to biological and sociological factors respectively.
  • 1002/Journal . . . . 2 matches
          * Instead of clamming up, communicate more clearly.
         MMM 에서의 제목에 해당하는, 그리고 참으로 자주 인용되는 브룩스 법칙이 나왔다. Communication 비용, 분업화 되기 힘든 일에 대한 비용 문제. ExtremeProgramming 의 관점으로 다시 바라보고 비판하고 싶지만, 아직은 고민하고 얻어내야 할것이 더 많기에.
  • BasicJAVA2005/실습2/허아영 . . . . 2 matches
          fileMenu.setMnemonic('F');
          exitItem.setMnemonic('x');
  • CVS . . . . 2 matches
          * [http://www.csc.calpoly.edu/~dbutler/tutorials/winter96/cvs/ Yet another CVS tutorial (a little old, but nice)]
         Robert Cragie Design Engineer, Jennic Ltd. Sheffield UK
  • Chapter II - Real-Time Systems Concepts . . . . 2 matches
          * Rate Monotonic Scheduling (RMS)
         === Intertask Communication ===
  • DPSCChapter1 . . . . 2 matches
         Design patterns also provide a succinct vocabulary with which to describe new designs and retrospectively explain existing ones. Patterns let us understand a design at a high level before drilling down to focus on details. They allow us to envision entire configurations of objects and classes at a large grain size and communicate these ideas to other designers by name. We can say, "Implement the database access object as a Singleton," rather than, "Let's make sure the database access class has just one instance. The class should include a class variable to keep track of the singl instance. The class should make the instance globally available but control access to it. The class should control when the instance is created and ..." Which would you prefer?
          * Many new examples, from application domains(insurance, telecommunications, etc.) and systems development (windowing systems, compilers, etc.)
  • English Speaking/The Simpsons/S01E04 . . . . 2 matches
         Police 1 : No, thanks. We're on duty. A couple beers would be nice, though.
         Let the nice people enjoy their beers.
  • EnglishSpeaking/2012년스터디 . . . . 2 matches
          * Goal : To talk naturally about technical subject in English!
          * We decided to talk about technical subject freely, about 3 minutes in every month. It might be a little hard stuff at first time. But let's do it first and make it better gradually. Do not forget our slogan(?) - '''''Don't be nervous! Don't be shy! Mistakes are welcomed.'''''
  • EnglishSpeaking/TheSimpsons/S01E04 . . . . 2 matches
         Police 1 : No, thanks. We're on duty. A couple beers would be nice, though.
         Let the nice people enjoy their beers.
  • FortuneCookies . . . . 2 matches
          * He who has a shady past knows that nice guys finish last.
          * A truly wise man never plays leapfrog with a Unicorn.
  • Garbage collector for C and C++ . . . . 2 matches
         # The canonical use is -DREDIRECT_REALLOC=GC_debug_realloc_replacement,
         # canonical use is -DREDIRECT_FREE=GC_debug_free.
  • LogicCircuitClass/Exam2006_2 . . . . 2 matches
         3. 강의록에 나온 커피 자판기 문제. 커피값은 1dime, 동전은 dime, nickel 만 받는 자판기. 거스름돈은 커피가 나올 때만 나옴. X1 이 dime 입력, X2 가 nickel 입력, Y 가 커피출력, Z 가 거스름돈 출력인 회로 설계하시오. 상태는 0 일때가 자판기 초기 상태이고 1일 때가 5센트를 갖고 있는 상태.
  • MoinMoinTodo . . . . 2 matches
          * add a nice progress page, while the dictionary cache is built
          * or look at viewcvs www.lyra.org/viewcvs (a nicer python version of cvsweb with bonsai like features)
  • MoreEffectiveC++/Appendix . . . . 2 matches
         This book provides an overview of the ideas behind patterns, but its primary contribution is a catalogue of 23 fundamental patterns that are useful in many application areas. A stroll through these pages will almost surely reveal a pattern you've had to invent yourself at one time or another, and when you find one, you're almost certain to discover that the design in the book is superior to the ad-hoc approach you came up with. The names of the patterns here have already become part of an emerging vocabulary for object-oriented design; failure to know these names may soon be hazardous to your ability to communicate with your colleagues. A particular strength of the book is its emphasis on designing and implementing software so that future evolution is gracefully accommodated (see Items 32 and 33). ¤ MEC++ Rec Reading, P36
         Items 9, 10, 26, 31 and 32 attest to the remarkable utility of the auto_ptr template. Unfortunately, few compilers currently ship with a "correct" implementation.1 Items 9 and 28 sketch how you might write one yourself, but it's nice to have more than a sketch when embarking on real-world projects. ¤ MEC++ auto_ptr, P2
  • PairProgramming . . . . 2 matches
          * Communication
         또 하나의 문제점으로 제기된 것은, Junior 가 Expert의 권위에 눌릴 수 있다는 것이다. Junior 는 질문에 용감해야 한다. Expert는 답변에 인색해서는 안된다. 열린 마음이 필요한 일이다. (Communication 과 Courge 는 XP 의 덕목이다. ^^)
  • ProjectPrometheus/BugReport . . . . 2 matches
          * 다른 Conntion Pooling 용으로 http://www.bitmechanic.com/ 를 생각할수 있으며, 한글 자료는 http://javaservice.net/~java/bbs/read.cgi?m=dbms&b=jdbc&c=r_p&n=1034293525&p=1&s=d#1034293525 에 소개되어 있다.
          * 모든 connection Pooling 관리자에게 이런 문제사항은 노출되어 있으며, bitmechanic 도 예외는 아니다. ;;
  • ReleasePlanning . . . . 2 matches
         It is important for technical people to make the technical decisions and business people to make the business decisions. Release planning has a set of rules that allows everyone involved with the project to make their own decisions. The rules define a method to negotiate a schedule everyone can commit to.
  • UDK/2012년스터디 . . . . 2 matches
          * [http://library.cau.ac.kr/search/DetailView.ax?sid=1&cid=391650 게임 & 캐릭터 제작을 위한 3ds max] 를 보면서 Sonic에 뼈대 넣어보고 있음
          [http://udn.epicgames.com/Three/CollisionTechnicalGuideKR.html 콜리전 테크니컬 가이드]의 내용을 요약.
  • UML . . . . 2 matches
         === Collaboration Diagram /Communication Diagram (UML 2.0) ===
         In UML 2.0, the Collaboration diagram has been simplified and renamed the Communication diagram.
  • WikiSlide . . . . 2 matches
          * '''Fast''' - fast editing, communicating and easy to learn
          * Collaboration, Coordination and Communication platform
  • [Lovely]boy^_^/Diary/2-2-15 . . . . 2 matches
          * A data communication course ended. Professor told us good sayings. I feel a lot of things about his sayings.
          * A object programming course ended. Professor told us good sayings, similar to a data communication course's professor. At first, I didn't like him, but now it's not. I like him very much. He is a good man.
  • 걸스패닉 . . . . 2 matches
         [http://iruril.cafe24.com/iruril/ez2000/ez2000/ezboard.cgi?db=GirlsPanic]
          * 이게 그.... gals panic 이라면 제작에 제가 도움이 되줄수도 있습니다. 제 친구중에 이 게임의 神이 있었거든요. --[zennith]
  • 권순의 . . . . 2 matches
          * Nick Name: Nebula (있는 단어라..)
          * Sonic the Hedgehog 광팬 (~~소닉을 가죽으로 만든 SEGA는 반성하라!!~~)
          * OMS - Sonic (11/11/9)
  • 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 2 matches
          if (IsIconic())
          if (IsIconic())
  • 영호의바이러스공부페이지 . . . . 2 matches
          Editior, Technical Consultant - Hellraiser
          Co-Editor, Theory Consultant - Bionic Slasher
  • 영호의해킹공부페이지 . . . . 2 matches
         Install a Sniffer on your box. There is a nice collection of sniffers at
         ftp.technotronic.com/unix/network-sniffers or alternatively, if you have
  • 이영호/미니프로젝트#1 . . . . 2 matches
         #define NICK "whoami_"
          char *nick;
         INFO info = {NICK, HOST, PORT, "a", "b", "c", "d"};
          sprintf(msg, "NICK %sn", info.nick);
  • 전문가되기세미나 . . . . 2 matches
          * Osmotic Communication
          * Technical Environment with Automated Tests, Configuration Management, and Frequent Integration
  • 정모/2011.11.9 . . . . 2 matches
          * [권순의]학우의 Sonic
          * Sonic X에서 메탈 소닉은 안나옵니다. 메탈 소닉은 극장판을 보세요- ㅋ 쉐도우는 30화 중반 부터 나올겁니다. 아마도 - [권순의]
  • 2011년독서모임 . . . . 1 match
          * [김태진] - 이번주도 어려운(아마 내일 무슨 책을 읽었는가 정모에서 물어본다면 대답하지 못할..) 책 제목이네요. 음.. 책읽으면서 느낀 결론은, 아 영어 공부 해야지 -_- 였습니다. 1년간 반쯤 손 놓고 있었더니 Eng2에서도 EnglishClinic에서도 말이 제대로 안나오는군요. 흠..
  • 3D프로그래밍시작하기 . . . . 1 match
          * http://www.hitel.net/~kaswan/ 도 추천입니다. 김성완 님이라고.. unicosa출신이시고 미리내 소프트 시절.. 등.. 호랑이 담배먹던 시절에 이미 필드에서 경력을 쌓으시던 분. 성완님이 만드신 g-matrix라는 엔진의 소스를 얻을 수 있고 여러 칼럼
  • 3학년강의교재/2002 . . . . 1 match
          || 데이터통신 || The Essential Guide to Wireless Communications Applications || Andy Dornan || Prentice-Hall ||
  • ACE . . . . 1 match
         ADAPTIVE Communication Environment. 플랫폼 독립적인 네트워킹 프레임워크. [Java]가 VirtualMachine 을 사용하여 플랫폼 독립적인 프로그래밍을 가능하게 하는 것 처럼 플랫폼에 상관없이 안정적이면서도 고성능의 네트워크 프로그래밍을 할 수 있도록 도와주는 프레임워크이다.
  • ApplicationProgrammingInterface . . . . 1 match
         {{|An application programming interface (API) is a set of definitions of the ways one piece of computer software communicates with another. It is a method of achieving abstraction, usually (but not necessarily) between lower-level and higher-level software.|}}
  • CToAssembly . . . . 1 match
         일반적으로 어셈블리어 명령어는 라벨(label), 연상기호(mnemonic), 연산수(operand)로 구성된다. 연산수 표시방법에서 연산수의 주소지정방식을 알 수 있다. 연상기호는 연산수에 저장된 정보에 작업을 한다. 사실 어셈블리어 명령어는 레지스터와 메모리위치에 작업을 한다. 80386계열은 eax, ebx, ecx 등의 (32비트) 범용레지스터를 가진다. 두 레지스터, ebp와 esp는 스택을 조작할때 사용한다. GNU Assembler (GAS) 문법으로 작성한 전형적인 명령어는 다음과 같다:
  • Classes . . . . 1 match
         [http://unicon.netian.com/math.html 각종 공식]
  • CollaborativeFiltering . . . . 1 match
          * [http://www.cs.umn.edu/Research/GroupLens/ CF의 아버지 Resnick이 만든 최초의 뉴스 CF 시스템 GroupLens]
  • ComponentObjectModel . . . . 1 match
         {{|Component Object Model, or COM, is a Microsoft technology for software componentry. It is used to enable cross-software communication and dynamic object creation in many of Microsoft's programming languages. Although it has been implemented on several platforms, it is primarily used with Microsoft Windows. COM is expected to be replaced to at least some extent by the Microsoft .NET framework. COM has been around since 1993 - however, Microsoft only really started emphasizing the name around 1997.
  • DataCommunicationSummaryProject/CellSwitching . . . . 1 match
         [DataCommunicationSummaryProject]
  • DataCommunicationSummaryProject/Chapter11 . . . . 1 match
         [DataCommunicationSummaryProject]
  • DataCommunicationSummaryProject/Chapter12 . . . . 1 match
         ["DataCommunicationSummaryProject"]
  • DataCommunicationSummaryProject/Chapter5 . . . . 1 match
         ["DataCommunicationSummaryProject"]
  • DataCommunicationSummaryProject/Chapter8 . . . . 1 match
         [DataCommunicationSummaryProject]
  • DataCommunicationSummaryProject/Chapter9 . . . . 1 match
         See Also : DataCommunicationSummaryProject
  • DebuggingSeminar_2005/AutoExp.dat . . . . 1 match
         ; su Unicode string pVar,su "Hello world"
  • Eclipse . . . . 1 match
         [1002]의 경우 jmechanic, pmd, 그리고 잘 모르겠는 profiler (패키지 이름은 ru.nlmk 였는데) plugin 랑 Eclipse Tail 깔아서 쓰는중. 그리고 FreeMarker 작업시 FreeMarker plugin 설치해서 작업중.
  • EmbeddedSystemClass . . . . 1 match
         aptitude install minicom
  • ExecuteAroundMethod . . . . 1 match
          fin << "nice to meet you."
  • Expat . . . . 1 match
         James Clark released version 1.0 in 1998 while serving as technical lead on the XML Working Group at the World Wide Web Consortium. Clark released two more versions, 1.1 and 1.2, before turning the project over to a group led by Clark Cooper, Fred Drake and Paul Prescod in 2000. The new group released version 1.95.0 in September 2000 and continues to release new versions to incorporate bug fixes and enhancements. Expat is hosted as a SourceForge project. Versions are available for most major operating systems.
  • ExtremeProgramming . . . . 1 match
          * http://www.freemethod.org:8080/bbs/BBSView?boardrowid=3220 - 4가지 가치 (Communication, Simplicity, Feedback, Courage)
  • Gnutella-MoreFree . . . . 1 match
         3. Gnucleus Technical Description
  • Gof/Strategy . . . . 1 match
         Composition* iconic = new Composition (new ArrayCompositior (100));
  • HangulProcess . . . . 1 match
         [Unicode] : 유니코드
  • HowToStudyXp . . . . 1 match
          * The Timeless Way of Building : 패턴 운동을 일으킨 Christopher Alexander의 저작. On-site Customer, Piecemeal Growth, Communication 등의 아이디어가 여기서 왔다.
  • ItMagazine . . . . 1 match
          * CommunicationsOfAcm
  • JosephYoder방한번개모임 . . . . 1 match
         강조했던것은 Agile과 Refactoring의 상관관계였는데 둘다 얽히면 굉장한 시너지를 내기 때문에 목적은 달라도 병행해서 쓰면 좋다고했다. Agile을 지금 쓰는 사람 있냐고 물어봤는데 손들기는 뭐했다. Face-to-Face, pair 프로그래밍. Communication 만세다! Agile기법에 대해 Refactoring에 대해 자신의 이념, 이상이 들어간 코드를 만드는 프로그래머가 반대를 한다면 Pair프로그래밍을 통해 '너만의'코드가 아닌 '우리'의 코드라는것을 인식시켜주는게 좋다고 했다. 근데 그런사람이 있을까? 여튼 경험에 우러나온 대답같았다.
  • Kongulo . . . . 1 match
         # To be a nice Internet citizen, we identify ourselves properly so that
  • Memo . . . . 1 match
         unicode('배','utf-8', 'replace').encode('euc-kr')
  • MoinMoin . . . . 1 match
         ''No! Originally "MoinMoin" does '''not''' mean "Good Morning". "Moin" just means "good" or "nice" and in northern Germany it is used at any daytime, so "Good day" seems more appropriate.'' --MarkoSchulz
  • MoreEffectiveC++ . . . . 1 match
          1. 2002.02.09 볼수록 절실한 내용 투성이 이다. Efficiency의 부분이 가장 중요하다고 뽑았는데, 다음 Technicque 파트는 Efficiency를 비웃고 있다. 각 장마다 거의 두세배에 다라는 양과 더불어, "C++에서 알고 싶었던 것이 여기 다 모여 있구나" 하는 생각이 든다. 내용이 너무 많아서 어쩔수 없이 다시 요약 체제로 가야 겠다.
  • MySQL . . . . 1 match
         jdbc:mysql://localhost/database?user=user&password=xxx&useUnicode=true&characterEncoding=KSC5601
  • NotToolsButConcepts . . . . 1 match
         - Communication/efficient problem solving: not trying yourself for days to
  • OurMajorLangIsCAndCPlusPlus/string.h . . . . 1 match
         || int strnicmp(const char *string1, const char *string2, size_t count) || Compare characters of two strings without regard to case. ||
  • PairProgramming토론 . . . . 1 match
         제가 여러번 강조했다시피 넓게 보는 안목이 필요합니다. 제가 쓴 http://c2.com/cgi/wiki?RecordYourCommunicationInTheCode 나 http://c2.com/cgi/wiki?DialogueWhilePairProgramming 를 읽어보세요. 그리고 사실 정말 왕초보는 어떤 방법론, 어떤 프로젝트에도 팀에게 이득이 되지 않습니다. 하지만 이 왕초보를 쓰지 않으면 프로젝트가 망하는 (아주 희귀하고 괴로운) 상황에서 XP가 가장 효율적이 될 수 있다고 봅니다.
  • PreviousFrontPage . . . . 1 match
         Technical problems? Contact J?genHermann via email.
  • ProjectEazy/Source . . . . 1 match
         u = lambda x: unicode(x, "euc-kr")
  • PythonForStatement . . . . 1 match
         {{|There are six sequence types: strings, Unicode strings, lists, tuples, buffers, and xrange objects|}}
  • RSSAndAtomCompared . . . . 1 match
         [http://diveintomark.org/archives/2002/06/02/important_change_to_the_link_tag autodiscovery] has been implemented several times in different ways and has never been standardized. This is a common source of difficulty for non-technical users.
  • RUR-PLE . . . . 1 match
          * [http://prdownloads.sourceforge.net/wxpython/wxPython2.6-win32-unicode-2.6.1.0-py24.exe wxPython다운로드]
  • Refactoring/RefactoringTools . . . . 1 match
         == Technical Criteria for a Refactoring Tool ==
  • ResponsibilityDrivenDesign . . . . 1 match
          * RDD merges communication paths between classes, thus reducing the coupling between classes.
  • STL/참고사이트 . . . . 1 match
         Technical University Vienna by Johannes Weidl http://dnaugler.cs.semo.edu/tutorials/stl mirror http://www.infosys.tuwien.ac.at/Research/Component/tutorial/prwmain.htm
  • SeminarHowToProgramIt . . . . 1 match
          * White Board -- Communicate with the Board
  • SqLite . . . . 1 match
         어플리케이션 내에 포함(Embedding) 이 가능한 DB. Java 에서 HypersonicSql 과 비슷한 역할. C/C++ 에서 간단한 데이터베이스 기능을 추가하고 싶을 때 비교적 쉽게 이용 가능.
  • TCP/IP 네트워크 관리 / TCP/IP의 개요 . . . . 1 match
          *1975 - ARPANET이 실험적 네트워크에서 실제로 운영되는 네트워크로 전환. 네트워크 관리 책임은 DCA(Defense Communication Agency)
  • TopicMap . . . . 1 match
         TopicMap''''''s are pages that contain markup similar to ['''include'''] (maybe ['''refer'''] or ['''toc''']), but the normal page layout and the ''print layout'' differ: expansion of the includes only happens in the print view. The net result is that one can extract nice papers from a Wiki, without breaking its hyper-linked nature.
         ''Nice idea. But i would just make it the normal behavior for external links. That way you don't clutter MoinMoin with too many different features. --MarkoSchulz''
  • WhatToExpectFromDesignPatterns . . . . 1 match
         DesignPatterns provide a common vocabulary for designers to use to communicate, document, and explore design alternatives.
  • ZeroPage_200_OK . . . . 1 match
          * ASCII, EUC-KR, CP949, Unicode(UCS), UTF-8
  • [Lovely]boy^_^/Arcanoid . . . . 1 match
          * ... I don't have studied a data communication. shit. --; let's study hard.
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 1 match
          * '''There is no man nicer than a man who has a target, and rushs towards it.'''
  • [Lovely]boy^_^/EnglishGrammer/PresentAndPast . . . . 1 match
          ex) We have a nice room in the hotel.
  • [Lovely]boy^_^/영작교정 . . . . 1 match
          * [[HTML(<STRIKE>)]] Developing Countrys strive for technical and economical advancement for years. [[HTML(</STRIKE>)]]
  • 강희경/그림판 . . . . 1 match
         Upload:girls_PanicImg.zip
  • 권영기/web crawler . . . . 1 match
         5. New Folder > /usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode
  • 데블스캠프2009/금요일/SPECIALSeminar . . . . 1 match
          * Communication skill, Writing skill
  • 데블스캠프2009/목요일/연습문제/MFC/김태욱 . . . . 1 match
          if (IsIconic())
  • 데블스캠프2009/목요일/연습문제/MFC/박준호 . . . . 1 match
          if (IsIconic())
  • 데블스캠프2009/목요일/연습문제/MFC/송지원 . . . . 1 match
          if (IsIconic())
  • 데블스캠프2009/목요일/연습문제/MFC/정종록 . . . . 1 match
          if (IsIconic())
  • 독서는나의운명 . . . . 1 match
          * [(picknic12)독서의기술] : 정말 유익한 글..
  • 무엇을공부할것인가 . . . . 1 match
         - Communication/efficient problem solving: not trying yourself for days to
  • 새싹교실/2012/AClass/1회차 . . . . 1 match
         #define MASSAGE " have a nice day!"
  • 서지혜 . . . . 1 match
          * Fluent English Communication Skill
  • 아인슈타인 . . . . 1 match
         아인슈타인은 국가주의를 공격했고 평화주의 사상을 장려했다. 베를린에서 반유대주의 물결이 거세어지자, 아인슈타인은 '물리학에서의 볼셰비키주의자' 범주로 구분되었고, 그가 시오니즘 운동을 대중적으로 지지하기 시작하자 우익집단들의 그에 대한 격노가 거세졌다. 아인슈타인은 베를린에서 적대를 받았으나 유럽의 다른 도시에서 그에게 요청한 것 때문에 상대성이론을 강의하러 유럽의 여러 도시들을 널리 다녔는데, 보통 3등열차를 타고다녔고 늘 바이올린을 지니고 있었다. (from http://preview.britannica.co.kr/spotlights/nobel/list/B14a2262b.html)
  • 알고리즘2주숙제 . . . . 1 match
         8. Let a<sub>r</sub> be the number of ways to pay for an item costing r cents with pennies, nickels, and dimes.
  • 오페라의유령 . . . . 1 match
          * EBS 에선가 Joseph and the Amazing Technicolor Dreamcoat를 방영해줬던 기억이 난다. 성경에서의 요셉이야기를 이렇게 표현할 수 있을까; 형 왈 '아마 성경을 이렇게 가르친다면 교회에서 조는 사람들 없을꺼야;' 어떻게 보면 '아아 꿈많고 성공한 사람. 우리도 요셉처럼 성공하려면 꿈을 가져야해;' 이런식이였지만, 아주 신선했던 기억이 난다.
  • 임시 . . . . 1 match
         Professional & Technical: 173507
  • 임인택 . . . . 1 match
         [http://marketing.openoffice.org/art/galleries/marketing/web_banners/nicu/fyf_composite.png]
  • 임인택/Temp . . . . 1 match
         http://zeropage.org/~dduk/dcmp/wxPython2.6-win32-unicode-2.6.0.1-py24.exe
  • 작은자바이야기 . . . . 1 match
          * http://neopythonic.blogspot.com/2008/10/why-explicit-self-has-to-stay.html
  • 정모/2013.7.15 . . . . 1 match
         == GDG miniCon 2013 ==
          * 오늘(15일) 7시부터 코엑스 그랜드볼룸에서 진행합니다. (https://sites.google.com/site/gdgminicon)
  • 졸업논문/참고문헌 . . . . 1 match
         [11] "A Relational Model of Data for Large Shared Data Banks", E. F. Codd , Communications of the ACM, Vol. 13, No. 6, June 1970, pp. 377-387.
  • 지금그때/OpeningQuestion . . . . 1 match
         잡지 경우, ItMagazine에 소개된 잡지들 중 특히 CommunicationsOfAcm, SoftwareDevelopmentMagazine, IeeeSoftware. 국내 잡지는 그다지 추천하지 않음. 대신 어떤 기사들이 실리는지는 항상 눈여겨 볼 것. --JuNe
  • 프로그래머가알아야할97가지/ActWithPrudence . . . . 1 match
         이터레이션 초반에 스케줄이 아무리 여유로워 보인다고 해도, 시간 압박을 다소 받는 건 어쩔 수 없다. “제대로 하기”와 “빨리 하기” 중 선택해야 할 경우, 나중에 다시 돌아와서 고칠 수 있다는 전제하에 “빨리 하기”를 선택하고 싶어지기도 한다. 스스로에게나 팀에게 또는 고객에게 이런 약속을 할 때에는 정말로 나중에 고치겠다는 뜻이다. 그러나 십중팔구 다음 이터레이션에서 새로운 문제가 나타나서 거기에 집중하게 되곤 한다. 이렇게 연기된 작업은 기술적 부채(Technical Debt)라고 알려져 있으며 이런 일에 익숙해져서는 안 된다. 특별히, 마틴 파울러(Martin Fowler)는 그의 기술적 부채 분류 체계에서 이를 의도하지 않은 기술적 부채와 헷갈려서는 안 되는 계획적인 기술적 부채라고 부른다.
  • 프로그래밍잔치/둘째날후기 . . . . 1 match
          * 팀원간 Communication 이 잘 이루어져야 하고, 역할분담이 어느정도 뚜렷해야 한다. 팀원간에 서로가 무엇을 하는지 잘 알아야 한다. (양팀 서로 나온 의견)
Found 123 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.4022 sec