프로그램언어 썸네일형 리스트형 System Error Codes (0-499) Note The information on this page is intended to be used by programmers so that the software they write can better deal with errors. If you are an end-user that is experiencing difficulty with an application you are installing or running, contact customer support for the software that is displaying the error message. To obtain support for a Microsoft product, go to http://support.microsoft.com. .. 더보기 [Python] 폴더에 존재하는 파일 리스트로 저장. 어떠한 자료에 대한 통계를 만들기로 했습니다. 인용) 통계를 내려고 어떠한 폴더에 데이터를 모아놨는데 어떻게 해야되지? 첫 번째로 데이터가 모여 있다는 폴도를 확인합니다. 그러기 위해서는 네이밍 규칙이 있는 통계자료가 있겠죠? 예로 날짜 순이던지 어떠한 규칙에 의해 파일이 생성되었을 거라 판단됩니다. 아닌 경우도 있겠지만, 규칙이 존재한다는 전제를 깔고 시작하겠습니다. 자, 어떻게 처리 해야 될까여? 일단 파일을 읽어 들어야 되지 않을까여? 데이터를 일일이 읽어 들여 사용할 수 있지만, 나중에 규칙을 더 만들 수 있기때문에 일단 파일 이름만 list로 보관하기로 마음을 먹었습니다. ''' Created on 2010. 6. 10. @author: tingcobell ''' #!/usr/bin/env py.. 더보기 [flex 강의 ] 플렉스 시작 1일차. 플렉스를 배우기 위한 선행 조건들 - ActionScript 3.0 이상 - 플래시 이벤트 모델 - 플래시 DisplayObject - 추상과 / 다형성 프로그램 페러다임(철학) - 절차적인 프로그래밍 ! 모든 것을 함수로 풀겠어 --> 기능 중심으로 --> 친인간적 ! 키워드 : 함수 변수 상수 제어문 반복문 연산자. ! 약점 : 유지보수가 취약, 중대형 프로젝트에 사용 불가능( 10만줄 이상의 코드 ) ! 장점 : 소형 프로젝트에서는 결과물 산출이 빠르다.( 1000 줄 이하 프로젝트 ) 성능도 상당히 빠름. 디바이스 또는 OS 개발.function 고객등록하기() { } function 고객검색하기() { } function 소견쓰기() { } var mName:String; var mEmail:S.. 더보기 tbb::atomic testRunner /* Copyright 2005-2009 Intel Corporation. All Rights Reserved. This file is part of Threading Building Blocks. Threading Building Blocks is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Threading Building Blocks is distributed in the hope that it will be useful, but WITHOUT ANY WAR.. 더보기 RFC 1321 - MD5 Message-Digest Algorithm 출처 : http://www.electrictoolbox.com/rfc/1321/ The MD5 Message-Digest Algorithm Status of this Memo This memo provides information for the Internet community. It does not specify an Internet standard. Distribution of this memo is unlimited. Acknowlegements We would like to thank Don Coppersmith, Burt Kaliski, Ralph Merkle, David Chaum, and Noam Nisan for numerous helpful comments and suggestions... 더보기 Intel Threading Building Blocks 관련 내용 Documentation Blogs Code Samples Doxygen Open Source Documentation Getting Started Guide [PDF 120KB] Tutorial [PDF 539KB] Reference Manual [PDF 988KB] Design patterns [PDF 262KB] CHANGES file [TXT 35KB] Commercial Documentation Release Notes [TXT 6KB] Installation Guide [PDF 22KB] Getting Started Guide [PDF 120KB] Tutorial [PDF 528KB] Reference Manual [PDF 977KB] TBB's O'Reilly BookIntel® Thread.. 더보기 [Python] Class 구조 갖추기. 프로그램 언어를 사용해보신 분이라면 대부분이 구현방법에 대해 알고 있을 것이라 믿습니다. 지금 구현하고자 하는 언어의 기본 클래스를 만드리고 쉽게 어떻게 만드는지에 대해서만 설명합니다. ''' Created on 2010. 5. 9. @author: all ''' class FirstClass(object): ''' classdocs ''' def __init__(self, params): ''' Constructor ''' self.data = params def setData(self, value): self.data = value def display(self): print self.data x = FirstClass("King Arthur") y = FirstClass(3.14) #x.setDat.. 더보기 [Python] Modules 사용에 대한 용어 정의 Modules are processed with two new statements and one important built-in function we explore here: import Lets a client fetch a module as a whole from Allows clients to fetch particular names from a module reload Provides a way to reload a module's code without stopping Python Why Use Modules? Let's start with the obvious first question: why should we care about modules? The short answer is that.. 더보기 이전 1 ··· 6 7 8 9 10 11 12 ··· 20 다음