E D R , A S I H C RSS

Full text search for "action"

action


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Gof/Command . . . . 15 matches
         Action, Transaction
         Command Pattern은 request 를 객체화함으로서 toolkit 객체로 하여금 불특정한 어플리케이션 객체에 대한 request를 만들게 한다. 이 객체는 다른 객체처럼 저장될 수 있으며 pass around 가능하다. 이 pattern의 key는 수행할 명령어에 대한 인터페이스를 선언하는 추상 Command class에 있다. 이 인터페이스의 가장 단순한 형태에서는 추상적인 Execute operation을 포함한다. 구체화된 Command subclass들은 request에 대한 receiver를 instance 변수로 저장하고 request를 invoke하기 위한 Execute operation을 구현함으로서 receiver-action 짝을 구체화시킨다. The receiver has the knowledge required to carry out the request.
          * MenuItem 객체가 하려는 일을 넘어서 수행하려는 action에 의해 객체를을 인자화시킬때. 프로그래머는 procedural language에서의 callback 함수처럼 인자화시킬 수 있다. Command는 callback함수에 대한 객체지향적인 대안이다.
          * 기본명령어들를 기반으로 이용한 하이레벨의 명령들로 시스템을 조직할 때. 그러함 조직은 transaction을 지원하는 정보시스템에서 보편화된 방식이다. transaction은 데이터의 변화의 집합을 캡슐화한다. CommandPattern은 transaction을 디자인하는 하나의 방법을 제공한다. Command들은 공통된 인터페이스를 가지며, 모든 transaction를 같은 방법으로 invoke할 수 있도록 한다. CommandPattern은 또한 새로운 transaction들을 시스템에 확장시키기 쉽게 한다.
          - Receiver 객체와 action 묶음을 정의한다.
          typedef void (Receiver::* Action) ();
          SimpleCommand (Receiver* r, Action a) :
          _receiver (r), _action (a) { }
          Action _action;
         constructor는 receiver와 instance 변수에 대응되는 action을 저장한다. Execute는 단순히 action을 receiver에 적용한다.
          (_receiver->*_action) ();
         MyClass의 instance로 있는 Action을 호출할 command를 만들기 위해서, 클라이언트는 단순히 이렇게 코딩한다.
          new SimpleCommand<MyClass> (receiver, &MyClass::Action);
         아마도 CommandPattern에 대한 첫번째 예제는 Lieberman 의 논문([Lie85])에서 나타났을 것이다. MacApp [App89] 는 undo가능한 명령의 구현을 위한 command의 표기를 대중화시켰다. ET++[WGM88], InterViews [LCI+92], Unidraw[VL90] 역시 CommandPatter에 따라 클래스들을 정의했다. InterViews는 각 기능별 명령에 대한 Action 추상 클래스를 정의했다. 그리고 action 메소드에 의해 인자화됨으로서 자동적으로 command subclass들을 인스턴스화 시키는 ActionCallback 템플릿도 정의하였다.
  • Bigtable기능명세 . . . . 13 matches
         SSTABLE Compaction ★★★
          minor compaction
          major compaction
          1. 해당 태블릿의 SSTABLE들을 minor compaction
         원형 자료구조를 사용해 공간의 재활용필요 -> 한바퀴 돌아서 공간이 없어지면 memtable들의 minor compaction이 필요하다.
         그러나 compaction시에는 모든 수정작업이 중지되므로 로그는 적절히 커야한다.
          1. memtable이 copaction으로 sstable이 되면 해당 sstable의 로그는 삭제되어야 한다.
         == SSTABLE Compaction ★★★ ==
         === Minor Compaction ===
         === Major Compaction ===
          1. major compaction을 하면 SSTABLE이 항상 1개가되나?
          1. 태블릿의 크기가 200MB를 넘으면 major compaction
          1. merge compaction등으로 두개의 sstable만들면 sstable의 복수참조를 막을 수 있다.
  • MoniWiki/HotKeys . . . . 10 matches
          ||L||action=LikePages || ||
          ||A||action=randompage || ||
          ||B||action=bookmark || ||
          ||K||action=keywords || ||
          ||D||action=diff ||[[Icon(diff)]] 입체안경||
          ||I||action=info ||[[Icon(info)]] 파란색 i||
          ||E 또는 W||action=edit ||[[Icon(edit)]] 메모지와 펜||
          ||P||action=print ||[[Icon(print)]] 프린터||
          ||F 또는 H||action=home ||FrontPage ||
          ||R(not Safari)||action=show ||Refresh||
  • TddWithWebPresentation . . . . 10 matches
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/action/ViewPageAction.py?rev=1.5&content-type=text/plain
         즉, 현재 action 코드에 다 섞여있는 것이다.이부분을 TDD로 작성하기 위한 테스트는 다음과 같았다.
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/test_viewpageaction.py?rev=1.2&content-type=text/plain
         즉, 일종의 Template Method 의 형태로서 Testable 하기 편한 ViewPageAction 의 서브클래스를 만들었다. 어차피 중요한것은 해당 표현 부분이 잘 호출되느냐이므로, 이에 대해서는 서브클래스로서 텍스트를 비교했다.
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/action/ViewPageAction.py?rev=1.6&content-type=text/plain
         이렇게 될 경우 테스트 코드는 다음과 같다. 여차하면 테스트 코드에서 presenter 를 사용할 수도 있었다. (어차피 ViewPageAction 역할을 잘 하느냐가 중요하니까, 거기에 붙는 HTML 들이 어떠하냐가 중요하진 않을것이다.)
         http://free1002.nameip.net:8080/viewcvs/viewcvs.cgi/*checkout*/pyki/test_viewpageaction.py?rev=1.3&content-type=text/plain
         다음부터 action 부분을 작성한다면?
          1. action test 를 만든다. (생각해보건데, action 에서의 Servlet 부분이 있는 곳 또한 얇게 만들 수 있겠다는 생각을 해본다.)
          2. MockPresenter 를 만든다. 중요한 것은 출력결과를 테스트하는것이 목적이 아니라 action 결과 행해지는 일들(Transaction)이 제대로 일어났는지를 테스트하는 것이다. MockPresenter 는 그냥 해당 메소드들이 호출되었는지만 verify 하는정도면 충분할 것이다.
  • [Lovely]boy^_^/EnglishGrammer/PresentAndPast . . . . 10 matches
          This means) She is driving now, at the time of speaking. The action is not finished.
          Often the action is happening at the time of speaking.
          But the action is not necessarily happening at the time of speaking.
          or repeateldy or that something is true in general. It is not important whether the action is happening at the time of speaking
          The action is not finished. sometimes, Use the Present continuous for temporary situations.
          A. We can use continuous tenses only for actions and happenings. Some verbs are not action verbs.
          The action or situation had already started before this time but had not finished.
          Past Continuous(in the middle of an action)
          Simple past(complete action)
  • TheJavaMan/지뢰찾기 . . . . 9 matches
          JButton action = new JButton("^ _ ^");
          action.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
          action.setText("^ _ ^");
          top.add(action, BorderLayout.CENTER);
          action.setText("^ o ^");
          action.setText("^ _ ^");
          action.setText("^ . ^ V");
          action.setText("ㅡ . ㅡ");
  • html5/webSqlDatabase . . . . 9 matches
          * transaction을 지원한다.
          * {{{transaction()}}}, {{{readTransaction}}}
          html5rocks.webdb.db.transaction(function(tx) {
          html5rocks.webdb.db.transaction(function(tx){
          html5rocks.webdb.db.transaction(function(tx) {
          html5rocks.webdb.db.transaction(function(tx) {
         == transaction ==
         db.transaction(function (tx) {
  • LinuxProgramming/SignalHandling . . . . 7 matches
         int sigaction() 예제
          struct sigaction act;
          state = sigaction(SIGINT, &act, 0);
          puts("sigaction() error");
          struct sigaction act;
          state = sigaction(SIGALRM, &act, 0);
          puts("sigaction() error");
  • PatternOrientedSoftwareArchitecture . . . . 7 matches
         || Interactive Systems || Model-View-Controlled, Presentation-Abstraction-Control Pattern || - ||
          * 구조 : 자신의 시스템을 blackboard(knowledge source들의 집합, control components)라고 불리우는 component로 나누어라. blackboard는 중앙 데이터 저장소이다. solution space와 control data들의 요소들이 여기에 저장된다. 하나의 hypothesis는 보통 여러가지 성질이 있다. 그 성질로는 추상 레벨과 추측되는 가설의 사실 정도 또는 그 가설의 시간 간격(걸리는 시간을 말하는거 같다.)이다. 'part-of'또는'in-support of'와 같이 가설들 사이의 관계를 명확이 하는 것은 보통 유용하다. blackboard 는 3차원 문제 공간으로 볼 수도 있다. X축 - time, Y축 - abstraction, Z축 - alternative solution. knowledge source들은 직접적으로 소통을 하지 않는다. 그들은 단지 blackboard에서 읽고 쓸뿐이다. 그러므로 knowledge source 들은 blackboard 의 vocabulary들을 이해해야 한다. 각 knowledge source들은 condition부분과 action부분으로 나눌 수 있다. condition 부분은 knowledge source가 기여를 할수 있는지 결정하기 위해서 blackboard에 적으면서 현재 solution process 의 상태를 계산한다. action 부분은 blackboard의 내용을 바꿀 수 있는 변화를 일으킨다. control component 는 루프를 돌면서 blackboard에 나타나는 변화를 관찰하고 다음에 어떤 action을 취할지 결정한다. blackboard component는 inspect와 update의 두가지 procedure를 가지고 있다.
         top-level solution - highest abstraction level
         imtermediate solution - other level(except highest abstraction level)
  • TkinterProgramming/Calculator2 . . . . 7 matches
          self.actionDict = { 'second' : self.doThis, 'mode': self.doThis,
          def doThis(self, action):
          print '"%s" has not been implemented' % action
          def keyAction(self, key):
          def evalAction(self, action):
          self.actionDict[action](action)
          a = lambda s=self, a = func : s.evalAction(a)
          a = lambda s=self, k = func : s.keyAction(k)
  • Gof/Mediator . . . . 6 matches
         MediatorPattern은 객체들의 어느 집합들이 interaction하는 방법을 encapsulate하는 객체를 정의한다. Mediator는 객체들을 서로에게 명시적으로 조회하는 것을 막음으로서 loose coupling을 촉진하며, 그래서 Mediator는 여러분에게 객체들의 interactions들이 독립적으로 다양하게 해준다.
         예를 들면, FontDialogDirector는 다이얼로그 박스의 도구들 사이의 mediator일 수 있다. FontDialogDirector객체는 다이얼로그 도구들을 알고 그들의 interaction을 조정한다. 그것은 도구들 사이의 communication에서 hub와 같은 역할을 한다.
         다음 interaction diagram은 객체들이 리스트박스의 선택에서 변화를 다루기 위해 협동하는 방법을 묘사하고 있다.
          4. MediatorPattern은 객체가 협동하는 방법을 추상화 시킨다. Mediation를 독립적인 개념으로 만들고 하나의 객체에 캡슐화하는 것은 여러분으로 하여금 객체의 행위는 제쳐두고 그 interaction에 집중하게 해준다. 이는 객체가 시스템 내에서 어떻게 interact하는 방법을 명확히 하는데 도움을 준다.
          5. MediatorPattern은 제어를 집중화한다. Mediator는 interaction의 복잡도를 mediator의 복잡도와 맞바꿨다. Mediator가 protocol들을 encapsulate했기 때문에 colleague객체들 보다 더 복잡하게 되어질 수 있다. 이것이 mediator를 관리가 어려운 monolith 형태를 뛰게 만들 수 있다.
  • MoinMoinFaq . . . . 5 matches
         "Delete''''''Page" is not active by default, since it's most often used in intranets only and is somewhat dangerous in public wikis. To allow this and other dangerous actions, add them like this to {{{~cpp moin_config.py}}}: {{{~cpp
         allowed_actions=['DeletePage']
         including the number of pages, and the macros and actions that are installed.
          1. in the "Location" bar of your browser, replace "action=recall" with "action=raw".
  • RssMacro . . . . 5 matches
         [[RSS(http://chemie.skku.ac.kr/wiki/wiki.php/RecentChanges?action=rss_rc)]]
         [[RSS(http://chem.skku.ac.kr/~kle/moin/RecentChanges?action=rss_rc)]]
         [[RSS(http://kz.mpecc.com/moniwiki/wiki.php?action=rss_rc&dummy=1)]]
         [[RSS(http://chemie.skku.ac.kr/wiki/wiki.php/RecentChanges?action=rss_rc)]]
         [[Rss(http://chemie.skku.ac.kr/wiki/wiki.php/BlogChanges?action=blogrss&all=1)]]
  • SeminarHowToProgramIt/Pipe/VendingMachineParser.py . . . . 5 matches
          def action(self):
          def action(self):
          def action(self):
          def action(self):
          def action(self):
  • 나를만든책장관리시스템/DBSchema . . . . 5 matches
         || cContributor || int(11) || FK references bm_tblMember(mID) on delete no action on update cascade ||
         || cBook || unsigned int || FK references bm_tblBook(bID) on delete no action on update cascade ||
         || rUser || int(11) || FK refereneces bm_tblMember(mID) on delete no action on update cascade ||
         || rBook || unsigned int || FK refereneces bm_tblBook(bID) on delete no action on update cascade ||
         || mID || int(11) || PK, FK references zb_member_list(member_srl) on delete no action on update cascade ||
  • Plugin/Chrome/네이버사전 . . . . 4 matches
          "browser_action": {
          "browser_action": {
          "default_popup": "popup.html" //이게 그냥 popup으로 되있었다. browser_action을 보니 default_popup을 해야지 action icon을 눌렀을때 popup이 뜬다.
  • 2012/2학기/컴퓨터구조 . . . . 3 matches
          = Computer Abstractions and Technology =
          == Abstractions ==
          * Abstraction helps us deal with complexity
  • 2학기파이선스터디/ 튜플, 사전 . . . . 3 matches
         >>> action = {0:add, 1:sub}
         >>> action[0](4,5)
         >>> action[1](4,5)
  • Ant/JUnitAndFtp . . . . 3 matches
          action="del" remotedir="${ftptestreportpath}">
          action="mkdir" remotedir="${ftptestreportpath}"/> -->
          action="put" remotedir="${ftptestreportpath}">
  • MatrixAndQuaternionsFaq . . . . 3 matches
          addition, subtraction, multiplication and division.
          6 subtraction +6 6 addition -3
          Using the optimised algorithm, only 12 multiplications, 6 subtractions
  • MoinMoinTodo . . . . 3 matches
          * Steal ideas from [http://www.usemod.com/cgi-bin/mb.pl?action=editprefs MeatBall:Preferences]
          * Document all MoinMoinUrlSchemes (i.e. action=whatever)
         The following actions are needed:
  • MoniWikiPo . . . . 3 matches
         msgid "Invalid ajax action."
         msgid "%s is not valid action"
         msgid "Is it valid action ?"
  • MoniWikiTheme . . . . 3 matches
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=kz
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=blog
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=samplehome
  • MoreEffectiveC++/Exception . . . . 3 matches
          startTransaction();
          endTransaction();
         이럴 경우에는 Session의 파괴자에게 문제를 제거하는 명령을 다시 내릴수 있따 하지만 endTransaction이 예외를 발생히킨다면 다시 try-catch문으로 돌아 갈수 밖에 없다.
  • MySQL . . . . 3 matches
         === MySQL & Transaction ===
         [http://network.hanbitbook.co.kr/view_news.htm?serial=131 MySQL과 Transaction] 테이블 생성시 InnoDB 나 BSDDB 를 사용하면 Transaction 을 이용할 수 있다. (InnoDB 추천)
  • TwistingTheTriad . . . . 3 matches
         In MVC, most of the application functionality must be built into a model class known as an Application Model. It is the reponsibility of the application model to be the mediator between the true domain objects and the views and their controllers. The views are responsible for displaying the domain data while the controller handle the raw usr gestures that will eventually perform action on this data. So the application model typically has method to perform menu command actions, push buttons actions and general validation on the data that it manages. Nearly all of the application logic will reside in the application model classes. However, because the application model's role is that of a go-between, it is at times necessary for it to gain access to the user interface directly but, because of the Observer relationship betweeen it and the view/controller, this sort of access is discouraged.
  • UML . . . . 3 matches
         A Collaboration diagram models the interactions between objects in terms of sequenced messages. Collaboration diagrams represent a combination of information taken from [[#UML_Class Diagram|Class]], [[#UML_Sequence_Diagram|Sequence]], and [[#UML_Use_Case_Diagram|Use Case Diagrams]] describing both the static structure and dynamic behavior of a system.
         This activity diagram shows the actions that take place when completing a (web) form.
         A third problem which leads to criticism and dissatisfaction is the large-scale adoption of UML by people without the required skills, often when management forces UML upon them.
  • Adapter . . . . 2 matches
         여기에 TextShape Adapter가 그것의 Adaptee를 위해 메세지를 해석하는 모습의 interaction diagram이 있다.
         자 그럼 여기에 예제를 보자. 우리는 employee관리 application을 가지고 있다고 가정한다.어플리케이션 모델은 하나의 인자인, employee의 사회 보장(비밀) 번호(social security number)의 포함하고 application의 사용자 인터페이스는 employee의 사회 보장 번호를 화면상에 뿌려주는 '입력 박스 뷰'를 포함한다.모델의 엑세스하고 초기화 시키기 위한 메소드는 'socialSecurity'와 'socialSecurity:'로 이름 지어져 있다. 입력 박스는 단지 현재의 사회 보장 번호를 뿌리기만 한지만 모델의 값을 요청하는 방법만을 알고있다.( DeleteMe 수정 필요 ) 그래서 우리는 value mesage를 socialSecurity로 변환 해야 한다.우리는 Pluggable Adapter 객체를 이런 목적을 위해서 사용할수 있다.자 우리의 예제를 위한 interaction 다이어 그램을 보자
  • BasicJAVA2005/실습2/허아영 . . . . 2 matches
         public class GridLayoutDemo extends JFrame implements ActionListener{
          exitItem.addActionListener(
          new ActionListener() {
          public void actionPerformed(ActionEvent event)
          buttons[count].addActionListener(this);
          public void actionPerformed(ActionEvent event)
  • Bigtable/DataModel . . . . 2 matches
          1. 각 태블릿의 majorCompaction시 태블릿별로 SSTable들이 나누어지므로 결국 SSTable은 하나의 태블릿에 피참조된다.
          1. memtable의 T/S가 더 최신이 아니라면 minor compaction을 하여 로그를 비운다.
  • BlogChangesMacro . . . . 2 matches
          * {{{?action=rss_blog}}}
          * {{{?action=blogrss}}}
  • BoaConstructor . . . . 2 matches
         GUI 플밍은 다시금 느끼지만, RAD 툴 없으면 노가다가 너무 많다. -_-; 차라리 GUI 코드는 더럽게 놔두고 툴로만 다루고, 코드상에서는 가능한 한 GUI 부분 객체와는 interface 로만 대화하는 것이 좋겠다. 어디선가 본 것 같다. Code Generator 로 작성된 코드는 가능한한 건드리지 말라는..~ (Abstraction 이 제너레이팅 툴에서 이루어지기 때문일 것 같다.)
          3. 해당 코드들의 Abstraction Level 을 적절히 맞춰서 리팩토링하며 인터페이스나 모듈관계들에 대한 디자인과 원하는 기능들에 대한 구현 모습에 대한 피드백을 받는다.
  • CleanCode . . . . 2 matches
          * abstraction level
          * 횡단 관심사의 처리(AOP) : DB 접속, transaction, log 등 다양한 모듈들에서 동일하게 나타나는 작업들
  • ComponentObjectModel . . . . 2 matches
         There exists a limited backward compatibility in that a COM object may be used in .NET by implementing a runtime callable wrapper (RCW), and .NET objects may be used in COM objects by calling a COM callable wrapper. Additionally, several of the services that COM+ provides, such as transactions and queued components, are still important for enterprise .NET applications.
         RCW를 구현하고 있는 .Net 하에서는 COM 객체는 아마도 제한적으로 호환성의 측면에서 사용될 것이다. 또한 .NET 객체들은 아마도 COM callable wrapper를 호출하는 것 때문에 COM 객체들안에서 사용될 것이다. 덧붙여서 COM+가 제공하는 일부분의 서비스들(transaction, queued components)은 여전히 .NET 응용프로그램에서도 중요한 부분이다.
  • DPSCChapter1 . . . . 2 matches
         Smalltalk experts know many things that novices do not, at various abstraction levels and across a wide spectrum of programming and design knowledge and skills:
          * Recurring patterns of object configurations and interactions and the sorts of problems for which these cooperating objects provide (at least partial) solutions
  • Data전송 . . . . 2 matches
         // form method="get" or "post" 넣어주면 된다. action="receive.jsp" //
         <form name="sub" method="post" action="receive.jsp">
  • EightQueenProblem/용쟁호투 . . . . 2 matches
         global transaction sqlca
         sqlca=create transaction
  • GotoStatementConsideredHarmful . . . . 2 matches
         주로 JuNe 과 [jania] 의 토론을 읽으면서 이해를 하게 된 논문이다. '실행시간계'와 '코드공간계' 의 차이성을 줄인다는 아이디어가 참으로 대단하단 생각이 든다. 아마 이 원칙을 제대로 지킨다면, (즉, 같은 묶음의 코드들에 대한 추상화도를 일정하게 유지한다던가, if-else 의 긴 구문들에 대해 리팩토링을 하여 각각들을 메소드화한다던가 등등) 디버깅하기에 상당히 편할 것이고(단, 디버깅 툴은 고생좀 하겠다. Call Stack 을 계속 따라갈건데, abstraction level 이 높을 수록 call stack 깊이는 보통 깊어지니까. 그대신 사람이 직접 디버깅하기엔 좋다. abstraction level 을 생각하면 버그 있을 부분 찾기가 빨라지니까), 코드도 간결해질 것이다.
  • HelpOnActions . . . . 2 matches
          * `titleindex`: 페이지 목록을 텍스트로 보내거나 (Self:?action=titleindex) XML로 (Self:?action=titleindex&mimetype=text/xml'''''') 보내기; MeatBall:MetaWiki 를 사용할 목적으로 쓰임.
         모니위키의 모든 액션은 MoniWikiActions 페이지를 통해 보실 수 있습니다.
  • HelpOnInstallation . . . . 2 matches
          * backup : {{{?action=backup}}}해 보라. 백업은 data 디렉토리의 user와 text를 및 기타 몇몇 설정을 보존한다. pds/ 디렉토리를 보존하지는 않는다. 백업된 파일은 pds/ (혹은 $upload_dir로 정의된 위치) 하위에 저장된다.
          * restore : {{{?action=restore}}}한다. 백업된 tar 파일 목록이 나오고 tar 파일을 선택하면 관리 비번을 물어본다.
  • HelpOnProcessingInstructions . . . . 2 matches
          * {{{#action}}} ''action name'': 페이지에 대한 기본 액션을 ''EditText'' 이외의 다른 것으로 바꿔준다.
  • LawOfDemeter . . . . 2 matches
         tries to restrict class interaction in order to minimize coupling among classes. (For a good discussion on
         specific, well defined action.
  • MajorMap . . . . 2 matches
         ALU is is a part of the execution unit, a core component of all CPUs. ALUs are capable of calculating the results of a wide variety of basic arithmetical computations such as integer and floating point arithmetic operation(addition, subtraction, multiplication, and division), bitwise logic operation, and bit shitf operation. Therefore the inputs to the ALU are the data to be operated on (called operands) and a code from the control unit indicating which operation to perform. Its output is the result of the computation.--from [http://en.wikipedia.org/wiki/ALU]
         Two's complement is the most popular method of representing signed integers in computer science. It is also an operation of negation (converting positive to negative numbers or vice versa) in computers which represent negative numbers using two's complement. Its use is ubiquitous today because it doesn't require the addition and subtraction circuitry to examine the signs of the operands to determine whether to add or subtract, making it both simpler to implement and capable of easily handling higher precision arithmetic. Also, 0 has only a single representation, obviating the subtleties associated with negative zero (which is a problem in one's complement). --from [http://en.wikipedia.org/wiki/Two's_complement]
  • MoniWikiACL . . . . 2 matches
         # some POST actions support protected mode using admin password
         # some actions allowed to @ALL
  • NSIS/Reference . . . . 2 matches
         || ExecShell || action command [parameters] [SW_SHOWNORMAL | SW_SHOWMAXIMIZED | SW_SHOWMINIMIZED]|| ShellExecute를 이용, 프로그램을 실행시킨다. action은 보통 'open', 'print' 등을 말한다. $OUTDIR 은 작업디렉토리로 이용된다.||
  • ProjectPrometheus/CollaborativeFiltering . . . . 2 matches
          *For every meaningful action(searching, viewing, writing a review, rating without writing reviews) there is a pref coefficient. (prefCoef)
          *When a user does a specific well-defined action, bookPref is updated as "prefCoef*userPref+bookPref" and resorted. (some books at the end of the list might be eliminated for performance reasons)
  • StructureAndInterpretationOfComputerPrograms . . . . 2 matches
         소프트웨어개발에서 중요한 개념중 하나인 Abstraction 에 대해 제대로 배울 수 있을 것이다. 그리고 Modularity, Objects, and State 등.
         그리고 전산학쪽 커리큘럼과 관련하여 쓸만한 예제들이 돋보인다. (좀 어렵긴 하겠지만.) 그리고 중간에 Scheme 코드를 일반언어로 읽는 방법에 대해 이야기한다. (이 또한 Abstraction 의 관점이랄까.)
  • TheJavaMan/달력 . . . . 2 matches
          tfYear.addActionListener(new ActionListener()
          public void actionPerformed(ActionEvent event)
          cbMonth.addActionListener(new ActionListener()
          public void actionPerformed(ActionEvent event)
  • TheJavaMan/숫자야구 . . . . 2 matches
         import java.awt.event.ActionEvent;
         import java.awt.event.ActionListener;
         public class LowerPanel extends Panel implements ActionListener, KeyListener{
          input.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent arg0)
          ok.addActionListener(this);
          submit.addActionListener(this);
          public void actionPerformed(ActionEvent e){
  • UDK/2012년스터디 . . . . 2 matches
          * [박재민] [http://wiki.zeropage.org/wiki.php/UDK/2012%EB%85%84%EC%8A%A4%ED%84%B0%EB%94%94/%EC%86%8C%EC%8A%A4?action=show#s-2 카메라 소스] 분석 중...
          [http://wiki.zeropage.org/wiki.php/UDK/2012%EB%85%84%EC%8A%A4%ED%84%B0%EB%94%94/%EC%86%8C%EC%8A%A4?action=show#s-3 간단한 "Hello" + "World" 문자열 연결 Kismet node 예제]
  • WikiSandPage . . . . 2 matches
         <form method="post" action="http://wiki.zeropage.org/wiki.php/WikiSandPage">
          <input type="hidden" name="action" value="userform">
  • WikiSlide . . . . 2 matches
          * Navigation: Quicklinks, Icons link to system actions (HelpOnNavigation)
          * Quick search and additional actions (HelpOnActions)
         == Actions ==
         Actions operate either on a single page or on the whole Wiki.
          * `AttachFile`: Attach files to a page (HelpOnActions/AttachFile)
         For details see HelpOnActions.
  • [Lovely]boy^_^/EnglishGrammer/Passive . . . . 2 matches
          B. When we use the passive, who or what causes the action is often unknown or unimportant.(그리니까 행위주체가 누군지 모를때나 별로 안중요할때 수동태 쓴대요)
          If we want to say who does or what causes the action, we use by(수동태에서 누가 했는지 알고 싶으면 by 쓰래요)
  • [Lovely]boy^_^/영작교정 . . . . 2 matches
          * [[HTML(<STRIKE>)]] The prisoner's action shows that why he is a danger to sociery. [[HTML(</STRIKE>)]]
          * The prisoner's action shows why he is a danger to society.
  • html5/form . . . . 2 matches
          <input type="submit" formmethod="POST" formaction="/formOk.html">
          * {{{<form novalidate action="demo_form.asp" method="get">}}}
  • 경시대회준비반/BigInteger . . . . 2 matches
          // Straight pen-pencil implementation for subtraction
         // Implentation of subtraction by paper-pencil method
  • 김태진 . . . . 2 matches
          * ?action=info&all=1 를 주소 뒤에 붙이면 변경내역을 볼 수 있음.
          * action=info&all=1 를 주소 뒤에 붙이면 변경내역을 볼 수 있음. -> 그냥 페이지 보다가 i 누르는 게 더 편하지 않음? - [김수경]
  • 데블스캠프2009/수요일/JUnit/서민관 . . . . 2 matches
          subtraction();
          public void subtraction()
  • 데블스캠프2009/수요일후기 . . . . 2 matches
          * [송지원] - 기대 이상의 세미나였다. 준석이가 데블스 전부터 자신의 세미나에 대해 엄청 자신없어했고 형진이가 Abstractionism을 하며 강의가 좀 확장되어 준석이가 가르칠 범위까지 해버리는 바람에 준석이가 할게없다고 걱정하던데, 오히려 형진이의 강의로 토스를 받아 붕어빵 예시로 스파이크를 날려준 느낌이다. 그래도 OOP란 개념 자체가 확 와닿기 쉽지 않은지라 마지막엔 내가 괜히 오지랖 부렸다..;;
          * [김준석] - 강의 내내 속으로 피말렸다. 강의 도중에 이해하기 쉽게 설명할걸 몇몇 빼먹은게 자꾸 떠올라서 천천히라도 설명하려했으나 설명해놓고 보니 좀 엉뚱한데서 설명해버린 안타까운 현실. 현역 군인이라 OOP 강의에 대해서 그렇게 많은 준비는 못한것이 사실이라 강의할때 도움도 좀 받았고. 휴가 나오기전에 1~2시간씩 코딩없이 강의 할만한 내용을 찾다가 C++을 사용할 1,2학년에게 좀 중요한 내용을 잡게 됬는데.. 휴가 나오고 PPT를 작성하는데 3일동안 하루 3~4번은 고치고 내용추가를 고민하는등 긴장을 좀 많이 탓다. OOP를 이해시키고 학교생활중 설계의 중요성을 몰라 삽질을 반복했기 때문에 그 후에 코딩하기 전에 설계하는법에 좀더 중점을 둔 시간을 가지고 싶었다. 그냥 무작정 달려들어서 Run&Fix도 하기 쉽지 않은 중복많은 2~3백자리 코딩을 하기 보다는 전날 Abstractionism에서 형진이가 말했듯이 20줄 이내의 코딩, 잘 설계된 잘나뉜 코딩은 어딘가를 목표로 갈때 지도나 정보를 모아 쉽고 편한 길로 가는것과 같다. 돈도 절약되고. 안힘들고. 문제가 생겨도 모아온 정보로 해결할수 있는.. 문제를 풀어 결과를 도출해놓는것도 좋지만.. 주위에는 답을 똑같이 도출해놓을수 있는사람이 90%는 될것이다. 그렇다면 짧고 보기쉬운것이 좋겠지. 정말 아쉬운 점이라면 API나 로보코드때 이걸 설명하고 했더라면 들은 학우들에게 더 많은것을 이해할수 있었던 시간일것이라고 생각하는데.. 좀더 빨리 준비했었어야됬어.
  • 데블스캠프2009/화요일 . . . . 2 matches
         || 변형진 || The Abstractionism || 컴퓨터공학의 발전과 함께한 노가다의 지혜 || attachment:/DevilsCamp2009/Abstractionism.ppt ||
  • 서지혜 . . . . 2 matches
          * 엔포지 : [http://nforge.zeropage.org/projects/bigtablet/wiki/FrontPage?action=show 빅테이블 분석및설계]
          * [http://nforge.zeropage.org/projects/deletewastes/wiki/FrontPage?action=show 엔포지 링크]
  • 영호의해킹공부페이지 . . . . 2 matches
         reaction but it's necessary)
         All following actions are done with the phone.
  • 이영호/문자열검색 . . . . 2 matches
          struct sigaction act;
          sigaction(SIGINT, &act, 0);
  • 이영호/미니프로젝트#1 . . . . 2 matches
          struct sigaction act;
          sigaction(SIGCHLD, &act, 0);
  • 일반적인사용패턴 . . . . 2 matches
          * 페이지를 삭제하지 않은 경우 - 한쪽 창에서 상단 오른쪽의 파란아이와 짝짝이 안경(?)을 클릭하시면 해당 페이지의 히스토리와 페이지의 수정내용을 알 수 있습니다. 일단 파란아이를 눌러서 복구하고 싶은 버전을 View 하십시오. 그 다음, URL 입력창에서 action=recall 을 action=raw로 바꾼 후 해당 내용을 다시 복사하시면 됩니다. (이때는 Frame 안에서 작업하지마시고, 위키 페이지를 직접 전체화면으로 하여 해당 URL이 보이는 상태에서 작업하십시오.)
  • 중위수구하기/김태훈zyint . . . . 2 matches
         <FORM METHOD=POST ACTION="<?=$PHP_SELF?>">
         <INPUT TYPE="hidden" name=mode value=action><INPUT TYPE="submit" name=submit value=전송>
         if($_POST['mode'] == 'action')
  • 1002/Journal . . . . 1 match
          * 구체적인 action plan 에 대해서는 추후 궁리.
          toolActionListener = new ToolActionListener ();
          toolMenuItem.addActionListener(toolActionListener);
  • 1002/TPOCP . . . . 1 match
          * 책 전체흐름에 대한 abstraction
  • 2010php/방명록만들기 . . . . 1 match
         <form method='post' action='process.php'>
  • AcceleratedC++/Chapter16 . . . . 1 match
         == 16.1 Use the abstractions you have ==
  • 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.|}}
  • AsemblC++ . . . . 1 match
         .exe파일의 어셈블 코드부분에 대한 질문. [http://zeropage.org/wiki/AsemblC_2b_2b?action=edit 지식in]
  • BeingALinuxer . . . . 1 match
          || 김정현 || 01 || interaction21@hotmail.com || 저두요^^; ||
  • BigBang . . . . 1 match
          * 삽입과 삭제시 transaction(작업 하다가 오류가 날 경우, 돌아갈 수 있는 기능)이 가능한 경우
  • Button/상욱 . . . . 1 match
         public class Test extends JFrame implements ActionListener
          button1.addActionListener(this);
          button2.addActionListener(this);
          public void actionPerformed(ActionEvent ae) {
  • Button/영동 . . . . 1 match
         public class JOptionPaneTest extends JFrame implements ActionListener {
          버튼1.addActionListener(this);
          버튼2.addActionListener(this);
          public void actionPerformed(ActionEvent ae) {
  • Button/진영 . . . . 1 match
         implements ActionListener
          yellowButton.addActionListener(this);
          blueButton.addActionListener(this);
          redButton.addActionListener(this);
          public void actionPerformed(ActionEvent evt)
  • C++ . . . . 1 match
         C++ (pronounced "see plus plus") is a general-purpose computer programming language. It is a statically typed free-form multi-paradigm language supporting procedural programming, data abstraction, object-oriented programming, and generic programming. During the 1990s, C++ became one of the most popular commercial programming languages.
  • ConvertAppIntoApplet/영동 . . . . 1 match
         public class AppletTest extends JApplet implements ActionListener {
          버튼1.addActionListener(this);
          버튼2.addActionListener(this);
          public void actionPerformed(ActionEvent ae) {
  • DPSCChapter4 . . . . 1 match
         '''Bridge(121)''' Decouple an abstraction from its implementation so that the two can vary independently
  • Debugging . . . . 1 match
          * [http://wiki.kldp.org/wiki.php/HowToBeAProgrammer?action=highlight&value=%B5%F0%B9%F6%B1%EB#s-2.1.1 kldp_HowToBeAProgrammer]
  • EightQueenProblemSecondTryDiscussion . . . . 1 match
         제가 보기에 현재의 디자인은 class 키워드만 빼면 절차적 프로그래밍(procedural programming)이 되는 것 같습니다. 오브젝트 속성은 전역 변수가 되고 말이죠. 이런 구성을 일러 God Class Problem이라고도 합니다. AOP(Action-Oriented Programming -- 소위 Procedural Programming이라고 하는 것) 쪽에서 온 프로그래머들이 자주 만드는 실수이기도 합니다. 객체지향 분해라기보다는 한 거대 클래스 내에서의 기능적 분해(functional decomposition)가 되는 것이죠. Wirfs-Brock은 지능(Intelligence)의 고른 분포를 OOD의 중요요소로 뽑습니다. NQueen 오브젝트는 그 이름을 "Manager"나 "Main''''''Controller"로 바꿔도 될 정도로 모든 책임(responsibility)을 도맡아 하고 있습니다 -- Meyer는 하나의 클래스는 한가지 책임만을 제대로 해야한다(A class has a single responsibility: it does it all, does it well, and does it only )고 말하는데, 이것은 클래스 이름이 잘 지어졌는지, 얼마나 구체성을 주는지 등에서 알 수 있습니다. (Coad는 "In OO, a class's statement of responsibility (a 25-word or less statement) is the key to the class. It shouldn't have many 'and's and almost no 'or's."라고 합니다. 만약 이게 자연스럽게 되지않는다면 클래스를 하나 이상 만들어야 한다는 얘기가 되겠죠.) 한가지 가능한 지능 분산으로, 여러개의 Queen 오브젝트와 Board 오브젝트 하나를 만드는 경우를 생각해 볼 수 있겠습니다. Queen 오브젝트 갑이 Queen 오브젝트 을에게 물어봅니다. "내가 너를 귀찮게 하고 있니?" --김창준
         제 말을 {{{~cpp mainProgram.runEverything()}}}을 실행하면 모든 게 마술처럼 알아서 실행되게 하라는 뜻으로 오해하지는 않았으면 합니다. 위 superman의 예에서는, 전자의 경우 superman을 제대로 이용해 먹으려면 superman의 내부적 구조를 알아야 합니다. superman의 구현에 종속적이 되는 셈이죠. 하지만 후자는 그게 디커플링이 됩니다. 자기가 매일 가는 길에 있는 도시를 방문하는 것은 superman이 스스로 수행할 수 있어야 할 책임이 있다 이거죠. Queen이라는 객체가 여덟개가 있다고 칩시다. 얘네들한테 "너는 저 여왕을 공격할 수 있니?"하고 묻고 그 결과를 가지고 여왕을 배치하고 하는 것을 하나의 추상(abstraction)으로 묶는 것이 어떨까요? 묻지말고 "시키자"는 것이죠 -- 여덟개의 똑똑한 Queen 객체를 만들고 하나씩 "판 위로 올라가라"고 시킵니다. 이렇게 하면 Board와 Queen에 커플링이 생겨서 문제가 되는 건 아니냐고 했는데, 어차피 Queen은 Board 없이는 별 의미가 없고, 또, 그렇게 하지 않더라도 어떻게든 비슷하거나 혹은 더 큰 정도의 커플링이 존재합니다. 어쨌건, 지금 단계에서는, 더 나은 방법이라기보다 그냥 다른 방법이라고 편안하게 생각하면 좋을 듯 합니다. --김창준
  • EnterpriseJavaBeans . . . . 1 match
         Java 의 분산컴포넌트 모델. RMI 의 개념 + Transaction + @
  • Favorite . . . . 1 match
         [http://no-smok.net/nsmk/%EB%8C%80%ED%95%99%EC%83%9D%EC%9D%B4%EC%95%8C%EC%95%84%EC%95%BC%ED%95%A0%EA%B2%83%EB%93%A4?action=highlight&value=%EC%98%81%EC%96%B4%7C%EC%9E%91%EB%AC%B8]
  • HardcoreCppStudy/두번째숙제/CharacteristicOfOOP/김아영 . . . . 1 match
         '''* 추상화(Abstraction) '''
  • HelpOnPageDeletion . . . . 1 match
         모니위키 1.1.3부터 지원하는 `revert`액션을 사용합니다. 단축키로 '''i'''를 누르면 변경내역을 보여주며 이때에 [[GetText(revert)]]라는 액션에 대한 링크가 나타납니다. `revert` 액션에 대한 링크가 나타나지 않으면 {{{?action=revert&rev=1.100}}}식으로 주소줄에 써넣은 후에 페이지를 불러오면 대화창이 뜨게 됩니다.
  • ISAPI . . . . 1 match
          * ISAPI operates below helpful IIS infrastructure : helpful programming abstractions are absent. (ex: session )
  • IntelliJ . . . . 1 match
         || ctrl + I || Interface 구현. actionPerformed 등의 상위 추상클래스들의 interface 틀을 만들어준다. 유용 ||
  • IntelliJUIDesigner . . . . 1 match
         Upload:intellijui_writeaction.gif
  • InternalLinkage . . . . 1 match
         The second subtlety has to do with the interaction of inlining and static objects inside functions. Look again at the code for the non-member version of thePrinter: ¤ Item M26, P17
  • JSP/SearchAgency . . . . 1 match
          out.write("<form method=post action=SearchAgency.jsp>");
  • JTDStudy/두번째과제/상욱 . . . . 1 match
         public class HelloWorld extends JApplet implements ActionListener {
          public void actionPerformed(ActionEvent e) {
          button1.addActionListener(this);
  • JTDStudy/두번째과제/장길 . . . . 1 match
         public class TestButtonMain extends Applet implements ActionListener{
          b1.addActionListener(this);
          public void actionPerformed(ActionEvent e) {
  • Java Study2003/첫번째과제/곽세환 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
  • Java Study2003/첫번째과제/노수민 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
  • Java Study2003/첫번째과제/장창재 . . . . 1 match
         자바는 C++와는 달리 처음부터 객체지향 개념을 기반으로 하여 설계되었고, 객체지향 언어가 제공해 주어야 하는 추상화(Abstraction), 상속(Inheritance), 그리고 다형성(Polymorphism) 등과 같은 특성들을 모두 완벽하게 제공해 주고 있습니다. 또한, 자바의 이러한 객체지향적 특성은 분산 환경, 클라이언트/서버 기반 시스템이 갖는 요구사항도 만족시켜 줄 수 있습니다.
  • JavaScript/2011년스터디/CanvasPaint . . . . 1 match
          <form action="">
  • JihwanPark . . . . 1 match
          * [http://zeropage.org/moin/moin.cgi?action=userform&uid=1010395501.34.23553 로그인]
  • Kongulo . . . . 1 match
          parser.add_option('-l', '--loop', action='store_true', dest='loop',
  • MoniWikiPlugins . . . . 1 match
         모니위키는 MoinMoin과 호환하는 Macro를 가지고 있으며, 그 매크로에 상응하는 action을 각각 가지고 있는 경우 혹은 액션만 있고 매크로는 없는 경우가 있습니다.
  • MoreEffectiveC++/Miscellany . . . . 1 match
         이러한 변환 과정에서 처음의 값은 추상 추상 클래스 A 를 확인하게 만든다. C1과 C2는 아마 보통 몇가지를 가지고 있다.:그것은 그들이 public 상속이 되는 이유이다. 이 변환으로 당신은 반드시 그 가지고있는 어떻것을 확인해야 한다. 게다가 C++에서 클래스로 모호한 부분에 대하여 명확하게 해주어야 한다. 그것은 보통 추상화(abstraction)가 추구해야 하는 것이고 잘 정의된 멤버 함수와 확실한 문법으로 구현된다.
  • NoSmokMoinMoinVsMoinMoin . . . . 1 match
         || 속도 || 느림 || 보통 || 이건 좀 개인적 느낌임. 다른 사람 생각 알고 싶음. nosmok moinmoin 은 action 으로 Clear History 지원 ||
  • OOP . . . . 1 match
         All actions should be delegated to objects
  • PerformanceTest . . . . 1 match
          short millitm ; /* fraction of second (in milliseconds) */
  • ProgrammingLanguageClass/2006/EndTermExamination . . . . 1 match
         02, 05 년에 언어 디자인시 고려해야할 점에 대한 문제가 출제되어서 그쪽으로 공부를 많이 했지만 나오지 않았다는 점에서 의외였음. 디자인 이슈를 공부할 생각이라면 Pointer, Array, Abstraction, Subprogram 의 디자인 이슈에 대해서 공부하는 것이 좋을 듯함.
  • ProgrammingLanguageClass/Exam2002_2 . . . . 1 match
          * abstaction 에서의 design issue 에 대해 쓰시오.
  • ProjectPrometheus/CookBook . . . . 1 match
          <init-param enable-transaction="false"/>
  • ProjectZephyrus/Thread . . . . 1 match
          [http://javaservice.net/~java/bbs/read.cgi?m=devtip&b=servlet&c=r_p&n=973389459&k=고려사항&d=t#973389459 JDBC 연동시 코딩고려사항(Transaction처리) - 제3탄-] [[BR]]
  • RSSAndAtomCompared . . . . 1 match
         === Extraction and Aggregation ===
  • SeparatingUserInterfaceCode . . . . 1 match
         너무 이상적이라고 말할지 모르겠지만, DIP 의 원리를 잘 지킨다면(Dependency 는 Abstraction 에 대해서만 맺는다 등) 가능하지 않을까 생각. 또는, 위에서의 WIMP를 그대로 웹으로 바꾸어도. 어떠한 디자인이 나올까 상상해본다.
  • SystemEngineeringTeam/TrainingCourse . . . . 1 match
          * 왜 위의 5가지냐고? 그냥, 어디서 들어봐서. 왜 저 5가지인지는 그렇게 중요하지 않다. [http://www.5055.co.kr/pds/spboard/board.cgi?id=establishment&page=16&action=view&number=34.cgi&img=no 일단 선택지를 좁히는 것이 중요.] 진짜 선택은 이 다음부터다.
  • TestDrivenDevelopment . . . . 1 match
          * [http://xper.org/wiki//xp/TestDrivenDevelopment?action=fullsearch&value=TestDrivenDevelopment&literal=1 XPER의 TDD 관련 자료들]
  • TheJavaMan/스네이크바이트 . . . . 1 match
          m3.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e)
          if(e.getActionCommand()=="초보")
          else if(e.getActionCommand()=="중수")
          else if(e.getActionCommand()=="고수")
          System.out.println(e.getActionCommand());
  • UnixSocketProgrammingAndWindowsImplementation . . . . 1 match
         IPv6 Socket Programming : [http://www.joinc.co.kr/modules/moniwiki/wiki.php/article_IPv6_Programing?action=print2]
  • UploadFile . . . . 1 match
         ZeroWiki 하단에 있는 UploadFile action 을 클릭후, 자료를 올린다.
  • UploadFileMacro . . . . 1 match
         예를 들어, {{{MyPage}}}에 들어가서 {{{MyPage?action=UploadFile}}}을 하거나, MyPage에서 {{{[[UploadFile]]}}} 매크로를 사용하여 파일을 업로드를 하면 $upload_dir='pds';라고 되어있는 경우에 {{{pds/MyPage/}}}가 새롭게 만들어지고 거기에 올린 파일이 저장된다.
  • UploadedFiles . . . . 1 match
         /!\ UploadedFiles 플러그인은 액션과 매크로를 동시에 지원하므로, 주소창에 {{{?action=uploadedfiles}}}를 덭붙여 주면 그 페이지에 첨부된 파일을 보여줍니다.
  • UseSTL . . . . 1 match
          * http://borlandforum.com/impboard/impboard.dll?action=list&db=cpp_tip
  • User Stories . . . . 1 match
         Developers estimate how long the stories might take to implement. Each story will get a 1, 2 or 3 week estimate in "ideal development time". This ideal development time is how long it would take to implement the story in code if there were no distractions, no other assignments, and you knew exactly what to do. Longer than 3 weeks means you need to break the story down further. Less than 1 week and you are at too detailed a level, combine some stories. About 80 user stories plus or minus 20 is a perfect number to create a release plan during release planning.
  • WikiGardening . . . . 1 match
          * [http://165.194.17.15/wiki/FindPage?action=titlesearch&context=0&value=%BC%BC%B9%CC%B3%AA Title search for "세미나"]
  • YouNeedToLogin . . . . 1 match
          * 보다 좋은 RecentChanges 페이지와 info action(파란아이)를 볼 수 있다.
  • ZIM . . . . 1 match
          * Class Diagram & Interaction Diagram ( by 시스템 아키텍트)
  • ZPBoard/PHPStudy/MySQL . . . . 1 match
         <FORM method="POST" action="save.php" >
  • ZeroPage/임원/회의/2011-02-13 . . . . 1 match
          * ThreeFs + Future action plan을 충실히 서술하는 것을 권장.
  • ZeroPageHistory . . . . 1 match
          * 데블스캠프 : Java, HTML, CSS, Scratch, SVN, Robocode, WinAPI, Abtraction, RootKit, OOP, MFC, MIDI, JavaScript, Short Coding
  • ZeroPageServer/old . . . . 1 match
          * (V) UploadFile action 동작
  • ZeroPage_200_OK/소스 . . . . 1 match
          <form action="http://zeropage.org/act" method="post" onsubmit="if (this.password.value.length < 1) {alert('required pw'); return false;} else {return true;}">
  • ZeroPage성년식/거의모든ZP의역사 . . . . 1 match
          * 데블스캠프 : Java, HTML, CSS, Scratch, SVN, Robocode, WinAPI, Abtraction, RootKit, OOP, MFC, MIDI, JavaScript, Short Coding
  • [Lovely]boy^_^/EnglishGrammer/PresentPerfectAndPast . . . . 1 match
          B. When we use the peresent perfect, there is a connection with now. The action in the past has a result now.
  • comein2 . . . . 1 match
         [http://165.194.17.15/moin/moin.cgi?action=userform&uid=1009955467.92.23121 comein2로그인]
  • phoenix_insky . . . . 1 match
         http://zeropage.org/moin/moin.cgi?action=userform&uid=1029580697.16.3943
  • 노스모크모인모인 . . . . 1 match
         대문누르면 타이틀 없어지는 것은 moin_config.py 에서 {{{~cpp FrontPage?action=print&value=notitle}}} 의 ? 이후를 지워버리면 원래처럼 됨.
  • 논문번역/2012년스터디/이민석 . . . . 1 match
         오프라인 필기 글자 인식을 위한 시스템을 소개한다. 이 시스템의 특징은 분할이 없다는 것으로 인식 모듈에서 한 줄을 통째로 처리한다. 전처리, 특징 추출(feature extraction), 통계적 모형화 방법을 서술하고 저자 독립, 다저자, 단일 저자식 필기 인식 작업에 관해 실험하였다. 특히 선형 판별 분석(Linear Discriminant Analysis), 이서체(allograph) 글자 모형, 통계적 언어 지식의 통합을 조사하였다.
  • 데블스캠프2009/화요일후기 . . . . 1 match
         == Abstractionism - 변형진 ==
  • 데블스캠프2010/넷째날/DHTML . . . . 1 match
         <form name="formname" method="get" action="otaku.php">
  • 데블스캠프2013/둘째날/API . . . . 1 match
          action="write.php">
  • 레밍즈프로젝트/이승한 . . . . 1 match
         ActionManager제작
         예정작업 : Clemming class, CactionManager, ClemmingList, Cgame 테스팅. CmyDouBuffDC, CmyAnimation 버전 복구. 예상 약 8-9시간.
  • 만년달력/인수 . . . . 1 match
          submit.addActionListener( new SubmitListener() );
          class SubmitListener implements ActionListener {
          public void actionPerformed(ActionEvent ev) {
  • 상협/프로젝트관련 . . . . 1 match
          * [http://www.caucse.net/cgi-bin/moin/moin.cgi/_c0_da_b9_d9_c7_c1_b7_ce_c1_a7_c6_ae_2f_b9_e6_c8_ad_ba_ae_c6_c0_b8_de_bd_c5_c0_fa?action=highlight&value=%2F%C1%F8%C7%E0%BB%F3%C8%B2 자바시간에 팀 프로젝트로 나온 메신저 짜기]
  • 새싹교실/2012/아무거나/1회차 . . . . 1 match
         [http://wiki.zeropage.org/wiki.php/%EC%83%88%EC%8B%B9%EA%B5%90%EC%8B%A4/2012/%EC%95%84%EB%AC%B4%EA%B1%B0%EB%82%98/1%ED%9A%8C%EC%B0%A8?action=edit 1회차 내용 고치기]
  • 새싹교실/2012/아무거나/2회차 . . . . 1 match
         [http://wiki.zeropage.org/wiki.php/%EC%83%88%EC%8B%B9%EA%B5%90%EC%8B%A4/2012/%EC%95%84%EB%AC%B4%EA%B1%B0%EB%82%98/2%ED%9A%8C%EC%B0%A8?action=edit 2회차 내용 고치기]
  • 새싹교실/2012/아무거나/3회차 . . . . 1 match
         [http://wiki.zeropage.org/wiki.php/%EC%83%88%EC%8B%B9%EA%B5%90%EC%8B%A4/2012/%EC%95%84%EB%AC%B4%EA%B1%B0%EB%82%98/3%ED%9A%8C%EC%B0%A8?action=edit 3회차 내용 고치기]
  • 새싹배움터05 . . . . 1 match
          C, 발표잘하는법, PPT제작 기법, [Python], [PHP], [ExtremeProgramming], ToyProblems, Linux, Internetworking(TCP/IP), Ghost(demonstration), OS(abstraction), OS+Windows, Embedded System, 다양한 언어들(Scheme, Haskell, Ruby, ...), 보안(본안의 기본과 기초, 인터넷 뱅킹의 인증서에 대해..), C언어 포인터 특강(?), 정보검색(검색 엔진의 원리와 구현), 컴퓨터 구조(컴퓨터는 도대체 어떻게 일을 하는가), 자바 가상머신 소스 분석
  • 영호의바이러스공부페이지 . . . . 1 match
          jmp random_mutation ; Put the virus into action
  • 이승한/PHP . . . . 1 match
          <form method="post" action="process.php">
  • 이승한/mysql . . . . 1 match
          <form name = "write_form" method = "post" action = "./new.html?mode=process">
  • 작은자바이야기 . . . . 1 match
          * Abstraction layer
  • 정모/2002.5.16 . . . . 1 match
          * HCI(Human Computer Interaction)발표 하겠습니다. 이번 심리학과 리포트 때문에 작성하던 것인데, 같이 하시는 분께서 관련 업계 종사자라서, 너무 많은 자료 때문에 제가 치일 정도 입니다. 일단 방대한 자료는 필요시 드릴수 있고, (관련 논문, Samsung 개발자료 etc, xp, aqua, palm guide line 등) 발표 골자는 기본적으로 심리학의 이해 시간에 발표 자료 기반으로 컴공과에 맞추어 발표 하겠습니다. 못했지요. 약간 아쉽네요. 차후 HCI자료가 필요하신분이 있거나, 이런 분야도 있구나 란걸 알고 싶으면 세미나 해드립니다. --상민
  • 정모/2012.9.10 . . . . 1 match
          [http://wiki.zeropage.org/wiki.php/Uploaded%20Files?action=download&value=OpenCamp.png 타임테이블]
  • 졸업논문/요약본 . . . . 1 match
         Web environment has became a standalone platform. Object-oriented languages, such as python, are suitable for web. Django is a web application framework written by python, and helps web developers writting web application more agile by abstracting database. Django provides high level abstraction on database, higher than CLI which uses ODBC. Django, for instance, creates database tables when developer writes classes in python, and modifies tables when developer modifies classes in python. In addition, django helps developers using database on host-language(python) level by abstracting insertion, deletion, update, retrieving of recodes to class method. Therefore, web developers make programs more agile.
  • 좌뇌우뇌문제해결지향 . . . . 1 match
         [http://prome.snu.ac.kr/~instps/board2/crgtest/crgtest.cgi?action=read 이곳]에 가면 자신의 창의성을 테스트 할 수 있다. 결과에 연연하지 말고 재미삼아서 해보는 것이 좋을 듯 하다.
  • 즐겨찾기 . . . . 1 match
         [http://no-smok.net/nsmk/%EB%8C%80%ED%95%99%EC%83%9D%EC%9D%B4%EC%95%8C%EC%95%84%EC%95%BC%ED%95%A0%EA%B2%83%EB%93%A4?action=highlight&value=%EC%98%81%EC%96%B4%7C%EC%9E%91%EB%AC%B8]
  • 창섭/통기타 . . . . 1 match
         || [http://165.194.17.15/~wiz/cgi-bin/MoinMoin/wiki-moinmoin/moin.cgi/_c5_eb_b1_e2_c5_b8?action=highlight&value=음악분류#line23 창섭의 개인위키] ||
  • 타도코코아CppStudy/0724/선희발표_객체지향 . . . . 1 match
          * 데이터 추상화(data abstraction) : 자료 객체(data entity)들의 중요한 특성을 모형화한다. 이 모형이 객체의 속성이 된다.
  • 타도코코아CppStudy/객체지향발표 . . . . 1 match
          * 데이터 추상화(data abstraction) : 자료 객체(data entity)들의 중요한 특성을 모형화한다. 이 모형이 객체의 속성이 된다.
  • 헝가리안표기법 . . . . 1 match
         솔직히 필자도 얼마전까지 이런 변수 명명에 대한 관례를 잘 지키지 않았다. 그러나 변수 명명에 관한 표준화된 관례를 지켜주면 코드의 가독성을 높여줄 뿐 아니라 예를 들어 카운터 변수를 count라고 지을지 cnt라고 지을지 고민하지 않아도 되는 편리함을 누릴 수 있다. - [http://dasomnetwork.com/~leedw/mywiki/moin.cgi/_c7_eb_b0_a1_b8_ae_be_c8_20_c7_a5_b1_e2_b9_fd?action=edit 출처]
Found 156 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.3466 sec