E D R , A S I H C RSS

Full text search for "ws"

ws


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Memo . . . . 54 matches
         #include <ws2tcpip.h>
          WSAData wsaData;
          if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0)
          printf("WSAStartup() failed.n");
          if (WSAIoctl(Sock, SIO_RCVALL, &I, sizeof(I), NULL, NULL, &BytesReturned, NULL, NULL) == SOCKET_ERROR)
          printf("WSAIoctl() failed.n");
          WSACleanup();
         //Project -> Setting -> LINK 메뉴 -> Object/library modules: 의 끝부분에 ws2_32.lib 를 추가한다.
          WSADATA wsaData;
          if( WSAStartup(MAKEWORD(2,2), &wsaData) == -1 )
          error("WSAStartup Error");
          WSACleanup();
          def collectNews(self, aNews):
          self.news = aNews
         class NewsCompany:
          self.news = ""
          self.news = self.reporter.news
         class SportNewsCompany(NewsCompany):
          NewsCompany.__init__(self,reporter)
         class EconomyNewsCompany(NewsCompany):
  • MatrixAndQuaternionsFaq . . . . 42 matches
          rows and columns swapped.
          matrix represented as follows:
          In Performer (for example) this would be populated as follows:
          The size of a matrix is defined in terms of the number of rows
          A matrix with M rows and N columns is defined as a MxN matrix.
          This is referenced as follows:
          2, 3 or 4 rows and columns. These are referred to as 2x2, 3x3 and 4x4
          A matrix with M rows and N columns is said to have order MxN.
          matrix is as follows:
          The argument to this goes as follows:
          is defined as follows:
          With a 4x4 matrix, the procesing time is used as follows:
          Then the direction vector for each axis is as follows:
          The identity matrix is matrix in which has an identical number of rows
          are set to zero. For example a 4x4 identity matrix is as follows:
          of rows and columns.
          the result is as follows:
          Then the multiplication is performed as follows:
          This can be proved as follows:
          For a 2x2 matrix M, the determinant D is calculated as follows:
  • OurMajorLangIsCAndCPlusPlus/2006.2.06/김상섭 . . . . 42 matches
         class newstring
          newstring::newstring()
          explicit newstring::newstring(int num)
          newstring::~newstring()
          int newstring::length() const
          newstring::newstring(const char* ch)
          newstring::newstring(const newstring & ns)
          void operator+=(const newstring & a)
          newstring & newstring::operator=(const char* ch)
          newstring & newstring::operator=(const newstring ns)
         bool operator==(const newstring & a, const newstring & b)
         newstring & operator+(const newstring & a, const newstring & b)
          newstring *temp = new newstring(strlen(a.ch)+strlen(b.ch)+1);
         ostream & operator<<(ostream & os, const newstring& ns)
         istream & operator>>(istream & is, newstring & ns)
         /* newstring s = "123";
          newstring s = "123";
          const newstring s = "123";
          newstring s1 = "123", s2 = "456";
          newstring s;
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 27 matches
         using System.Windows.Forms;
          #region Windows Form Designer generated code
          this.startBtn = new System.Windows.Forms.Button();
          this.timer1 = new System.Windows.Forms.Timer(this.components);
          this.hour = new System.Windows.Forms.Label();
          this.minute = new System.Windows.Forms.Label();
          this.second = new System.Windows.Forms.Label();
          this.milli = new System.Windows.Forms.Label();
          this.label1 = new System.Windows.Forms.Label();
          this.label2 = new System.Windows.Forms.Label();
          this.label3 = new System.Windows.Forms.Label();
          this.stopBtn = new System.Windows.Forms.Button();
          this.recordBtn = new System.Windows.Forms.Button();
          this.listBox1 = new System.Windows.Forms.ListBox();
          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
          private System.Windows.Forms.Button startBtn;
          private System.Windows.Forms.Timer timer1;
          private System.Windows.Forms.Label hour;
          private System.Windows.Forms.Label minute;
          private System.Windows.Forms.Label second;
  • JavaNetworkProgramming . . . . 24 matches
          public static void println(String msg) throws IOException{
          public static void main(String[] args) throws IOException {
          public static void main(String[] args) throws IOException {
          public static void main(String[] args) throws IOException {
          public SimpleOverwritingFileOutputStream(String filename) throws IOException {
          public void write(int datum) throws IOException {
          public void close() throws IOException{
          public SeekableFileOutputStream(String filename)throws IOException {
          public SeekableFileOutputStream(File file) throws IOException{
          protected SeekableFileOutputStream(RandomAccessFile file) throws IOException{
          public void setPosition(long position) throws IOException{
          public long getPosition() throws IOException{
          public long getLength() throws IOException{
          public void write(int b) throws java.io.IOException {
          public MarkResetFileInputStream(String filename)throws IOException {
          public MarkResetFileInputStream(File file)throws IOException {
          protected MarkResetFileInputStream(RandomAccessFile file) throws IOException{
          public void reset() throws IOException{
          public MyObjectOutputStream(OutputStream out)throws IOException {
          protected void writeStreamHeader() throws IOException{
  • MoreEffectiveC++/Techniques1of3 . . . . 24 matches
         사실 가상 생성자라는건 존재하지 않는다. 하지만 이를 비슷하게 구현하는 것이다. 예를들자면 당신이 newsletter을 보내는 어플리케이션을 짜는데, 여기에 글과 그림 데이터 인자로 구성시킨다고 가정하면 이렇게 만들수 있을 것이다.
         class NLComponent{ // News Letter 의 부모 인자
         class NewsLetter { // 글과, 그림을 가지는 News Letter
         NewsLetter 객체는 아마 디스크에서 자료를 적재할 것이다. NewsLetter가 디스크에서 자료를 가지고 보여주기 위해 istream을 사용해서 NewsLetter를 구성할 객체들을 생성한다고 가정한다면 다음과 같은 코드들을 대강 만들수 있는데
         class NewsLetter {
          NewsLetter(istream& str);
         NewsLetter::NewsLetter(istream& str)
          newsletter의 인자중 리스트인 components에 만든 객체를 넣는다.
         class NewsLetter{
         NewsLetter::NewsLetter(istream& str)
          // readComponent가 해석한 객체를 newsletter의 리스트 마지막에 추가시키는 과정
         보다시피 클래스의 가상 복사 생성자는 실제 복사 생성자를 호출한다. 그러므로 "복사" 의미로는 일반 복사 생성자와 수행 기능이 같다 하지만 다른 점은 만들어진 객체마다 제각각의 알맞는 복사 생성자를 만든다는 점이 다르다. 이런 clone이 NewsLetter 복사 생성자를 만들때 NLComponent들을 복사하는데 기여를 한다. 어떻게 더 쉬운 작업이 되는지 다음 예제를 보면 이해 할수 있을 것이다.
         class NewsLetter{
          NewsLetter(const NewsLetter* rhs); // NewsLetter의 복사 생성자
         NewsLetter::NewsLetter(const NewsLetter* rhs)
  • 데블스캠프2013/셋째날/머신러닝 . . . . 23 matches
          public struct News
          News[] sampleNews = new News[11293];
          sampleNews[i].words = new int[SIZEBIG];
          News[] testNews = new News[7528];
          testNews[i].words = new int[SIZEBIG];
          sampleNews[count].words[i] = Convert.ToInt32(temp1[i]);
          if (temp1[i] == "1") sampleNews[count].category = i;
          testNews[count].words[i] = Convert.ToInt32(temp1[i]);
          diffTemp = testNews[i].words[k] - sampleNews[j].words[k];
          testNews[i].category = sampleNews[idx].category;
          Console.WriteLine("{0} : {1}", i, testNews[i].category);
          Console.WriteLine(testNews[i].category);
          const int News_Num=11293;
          //int News[News_Num];
          for(int k=0;k<News_Num;k++){
          public static void main(String[] args) throws Exception {
          const int rowSize();
         const int DoubleArray::rowSize(){
          for(int i = 0; i < target.rowSize(); i++){
          for(int i = 0; i < train_data.rowSize(); i++){
  • 데블스캠프2011/다섯째날/HowToWriteCodeWell/임상현,서민관 . . . . 21 matches
          public void setUp() throws Exception {
          public void tearDown() throws Exception {
          public void testgoTo1() throws Exception {
          public void testgoTo2() throws Exception {
          public void testgoTo3() throws Exception {
          public void testupTo1() throws Exception {
          public void testupTo2() throws Exception {
          public void testupTo3() throws Exception {
          public void testupTo4() throws Exception {
          public void testdownTo1() throws Exception {
          public void testdownTo2() throws Exception {
          public void testdownTo3() throws Exception {
          public void testdownTo4() throws Exception {
          public void testpush1() throws Exception {
          public void testpush2() throws Exception {
          public void testpush3() throws Exception {
          public void testpush4() throws Exception {
          public void goTo(int i) throws Exception {
          public void downTo(int i) throws Exception {// 외부에서 엘리베이터가 내려오도록 함.
          public void push(int i) throws Exception { // 엘리베이터 내부에서 i층으로 이동.
  • 루프는0부터? . . . . 21 matches
         for(int r=0; r!=rows; ++r)
         for(int r=1; r<=rows; ++r)
         첫번째 for문은 [0, rows)를 사용하는 것이 편하고, 두번째 for문은 [1, rows]를 사용하는것이 더 편하다.
         보통 비대칭형 범위는 대칭형 범위보다 더 사용하기 쉽습니다. 왜냐하면 다음과 같은 중요한 속성이 있기 때문입니다. [m, n)과 같은 형식의 범위는 n-m개의 요소들을 가지며 [m,n]의 형식은 n-m+1의 요소들을 가집니다. 따라서 [0, rows)에서 요소들의 개수는 직관적인데 반해, [1, rows]에서 요소들의 개수는 덜 직관적 입니다. 이러한 속성차이는, 특히 빈 범위의 경우에 더 뚜렷합니다. 만약 비 대칭형 범위를 사용한다면, 빈 범위를 [m,n)으로 표현할수 있지만, 대칭형 범위에서는 [n, n-1]을 사용해야 합니다. 범위의 끝이 시작보다 더 작을수 있따는 가능성은 프로그램 설계시 끝이 정의되지 않아 버리는 문제를 야기 시킬수 있습니다.
         지금까지 r개의 행을 출력했따고 표현할 수 있기 때문입니다. 만약 1부터 번호를 매긴다면? 이제막 r번째 행을 출력하려는 찰나라고 정의할 수도 있겠지만, 그러한 구문은 불변식으로 정당치 않습니다. 왜냐하면, while이 조건식을 마지막으로 검사할때, rows+1이 되기 때문입니다. 이때 우리가 원하는 것은 rows행만을 출력하는 것 입니다. 따라서 우리는 r번째 행을 막 출력 하려던 것이 아닌 셈이 됩니다. 지금까지 r-1개의 행들을 출력했다고 불변식을 정의할 수도 있을 것입니다. 하지만 불변식을 그런식으로 정의 햇다면, r을 0부터 시작시켜 단순화 시키는 것이 더 낫지 않을까요?
         조건식이 r!=rows라면, 루프가 끝날 때 r==rows라는 사실을 알수 있습니다. 불변식은 r개의 행을 출력했따는 사실을 말해 주기 때문에, 정확히 rows개의 행을 출력했다는 것을 알 수 있습니다. 한편, 만약 조건식이 <=rows라면, 그로부터 알 수 있는 사실은 최소한 rows개의 행을 출력했다는 사실 뿐입니다. 따라서 그 이상을 출력했을 수도 있는 것입니다. 0부터 번호를 매기게 되면 정확히 rows번의 반복을 수행했는지 확실히 하고자 할 때, R!=rows를 조건식으로 사용할 수 있습니다. 또한, 반복횟수가 rows번 또는 그 이상이 되기만을 원한다면, r<rows를 사용할 수 있습니다. 만약 1부터 번호를 매기다면 최소 rows번의 반복만을 원할때 r<=rows를 사용할 수 있습니다. 하지만, rows가 정확한 숫자가 되도록 하려면 어떻게 해야 할까요? 그런 경우에는 좀더 복잡한 조건식인 r==rows+1과 같은 방법을 사용 할수 있습니다. 하지만 이렇게 복잡하게 해서 얻을수 있는 이득은 거의 없습니다.
  • DevelopmentinWindows/UI . . . . 19 matches
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Window1.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Window2.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Menu.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Button.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/EditBox.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/ComboBox.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/ListBox.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/ScrollBar.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/TrackBar.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/ProgressBar.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Tab.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/TreeView.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Open.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Font.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Color.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Print.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Find.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/UI/Replace.jpg
         ["DevelopmentinWindows"]
  • TestDrivenDatabaseDevelopment . . . . 17 matches
          public void setUp() throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException {
          public void tearDown() throws SQLException {
          public void testEdit() throws SQLException {
          public void testTotalArticle() throws SQLException {
          public void testCreateArticle() throws SQLException {
          public void testDelete() throws SQLException {
          public void testGet() throws SQLException {
          public void testArticleTableInitialize() throws ClassNotFoundException, IllegalAccessException, InstantiationException, SQLException {
          private void initConnection() throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
          private void uninitConnection() throws SQLException {
          public void testDuplicatedInitialize() throws ClassNotFoundException, InstantiationException, IllegalAccessException, SQLException {
          Article get(int index) throws SQLException;
          void initialize() throws SQLException;
          void destroy() throws SQLException;
          void edit(int index, String writer, String title, String body) throws SQLException;
          int getTotalArticle() throws SQLException;
          void createArticle(String writer, String title, String body) throws SQLException;
  • 컴퓨터공부지도 . . . . 14 matches
         === Windows Programming (Windows Platform Programming) ===
         Windows Programming 이라고 한다면 Windows 운영체제에서 Windows 관련 API 를 이용 (혹은 관련 Framework), 프로그래밍을 하는 것을 의미한다. 보통 다루는 영역은 다음과 같다. (이 영역은 꼭 Windows 이기에 생기는 영역들이 아니다. Windows 이기에 생기는 영역들은 Shell Extension 이나 ActiveX, DirectX 정도? 하지만, 가로지르기는 어떻게든지 가능하다)
         예전에 Windows Programming 을 배운다고 한다면 기본적으로 GUI Programming 을 의미했다. Windows 가 기본적으로 GUI OS 이기에 기본이 이것이라고 생각하는 것이다. 하지만, GUI 는 어디까지나 'User Interface' 이다. 즉, 이건 Input/Output 에 대한 선택사항이다. 필요할때 공부하자. (하지만, 보통 User-Friendly 한 프로그램들은 대부분 GUI 이다.)
         Windows 에서 GUI Programming 을 하는 방법은 여러가지이다. 언어별로는 Python 의 Tkinter, wxPython 이 있고, Java 로는 Swing 이 있다. C++ 로는 MFC Framework 를 이용하거나 Windows API, wxWindows 를 이용할 수 있으며, MFC 의 경우 Visual Studio 와 연동이 잘 되어서 프로그래밍 하기 편하다. C++ 의 다른 GUI Programming 을 하기위한 툴로서는 Borland C++ Builder 가 있다. (C++ 중급 이상 프로그래머들에게서 오히려 더 선호되는 툴)
         Windows GUI Programming 관련 서적으로는 찰스페촐드의 책을 추천한다. 책 내용이나 번역(!)글이 어렵지만 개념설명이 잘 되어 있으며, 실려있는 예제들이 좋다.
         ==== Windows API ====
  • ASXMetafile . . . . 13 matches
          * <MoreInfo href = "path of the source" / >: Adds hyperlinks to the Windows Media Player interface in order to provide additional resources on the content.
          * <Logo href = "path of the logo source" Style = "a style" / >: Adds custom graphics to the Windows Media player by choosing either a watermark or icon style. The image formats that Windows Media Player supports are GIF, BMP, and JPEG.
          o MARK: The logo appears in the lower right corner of the video area while Windows Media Player is connecting to a server and opening a piece of content.
          o Windows Media Services Server: File names will start with mms://.
          o ASX files, on the other hand, are small text files that can always sit on an HTTP server. When the browser interprets the ASX file, it access the streaming media file that is specified inside the ASX file, from the proper HTTP, mms, or file server.
          <MoreInfo href="http://www.microsoft.com/windows/windowmedia" />
          <MoreInfo href="http://www.microsoft.com/windows/windowsmedia" />
          <MoreInfo href="http://www.microsoft.com/windows/windowsmedia" />
          * [http://msdn.microsoft.com/workshop/imedia/windowsmedia/crcontent/asx.asp Windows Media metafile] - [DeadLink]
  • ClassifyByAnagram/Passion . . . . 13 matches
          public Parser(File file) throws FileNotFoundException {
          public void parse() throws IOException {
          public int getItemCount() throws IOException {
          private List getItemLines() throws IOException {
          public static void main(String[] args) throws IOException
          public void testOneLine1() throws IOException
          public void testOneLine2() throws IOException
          public void testTwoLine() throws IOException
          public void testGetItemCount() throws IOException
          public void testContains() throws IOException
          public void testContains2() throws IOException
          public void testReadFie() throws IOException
          public void testParse() throws IOException
  • DevelopmentinWindows . . . . 13 matches
          * '''Windows 서브시스템 - GUI 모드 에플리케이션 운영'''[[BR]]
          (앞으로 Windows 서브시스템 기반의 프로그래밍을 윈도우즈 프로그래밍이라고 하겠다.)
          * Windows CE 서브시스템 - Windows CE 에플리케이션 운영
          * 표준 사용자 인터페이스 제공 (["DevelopmentinWindows/UI"])
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/Message.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/Hardware.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/SLL.jpg
          http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/DLL.jpg
          * ["DevelopmentinWindows/APIExample"] - 소스 보기
          * http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/API.zip - 다운 받기
          * ["DevelopmentinWindows/MFCExample"] - 소스 보기
          * http://zeropage.org/~lsk8248/wiki/Seminar/DevelopmentinWindows/MFC.zip - 다운 받기
  • MedusaCppStudy/석우 . . . . 12 matches
          for (int rows = 0 ; rows < length ; rows++)
          if (rows == 0 || rows == length - 1 || cols == 0 || cols == length - 1)
         void Input(int& rows, int& cols, Roachs& roach);
          int rows, cols;
          Input(rows, cols, roach);
          vector< vector<int> > board(rows);
          for (int i = 0 ; i < rows ; i++)
         void Input(int& rows, int& cols, Roachs& roach)
          cin >> rows >> cols;
  • NSIS/예제2 . . . . 11 matches
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "DisplayName" "NSIS Example2 (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2" "UninstallString" '"$INSTDIR\uninstall.exe"'
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2"
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2\DisplayName=NSIS Example2 (remove only)
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2\UninstallString="$INSTDIR\uninstall.exe"
         DeleteRegKey: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2
  • ZPBoard/APM/Install . . . . 11 matches
         === Windows에 Apache+PHP+MySQL 설치하기 ===
          * PHP 디렉토리에 있는 php4ts.dll 파일을 Windows 디렉토리의 System(Windows 98의 경우) 또는 System32(Windows NT, XP의 경우) 디렉토리에 복사한다.
          * PHP 디렉토리에 있는 php.ini-dist 파일을 Windows 디렉토리에 php.ini 라는 이름으로 바꾸어 복사한다.
         === Windows에 IIS+PHP+MySQL 설치하기 ===
          * 제어판 -> 프로그램 추가/제거 -> Windows 구성 요소 추가/제거 에서 IIS를 설치한다.
          * PHP 디렉토리에 있는 php4ts.dll 파일을 Windows 디렉토리의 System(Windows 98의 경우) 또는 System32(Windows NT, XP의 경우) 디렉토리에 복사한다.
          * PHP 디렉토리에 있는 php.ini-dist 파일을 Windows 디렉토리에 php.ini 라는 이름으로 바꾸어 복사한다.
  • MoreEffectiveC++/Appendix . . . . 10 matches
         What follows is the list of books I find myself consulting when I have questions about software development in C++. Other good books are available, I'm sure, but these are the ones I use, the ones I can truly recommend. ¤ MEC++ Rec Reading, P5
         Stroustrup has been intimately involved in the language's design, implementation, application, and standardization since its inception, and he probably knows more about it than anybody else does. His descriptions of language features make for dense reading, but that's primarily because they contain so much information. The chapters on the standard C++ library provide a good introduction to this crucial aspect of modern C++. ¤ MEC++ Rec Reading, P12
         I generally refer to this as "the LSD book," because it's purple and it will expand your mind. Coplien covers some straightforward material, but his focus is really on showing you how to do things in C++ you're not supposed to be able to do. You want to construct objects on top of one another? He shows you how. You want to bypass strong typing? He gives you a way. You want to add data and functions to classes as your programs are running? He explains how to do it. Most of the time, you'll want to steer clear of the techniques he describes, but sometimes they provide just the solution you need for a tricky problem you're facing. Furthermore, it's illuminating just to see what kinds of things can be done with C++. This book may frighten you, it may dazzle you, but when you've read it, you'll never look at C++ the same way again. ¤ MEC++ Rec Reading, P27
         Usenet Newsgroups ¤ MEC++ Rec Reading, P46
         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
         In November 1995, a moderated version of comp.lang.c++ was created. Named °comp.lang.c++.moderated, this newsgroup is also designed for general discussion of C++ and related issues, but the moderators aim to weed out implementation-specific questions and comments, questions covered in the extensive °on-line FAQ ("Frequently Asked Questions" list), flame wars, and other matters of little interest to most C++ practitioners. ¤ MEC++ Rec Reading, P48
         A more narrowly focused newsgroup is °comp.std.c++, which is devoted to a discussion of °the C++ standard itself. Language lawyers abound in this group, but it's a good place to turn if your picky questions about C++ go unanswered in the references otherwise available to you. The newsgroup is moderated, so the signal-to-noise ratio is quite good; you won't see any pleas for homework assistance here. ¤ MEC++ Rec Reading, P49
  • UnixSocketProgrammingAndWindowsImplementation . . . . 10 matches
         페이지의 컨텐츠를 보아하니, 따로 페이지를 뽑아내도 될것 같아 [문서구조조정] 하였습니다. 원래 페이지 이름은 '''데블스캠프2005/Socket Programming in Unix/Windows Implementation'''였습니다. - [임인택]
         Project -> Setting -> LINK 메뉴 -> Object/library modules: 의 끝부분에 ws2_32.lib 를 추가한다.
         ◎ UNIX 체계에서 사용하던 함수들의 헤더파일이 Windows 기반에서는 존재하지 않을 수도 있다.
         WSADATA wsaDATA; // 추가. WSADATA형의 변수를 선언한다.
         if( WSAStartup(MAKEWORD(2,2), &wsaData) != 0)
          fprintf(stderr, "WSAStartup Error"), exit(1);
          // 추가. WSAStartup() 은 socket의 버젼을 ws2_32 라이브러리에 전달한다.
         // 프로그램이 끝날 때, 항상 WSACleanup()으로 리소스를 해제해야한다.
         WSADATA wsaDATA;
         if( WSAStartup(MAKEWORD(2,2), &wsaData) != 0)
          fprintf(stderr, "WSAStartup Error"), exit(1);
         WSACleanup();
         WSADATA wsaData;
          if( WSAStartup(MAKEWORD(2,2), &wsaData) == -1 )
          error("WSAStartup Error");
          WSACleanup();
  • Yggdrasil/가속된씨플플/2장 . . . . 10 matches
         while(r!=rows)
          * pad를 가로, 세로에 각각 다른 변수로 분리시킨다. 혹은, rows, cols 초기화식을 변화시킨다.
          int pad_rows, pad_cols;
          cout<<"Please input blank of rows and cols:";
          cin>>pad_rows;
          const int rows=pad_rows*2+3;
          for(int r=0;r!=rows;++r)
          if(r==pad_rows+1&&c==pad_cols+1)
          if(r==0||r==rows-1||c==0||c==cols-1)
  • Garbage collector for C and C++ . . . . 9 matches
          * Windows NT 나 Windows 2000 에서 문제가 발생한다면 -DUSE_GLOBAL_ALLOC 나 -DUSE_MUNMAP 옵션을 사용하여 컴파일 한다.
         # -DALL_INTERIOR_POINTERS allows all pointers to the interior
         # Linux and Windows versions.
         # through GC_MALLOC with GC_DEBUG defined, this allows the client
         # occasionally be useful for debugging of client code. Slows down the
         # -DPARALLEL_MARK allows the marker to run in multiple threads. Recommended
         # a Windows NT/2000 issue. Incompatible with USE_MUNMAP.
         # -DSTUBBORN_ALLOC allows allocation of "hard to change" objects, and thus
  • MedusaCppStudy/세람 . . . . 9 matches
          int rows = num ;
          for( int r=0; r!=rows; r++)
          if(r==0 || r== rows-1 )
          int rows = length ;
          for( int r=0; r!=rows; r++)
          if(r==0 || r== rows-1 )
          int rows = num ;
          while(r!=rows)
          else if(r==rows-1)
  • MedusaCppStudy/신애 . . . . 9 matches
          int rows = num;
          for (int r = 0; r != rows; r++) {
          if (r == 0 || r == rows -1 )
          int rows = a;
          for (int r = 0; r != rows; r++) {
          if (r == 0 || r == rows -1 )
          int rows = num;
          for (int r = 0; r != rows; r++ ) {
          if (r == rows - 1) {
  • TwistingTheTriad . . . . 9 matches
         One example of this deficiency surfaced in SmalltalkWorkspace widget. This was originally designed as a multiline text-editing component with additional logic to handle user interface commands such as Do-it, Show-it, Inspect-it etc. The view itself was a standard Windows text control and we just attached code to it to handle the workspace functionality. However, we soon discovered that we also wanted to have a rich text workspace widget too. Typically the implementation of this would have required the duplication of the workspace logic from the SmalltalkWorkspace component or, at least, an unwarranted refactoring session. It seemed to us that the widget framework could well do with some refactoring itself!
         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.
         For example, let's say one wants to explicitly change the colour of one or more views dependent on some conditions in the application model. The correct way to do this in MVC would be to trigger some sort of event, passing the colour along with it. Behaviour would then have to be coded in the view to "hang off" this event and to apply the colour change whenever the event was triggered. This is a rather circuitous route to achieving this simple functionality and typically it would be avoided by taking a shoutcut and using #componentAt : to look up a particular named view from the application model and to apply the colour change to the view directly. However, any direct access of a view like this breaks the MVC dictum that the model should know nothing about the views to which it is connected. If nothing else, this sort of activity surely breaks the possibility of allowing multiple views onto a model, which must be the reason behind using the Observer pattern in MVC in the first place.
         The behaviour of a view in MVP is much the same as in MVC. It is the view's responsibility to display the contents of a model. The model is expected to trigger appropriate change notification whenever its data is modified and these allow the view to "hang off" the model following the standard Observer pattern. In the same way as MVC does, this allows multiple vies to be connected to a single model.
         One significant difference in MVP is the removal of the controller. Instead, the view is expected to handle the raw user interface events generated by the operating system (in Windows these come in as WM_xxxx messages) and this way of working fits more naturally into the style of most modern operating systems. In some cases, as a TextView, the user input is handled directly by the view and used to make changes to the model data. However, in most cases the user input events are actually routed via the presenter and it is this which becomes responsible for how the model gets changed.
         Compared with our orignnal widget framework, MVP offers a much greater separation between the visual presentation of an interface and the code required to implement the interface functionality. The latter resides in one or more presenter classes that are coded as normal using a standard class browser.
  • 새싹교실/2011/AmazingC/과제방 . . . . 9 matches
          int rows,stars,blank,numberOfBlanks=0;
          for(rows=0;rows<13;rows++){
          if(rows<=6){
          if(rows==0){
          numberOfBlanks=2*rows-1;
          if(rows==12){
          numberOfBlanks=2*(6-(rows-6))-1;
  • 2학기파이선스터디/클라이언트 . . . . 8 matches
          self.showscrollbar = Scrollbar(master)
          self.showscrollbar.place(x = 550, y = 0, width = 50, height = 550)
          self.show = Listbox(master, yscrollcommand = self.showscrollbar.set)
          self.showscrollbar.config(command = self.show.yview)
          self.showscrollbar = Scrollbar(aMaster)
          self.showscrollbar.place(x = 550, y = 0, width = 50, height = 550)
          self.show = Listbox(aMaster, yscrollcommand = self.showscrollbar.set)
          self.showscrollbar.config(command = self.show.yview)
  • AcceleratedC++/Chapter2 . . . . 8 matches
          // the number of rows and columns to write
          const int rows = pad * 2 + 3;
          // write rows
          // invariant: we have written r rows so far
          for (int r = 0; r != rows ; ++r) {
          if (r == 0 || r == rows - 1 ||
         // invariant : we have written r rows so far
         while( r != rows )
  • ClassifyByAnagram/sun . . . . 8 matches
          g.drawString( "JVM info:", 10, 20 );
          g.drawString( "....vendor : " + System.getProperty( "java.vm.vendor"), 10, 35 );
          g.drawString( "....version: " + System.getProperty( "java.vm.version"), 10, 50 );
          g.drawString( "....name: " + System.getProperty( "java.vm.name"), 10, 65 );
          g.drawString( "Estimated power: " + String.valueOf(elapsed), 10, 90 );
          public FindAnagram( InputStream in ) throws Exception
          public static void main(String[] args) throws Exception
          public FindAnagram( InputStream in ) throws Exception
          public static void main(String[] args) throws Exception
          public FindAnagram( InputStream in ) throws Exception
          public static void main( String[] args ) throws Exception
          public Anagram( InputStream in ) throws Exception
          public static void main( String[] args ) throws Exception
  • HelpOnLinking . . . . 8 matches
         지원되는 외부 링크는 `http:`, `https:`, `ftp:`, `nntp:`, `news:`, `mailto:`, `telnet:`, 그리고 `file:`등이 있습니다.
         지원되는 URL 형식: `http:`, `https:`, `ftp:`, `nntp:`, `news:`, `mailto:`, `telnet:`, `file:`. (이것을 확장하는 방법은 HelpOnConfiguration 참조)
          * nntp://news.kreonet.re.kr [nntp://news.kreonet.re.kr]
          * news://news.kreonet.re.kr [news://news.kreonet.re.kr]
  • MoinMoinFaq . . . . 8 matches
         browser.
          * Editability by anyone - A wiki page is editable by anyone with a web browser
          * Click on WordIndex. This shows an alphabetized list of every
          * Click on {{{~cpp LikePages}}} at the bottom of the page. This shows pages
          shows what pages link to the current page (which may help you
         up in a text-edit pane in your browser, and you simply make the changes.
         of formatting that html allows you to do. See the HelpOnFormatting page for some tips and examples.
          1. in the "Location" bar of your browser, replace "action=recall" with "action=raw".
  • SmallTalk/강좌FromHitel/강의4 . . . . 8 matches
         자, 여러분이 지금 어디에 있던지 Tools > Class Hierarchy Browser 메뉴를
         Hierarchy Browser)를 불러낼 수 있습니다. 갈래씨줄 탐색기를 줄여서 '갈래
          SmalltalkSystem current browseContainingSource: 'Dolphin'
         Smalltalk 환경의 Tools > Package Browser 메뉴를 선택하면 꾸러미 탐색기
         Tools > Resource Browser를 선택하면 자원 탐색기를 열 수 있습니다. 앞서
         Express라는 Smalltalk 환경에서는 Disk Browser가 있다고 합니다.
         Windows와 같이 그림 위주의 사용자 환경(GUI)에서는 마우스가 필수적인 입
         쪽으로 이동하고, 은 왼쪽으로 이동합니다. 이는 Windows
  • WinSock . . . . 8 matches
         Windows Socket API. Win32 API 에 기본적으로 지원한다.
         일반적인 버클리 소켓 스타일과 Windows 자체 스타일의 비동기소켓 (윈도우 메세지를 이용하는 방법, IOCP) API 를 제공해준다.
         #include <windows.h>
          printf ("Error : %d n", WSAGetLastError ());
          WSADATA wsaData;
          WSACleanup ();
          if (WSAStartup (0x202, &wsaData) == SOCKET_ERROR) {
          printf ("error.. %dn", WSAGetLastError ());
          WSACleanup ();
          printf ("create socket error.. %dn", WSAGetLastError ());
          WSACleanup ();
          printf ("bind error.. %dn", WSAGetLastError ());
          WSACleanup ();
          printf ("listen error.. %dn", WSAGetLastError ());
          WSACleanup ();
          WSAEVENT hEvent = WSACreateEvent ();
          WSAEVENT hEvent2 = WSACreateEvent ();
          WSAEVENT Eventarry[2];
          WSANETWORKEVENTS NetworkEvents;
          WSAEventSelect (socketListen, hEvent, FD_ALL_EVENTS);
  • ZeroPageHistory . . . . 8 matches
         ||겨울방학 ||C++ for windows, X windows Programming, Object Oriented Analysis & Design 등의 Project 수행 ||
          * C++ for Windows, X Windows Programming, Object Oriented Analysis & Design
          * C, C++, X-Windows, Utility
          * X-Windows, Visual Basic, C
          * X-Windows, Data Structure, C, C++
          * 데블스캠프 : C, 파일 입출력, DOS, UNIX, Windows, Web Programming, Object-Oriented Programming, Network
  • ZeroPage성년식/거의모든ZP의역사 . . . . 8 matches
         ||겨울방학 ||C++ for windows, X windows Programming, Object Oriented Analysis & Design 등의 Project 수행 ||
          * C++ for Windows, X Windows Programming, Object Oriented Analysis & Design
          * C, C++, X-Windows, Utility
          * X-Windows, Visual Basic, C
          * X-Windows, Data Structure, C, C++
          * 데블스캠프 : C, 파일 입출력, DOS, UNIX, Windows, Web Programming, Object-Oriented Programming, Network
  • 상협/삽질일지/2002 . . . . 8 matches
          * 헉헉.. 오늘은 내 컴퓨터에 pws 를 실행시키지 않고, Apache로 다시 웹서버를 바꿨다. 이유는 Java Servlet 한번 실행시켜 볼려는 의도였다. JDBC 보다가 Servlet이 나오길래 그냥 호기심에 한번 해보고 싶었다. 결과는 참담.. ㅡㅡ; 책에 나온데로 JSDK깔고, JServ 깔고 Tomcat깔고, 이것저것 설정 맞추고, 바꾸고, 지지고 볶고 하면서 아까운 시간들을 보냈다. 지금의 결과..Servlet 예제 쳐봐서 했는데 안됐다. ㅠㅜ 괜히 삽질로 하루 날렸다. 섯부른 호기심때문에 정작 할일들을 못했다. 교훈 -> 시간관리 잘하자..., 목적성을 가지고 일을 하자.
          * Driver driver = (Driver)Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance(); 이거 할때 메인 함수에서 throws Exception 를 하지 않으면 thrown 을 잡거나 선언 해야만 한다는 메시지가 뜬다. 아직 이유는 모르겠다.
          * 방금 삽질 하나 해결..Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 이게 메인 함수에서만 되는게 아니라 이 구문을 사용할때는 throws Exception 을 항상 해줘야만 한다는 사실.. ㅡㅡ; 그런데 이 사실을 진작 체감하고 있었다. 그런데 계속 삽질 했다. 그 이유는
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 이게 사용된 바로 그 메소드에서 throws Exception 를 해줘야 하는데 계속 전체 클래스에서 이것을 했었다. 이게 문제의 원인.. 그러나 아직 왜 꼭 throws Exception 구문을 써야 하는지 모르겠고, Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");이게 없는 곳에서 throws Exception 를 쓰면 에러 뜨는 이유도 자세히는 모르겠다. 모르는것 투성.. ㅡㅡ;;
          ''Exception Handling 에 대해서 이해해야 할 것 같은데. Exception 은 해당 함수가 throws 등으로 발생을 시키고, Java 의 경우 그 Exception 을 반드시 처리를 해주는 곳을 만들어야 하지. 해당 메소드 내에서 Exception 이 발생은 하는데, 그 메소드에서 예외처리를 바로 하고 싶지 않으면 (즉, 그 Exception을 그 메소드 내에서 처리하지 않고, 그 메소드를 호출했던 곳 등에서 처리를 한다고 한다면) throws 로 해당 메소드에서 exception 을 또 던져주는 식으로 되겠지. 만일 Class.forName(...) 쓴 구문을 try - catch 로 예외를 또 잡는다면 이야기가 다르겠지만. 자바는 Exception 를 강요하는 관계로 예외는 catch 에서 무엇을 하건, 반드시 해당 발생된 예외를 잡아줘야 함. (그 덕에 최악으로 뻗을 일이 적지. 예외는 발생하더라도) --석천''
  • 임시 . . . . 8 matches
         http://www.browsenodes.com/
         Browse Node Values
         http://crab.chungbuk.ac.kr/%7Ejchern/ vi명령어, Windows Network Programming API, ..
         http://webservices.amazon.com/AWSECommerceService/2006-02-15/AWSECommerceService.wsdl
         base URLs : http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
         http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
         &AWSAccessKeyId=[Your Access Key ID Here]
         REST allows you to make calls to ECS by passing parameter keys and values in a URL (Uniform Resource Locator). ECS returns its response in XML (Extensible Markup Language) format. You can experiment with ECS requests and responses using nothing more than a Web browser that is capable of displaying XML documents. Simply enter the REST URL into the browser's address bar, and the browser displays the raw XML response.
  • 정모/2011.8.8 . . . . 8 matches
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039134727&type=det OCP(개방-폐쇄 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039135552&type=det SRP(단일 책임 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039139151&type=det ISP(인터페이스 분리 원칙)]
          * [http://www.zdnet.co.kr/news/news_view.asp?artice_id=00000039139151&type=det LSP(리스코프 대체 원칙), DIP(의존관계 역전 원칙)]
  • 토비의스프링3/오브젝트와의존관계 . . . . 8 matches
          public void add(User user) throws SQLException, ClassNotFoundException{
          public User get(String id) throws ClassNotFoundException, SQLException{
         public static void main(String[] args) throws SQLException, ClassNotFoundException {
         public void add(User user) throws SQLException, ClassNotFoundException {
         public void get(String id) throws SQLException, ClassNotFoundException {
         private Connection getConnection() throws SQLException, ClassNotFoundException {
         public static void main(Strings[] args) throws ClassNotFoundException, SQLException{
         public static void main(Strings[] args) throws ClassNotFoundException, SQLException{
  • ComponentObjectModel . . . . 7 matches
         {{|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.
         COM은 소프트웨어 컴포넌트를 위해 만들어진 Microsoft 사의 기술이다. 이는 수많은 MS사의 프로그래밍 언어에서 소프트웨어간 통신과 동적 객체생성을 가능케한다. 비록 이 기술이 다수의 플랫폼상에서 구현이 되기는 하였지만 MS Windows 운영체제에 주로 이용된다. 사람들은 .Net 프레임워크가 COM을 어느정도까지는 대체하리라고 기대한다. COM 은 1993년에 소개되고 1997즈음해서 MS가 강조한 기술이다.
         COM is a feature of Windows. Each version of Windows has a support policy described in the Windows Product Lifecycle.
         COM continues to be supported as part of Windows.
         COM is a planned feature of the coming version of Windows, code-named "Longhorn".
  • FortuneCookies . . . . 7 matches
          * "It seems strange to meet computer geeks who're still primarily running Windows... as if they were still cooking on a wood stove or something." - mbp
          * He who has a shady past knows that nice guys finish last.
          * You will hear good news from one you thought unfriendly to you.
          * Your mode of life will be changed for the better because of good news soon.
          * Even a hawk is an eagle among crows.
          * Good news from afar can bring you a welcome visitor.
          * Your mode of life will be changed for the better because of good news soon.
  • Gof/Facade . . . . 7 matches
         ET++ application framework [WGM88] 에서, application은 run-time 상에서 application의 객체들을 살필 수 수 있는 built-in browsing tools를 가지고 있다.이러한 browsing tools는 "ProgrammingEnvironment'라 불리는 facade class를 가진 구분된 서브시스템에 구현되어있다. 이 facade는 browser에 접근 하기 위한 InspectObject나 InspectClass같은 operation을 정의한다.
         ET++ application은 또한 built-in browsing support를 없앨수도 있다. 이러한 경우 ProgrammingEnvironment는 이 요청에 대해 null-operation으로서 구현한다. 그러한 null-operation는 아무 일도 하지 않는다. 단지 ETProgrammingEnvironment subclass는 각각 대응하는 browser에 표시해주는 operation을 가지고 이러한 요청을 구현한다. application은 browsing environment가 존재하던지 그렇지 않던지에 대한 정보를 가지고 있지 않다. application 과 browsing 서브시스템 사이에는 추상적인 결합관계가 있다.
  • Java/ModeSelectionPerformanceTest . . . . 7 matches
          public void printPerformance(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          private void executeReflection(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          public void printPerformance(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          private void executeReflectionWithMapping(String[] modeExecute) throws InvocationTargetException, IllegalAccessException {
          public void printPerformance(String[] modeExecute) throws NoSuchMethodException, InstantiationException, ClassNotFoundException, InvocationTargetException, IllegalAccessException {
          private void initModeMapWithReflection(String[] modeExecute) throws InstantiationException, InvocationTargetException, IllegalAccessException, NoSuchMethodException {
          public static void main(String[] args) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, ClassNotFoundException, InstantiationException {
  • NSIS . . . . 7 matches
          * /PAUSE - Makensis 가 종료되기 전 중간에 일시정지해준다. 이는 Windows 에서 직접 실행할 때 유용하다.
         NSIS 의 windows installer 버전을 설치하면 NSIS.CHM 화일이 같이 있다.
         === windows 깔린 위치 찾아오기 ===
         이용 예 : windows 의 system32 디렉토리에 dll 들을 복사해줄 때.
         "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}"
         "Software\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}"
         "Software\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}"
  • NSIS/Reference . . . . 7 matches
         || InstallColors || FFFF00 000000 || foregroundcolor backgroundcolor. 또는 /windows 옵션을 이용가능 ||
          * $DESKTOP - 윈도우 데스트톱 디렉토리 (보통 C:\windows\desktop) 실행시 탐색된다.
          * $WINDIR - windows 디렉토리 (보통 C:\windows , C:\winnt) 실행시 탐색된다.
          * $SYSDIR - windows system 디렉토리 (보통 C:\windows\system, C:\winnt\system32) 실행시 탐색된다.
          * $TEMP - 시스템 임시 디렉토리 (보통 C:\windows\temp) 실행시 탐색됨.
  • 문제풀이/1회 . . . . 7 matches
         news = []
          news.append(int(i))
         print max(news), min(news)
         news = map(lambda x:int(x), a.split())
         print max(news), min(news)
  • ItNews . . . . 6 matches
         ItNews의 소스들
          * Tech News http://www.acm.org/technews/ : ACM에서 일주일에 세번 제공하는 "정리된 ItNews"
          * asdfnews (그 주제의 폭이 '잡다' 도 허용된다면 -_-;) http://asdfnews.org
  • Kongulo . . . . 6 matches
          - Knows basic and digest HTTP authentication
         Requires Python 2.4 and the win32all extensions for Python 2.4 on Windows.
          '''An exception handler for HTTP that never throws an exception for various
         # Should always be true on Windows systems.
         # This parses Windows proxy registry settings
          # the user already visited it herself using a browser).
  • MineFinder . . . . 6 matches
          * 유의 : 이때는 Windows ME, Windows 2000 이상에서만 실행가능하다. (지뢰찾기 비트맵이 98과 다르다)
          * 유의 : 여전히 Windows ME, Windows 2000 이상에서만 실행가능하다. (지뢰찾기 비트맵이 98과 다르다)
          * 문제점의 발생 - windows 98 이하버전의 지뢰찾기 비트맵부분
          * windows 98 이하 버전 지뢰찾기 지원. (완벽하진 않음)
  • NSIS/예제3 . . . . 6 matches
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris" "DisplayName" "ZPTetris (remove only)"
          WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris" "UninstallString" '"$INSTDIR\uninstall.exe"'
          DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris"
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris\DisplayName=ZPTetris (remove only)
         WriteRegStr: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris\UninstallString="$INSTDIR\uninstall.exe"
         DeleteRegKey: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ZPTetris
  • UML . . . . 6 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.
         This diagram describes the sequences of messages of the (simple) Restaurant System. This diagram represents a Patron ordering food and wine; drinking wine then eating the food; finally paying for the food. The dotted lines extending downwards indicate the timeline. The arrows represent messages (stimuli) from an actor or object to other objects. For example, the Patron sends message 'pay' to the Cashier. Half arrows indicate asynchronous method calls.
         Activity diagrams represent the business and operational workflows of a system. An Activity diagram is a variation of the state diagram where the "states" represent operations, and the transitions represent the activities that happen when the operation is complete.
         This activity diagram shows the actions that take place when completing a (web) form.
         This deployment diagram shows the hardware used in a small office network. The application server (node) is connected to the database server (node) and the database client (component) is installed on the application server. The workstation is connected (association) to the application server and to a printer.
  • WikiTextFormattingTestPage . . . . 6 matches
         Revised 1/05/01, 5:45 PM EST -- adding "test" links in double square brackets, as TWiki allows.
         Will pictures overlap? In WardsWiki, these 4 pictures form two rows of two pictures, separated by a horizontal blank line.
         >< -- arrows in
         <> -- arrows out
         "A text area will be inserted into the page that allows users to add contents to the page without having to edit the page. Users can add text even when the page is locked and when they are not logged in."
         There are five characters (&, <, >, *, @) which to do not display correctly unless you type aliases for them as follows:
  • XMLStudy_2002/XML+CSS . . . . 6 matches
         <HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-css.asp">How to Write a CSS StyleSheet for Browsing XML</HTML:A>
         [1]<HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-css.asp ">
         How to Write a CSS Style Sheet for Browsing XML</HTML:A>
         [2]<HTML:A href="http://msdn.microsoft.com/xml/xslguide/browsing-overview.asp">
         Browsing XML Documents in Internet Explorer 5</HTML:A>
  • 이영호/개인공부일기장 . . . . 6 matches
         ☆ 구입해야할 책들 - Advanced Programming in the UNIX Environment, Applications for Windows, TCP/IP Illustrated Volume 1, TCP/IP Protocol Suite, 아무도 가르쳐주지않았던소프트웨어설계테크닉, 프로젝트데드라인, 인포메이션아키텍쳐, 초보프로그래머가꼭알아야할컴퓨터동작원리, DirectX9Shader프로그래밍, 클래스구조의이해와설계, 코드한줄없는IT이야기, The Art of Deception: Controlling the Human Element of Security, Advanced Windows (Jeffrey Ritcher), Windows95 System Programming (Matt Pietrek)
         ☆ 앞으로 공부해야할 책들(사둔것) - Effective C++, More Effective C++, Exeptional C++ Style, Modern C++ Design, TCP/IP 네트워크 관리(출판사:O'Reilly), C사용자를 위한 리눅스 프로그래밍, Add-on Linux Kernel Programming, Physics for Game Developers(출판사:O'Reilly), 알고리즘(출판사:O'Reilly), Hacking Howto(Matt 저), Windows 시스템 실행 파일의 구조와 원리, C언어로 배우는 알고리즘 입문
         6 PE 구조 공부(마스터 수준). & Windows Kernel(리눅스 커널과의 차이점)
         7 API 공부(마스터 수준). & Windows Kernel(리눅스 커널과의 차이점)
  • 5인용C++스터디/윈도우에그림그리기 . . . . 5 matches
         GDI(Graphics Device Interface)란 윈도우의 클라이언트 영역에 그리기를 하는데 사용되는 함수이다. 비디오 출력과 프린터에 그래픽 출력을 책임지고 있는 부분이다. 사용자가 Windows용으로 작성하는 응용 프로그램이 GDI를 사용하여 시각적인 정보를 출력할 뿐 아니라 Windows 자체도 GDI를 사용하여 메뉴, 스크롤 바, 아이콘, 그리고 마우스 커서 같은 사용자 인터페이스 아이템의 시각적인 출력을 수행한다.
         DC(Device Context)는 GDI에 의해 내부적으로 관리되는 데이터 구조체이며 '''그래픽 작업을 하기 위해서 필요한 것'''이다. 그림을 그리고자 할 때에는 반드시 먼저 DC에 대한 핸들을 얻어야 한다. 프로그램에 이 핸들을 주는 것으로 Windows는 사용자가 그 장치를 사용할 수 있도록 허가해 준다. 그러면 핸들을 GDI 함수의 인자로 사용하여 현재 그리고자 하는 장치를 Windows가 식별할 수 있도록 한다.
         #include <windows.h>
          hWnd=CreateWindow(szClassName,szTitleName, WS_OVERLAPPEDWINDOW,100,90,320,240,NULL,NULL,hInst,NULL);
  • Emacs . . . . 5 matches
          * [http://ftp.gnu.org/pub/gnu/emacs/windows/ Download]는 여기서 하면 됩니다. 윈도우즈 용이라 버전이 약간 낮네요.
          * emacs 는 dired mode 는 파일을 관리하고 browse 할 수 있는데, tramp 를 활용하여 remote 를 local 처럼 사용할 수 있습니다.
          * GNU Emacs 사용시 Windows 7 환경에서 c:\Users\[UserName]\AppData\Roaming 디렉토리에 저장됩니다.
          * .emacs 파일을 작성하거나 편집할 필요가 있을 경우에는 C-x-f ~/.emacs로 해 주면 Windows 환경에서도 알아서 HOME 디렉토리 밑에 만들어 줍니다.
          emacs code browser의 약자로서, 프로젝트 파일 management나, 디렉토리 management등을 도와주는 확장 기능이다.
  • MoinMoinTodo . . . . 5 matches
          * By default, enable an as-if mode that shows what needs to be fixed.
          * Replace SystemPages by using the normal "save page" code, thus creating a backup copy of the page that was in the system. Only replace when diff shows the page needs updating.
          * Add a "news item" macro (edit page shows a special form)
          * System Info: number edits, views, whatever.
  • OurMajorLangIsCAndCPlusPlus/stdio.h . . . . 5 matches
         || wchar_t * fgetws(wchar_t *, int, FILE *) || 해당 스트림으로 부터 유니코드 문자열을 읽어온다. ||
         || int fputws(const wchar_t *, FILE *) || 해당 스트림으로 유티코드 문자열을 기록한다. ||
         || int fwscanf(FILE *, const wchar_t *, ...) || 해당 스트림에서 지정된 형식의 데이터를 읽어들인다. ||
         || int swscanf(const wchar_t *, const wchar_t *, ...) || 유니코드 문자열에서 지정된 형식으로 읽어들인다. ||
         || int wscanf(const wchar_t *, ...) || 표준 입출력을 사용해서 유니코드의 입력을 받는다. ||
  • Plugin/Chrome/네이버사전 . . . . 5 matches
          "browser_action": {
          "name" : "BrowsingData API: Basics",
          "browsingData"
          "browser_action": {
          "default_popup": "popup.html" //이게 그냥 popup으로 되있었다. browser_action을 보니 default_popup을 해야지 action icon을 눌렀을때 popup이 뜬다.
  • RSS . . . . 5 matches
         The technology behind RSS allows you to subscribe to websites that have provided RSS feeds, these are typically sites that change or add content regularly. To use this technology you need to set up some type of aggregation service. Think of this aggregation service as your personal mailbox. You then have to subscribe to the sites that you want to get updates on. Unlike typical subscriptions to pulp-based newspapers and magazines, your RSS subscriptions are free, but they typically only give you a line or two of each article or post along with a link to the full article or post.
         The RSS formats provide web content or summaries of web content together with links to the full versions of the content, and other meta-data. This information is delivered as an XML file called RSS feed, webfeed, RSS stream, or RSS channel. In addition to facilitating syndication, RSS allows a website's frequent readers to track updates on the site using a news aggregator.
         Before RSS, several similar formats already existed for syndication, but none achieved widespread popularity or are still in common use today, and most were envisioned to work only with a single service. For example, in 1997 Microsoft created Channel Definition Format for the Active Channel feature of Internet Explorer 4.0. Another was created by Dave Winer of UserLand Software. He had designed his own XML syndication format for use on his Scripting News weblog, which was also introduced in 1997 [1].
  • 데블스캠프2006/목요일/winapi . . . . 5 matches
         #include <Windows.h>
         #include <Windows.h>
          WS_OVERLAPPEDWINDOW, // window style
         #include <Windows.h>
          WS_OVERLAPPEDWINDOW, // window style
          hButton = CreateWindow("BUTTON", "Click Me!", WS_CHILD | WS_VISIBLE,
         #include <Windows.h>
          hwnd = CreateWindow (szAppName, "Timer Sample", WS_OVERLAPPEDWINDOW,
         #include <Windows.h>
          hwnd = CreateWindow (szAppName, "GetDC Sample", WS_OVERLAPPEDWINDOW,
  • 2학기파이선스터디/서버 . . . . 4 matches
          self.showscrollbar = Scrollbar(aMaster)
          self.showscrollbar.place(x = 550, y = 0, width = 50, height = 550)
          self.show = Listbox(aMaster, yscrollcommand = self.showscrollbar.set)
          self.showscrollbar.config(command = self.show.yview)
  • 2학기파이선스터디/채팅창 . . . . 4 matches
          self.showscrollbar = Scrollbar(master)
          self.showscrollbar.place(x = 550, y = 0, width = 50, height = 550)
          self.show = Listbox(master, yscrollcommand = self.showscrollbar.set)
          self.showscrollbar.config(command = self.show.yview)
  • Ant . . . . 4 matches
         Platform 독립적인 Java 의 프로그램 컴파일, 배포 도구 이다. 비슷한 역할로 Unix의 make 툴과 Windows에서 프로그램 Installer 를 생각할수 있다.
          바이너리 파일을 기준으로 설명하겠습니다. 설치는 Windows 기반으로 설명하겠습니다. Unix/Linux 기반을 비슷하니 알아서(?) 하세요. ^^;
         ===== Windows Shell =====
          실행 파일 ant는 Unix 계열에서는 shell 스크립트로 Windows 계열에서는 ant.bat 라는 배치파일로 배포됩니다. 내부에 보면 java 프로그램을 실행하는데, 다음과 같이 자신이 직접할 수도 있습니다.
  • ComputerNetworkClass/Report2006/PacketAnalyzer . . . . 4 matches
         = WSAIoctl =
         WSAIoctl 은 소켓이나 트랜스포트 계층 프로토콜, 통신 시스템의 구성과 관련된 사항을 설정하거나 설정값을 가져오기위해서 만들어졌다.
         WSA prefix 를 가진 함수의 경우 대부분 Winsock 2에서 제공 되기 시작한 것이며, 이 WSAIoctl 역시도 윈속 2에서 지원된다.
         자세한 사항은 MSDN 혹은 Network Programming For Microsoft Windows 를 참조하기 바란다.
         ※ 윈도우 소켓 프로그래밍을 위해서는 윈속 라이브러리를 같이 linking 해야하며, WSActrl 을 사용하기 위해서는 winsock2 라이브러리인 ws2_32.lib 를 포함해야한다.
         #define SIO_RCVALL _WSAIOW(IOC_VENDOR,1)
          WSADATA wsd;
          WSABUF wbuf;
          if (WSAStartup(MAKEWORD(2,2), &wsd) != 0)
          printf("WSAStartup() failed: %d\n", GetLastError());
          s = WSASocket(AF_INET, SOCK_RAW, IPPROTO_IP, NULL, 0, WSA_FLAG_OVERLAPPED);
          printf("WSASocket() failed: %d\n", WSAGetLastError());
          printf("bind() failed: %d\n", WSAGetLastError());
          if (WSAIoctl(s, SIO_RCVALL, &optval, sizeof(optval),
          printf("WSAIotcl(%d) failed; %d\n", dwIoControlCode,
          WSAGetLastError());
          ret = WSARecv(s, &wbuf, 1, &dwBytesRet, &dwFlags, NULL, NULL);
          printf("WSARecv() failed: %d\n", WSAGetLastError());
          WSACleanup();
         상기와 같이 기존의 서버 프로그램과 다른 점은 별로 없다. (Listen과 accept가 없네요. WSAIoctrl에서 다 처리하는건지...) 단지 소켓을 ioctrl 로 조정해서 ip 수준에서 올라오는 패킷을 기존과 다르게 처리할 뿐이다.
  • DebuggingSeminar_2005/AutoExp.dat . . . . 4 matches
         ; windows are automatically expanded to show their most important
         ; elements. The expansion follows the format given by the rules
         ; $ADDIN allows external DLLs to be added to display even more complex
         _bstr_t=<m_Data->m_wstr,su> (<m_Data->m_RefCount,u>)
         std::basic_string<unsigned short,std::char_traits<unsigned short>,std::allocator<unsigned short> >=$BUILTIN(WSTDSTRING)
         std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >=$BUILTIN(WSTDSTRING)
  • DevelopmentinWindows/APIExample . . . . 4 matches
         #include <windows.h>
          hWnd = CreateWindow(szWindowClass, "API", WS_OVERLAPPEDWINDOW,
         STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
          LTEXT "API Windows Applicationnfor Development in Windows Seminar",
         ["DevelopmentinWindows"]
  • Gof/AbstractFactory . . . . 4 matches
          InterViews 는 AbstractFactory 클래스들을 나타내기 위해서 'Kit'를 접미사로 사용한다. 이것은 WidgetKit과 DialogKit abstract factory 들을 명확한 ["룩앤필"] UI 객체를 위해서 정의한다. InterViews는 또한 서로 다른 복합 객체를 생성하는 LayoutKit 을 포함다. 예를 들면, 어떤 layout은 문서의 방향(인물이나 풍경)에 따른 서로 다른 복합 객체를 개념적으로 정렬한다.
          ET++[WGM88]은 다른 윈도우 시스템(예를 들면, X Windows 와 SunViews)간의 호환을 수행하기 위해서 Abstract Factory 패턴을 사용했다. 윈도우 시스템의 추상 base 클래스는 윈도우시스템의 자원 객체(예를 들면, MakeWindow, MakeFont, MakeColor)를 생성할 수 있는 인터페이스를 정의한다. Concrete 서브 클래스는 특정 윈도우 시스템에 인터페이스를 수행한다.
  • HowToStudyXp . . . . 4 matches
          * [http://groups.google.co.kr/groups?hl=ko&lr=&ie=UTF-8&newwindow=1&group=comp.software.extreme-programming news:comp.software.extreme-programming]
          * [http://groups.google.co.kr/groups?dq=&num=25&hl=ko&lr=&ie=UTF-8&newwindow=1&group=comp.object&start=0 news:comp.object]
          * XP news group
         ''all reviews coming soon by JuNe''
  • JUnit/Ecliipse . . . . 4 matches
          protected void setUp() throws Exception {
          protected void tearDown() throws Exception {
          protected void setUp() throws Exception {
          protected void tearDown() throws Exception {
  • Java Study2003/첫번째과제/방선희 . . . . 4 matches
          * MicroSoft windows에서 신나게 실행되는 게임이 Linux에서도 잘 돌까? 아마도 답은 '아니다' 일 것이다. 그러나 만약 그 게임이 Java로 제작되었다면 답은 '예' 이다. 다시 말해 Java로 개발된 프로그램은 PC, Macintosh, Linux등 machine이나 O/S에 종속되지 않는다.
          기존에 Sun OS에서 Java로 개발한 인사시스템을 Windows NT로 이관하고 싶다. 이때 프로그램 수정없이 가능할까? Windows NT를 지원하는 JDK가 있다면 가능하다. 그러고 Windows NT를 지원하는 JDK는 있다.
  • LUA_1 . . . . 4 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를 출력해 볼까요?
  • MedusaCppStudy/재동 . . . . 4 matches
          int rows, cols;
          cin >> rows >> cols;
          vector< vector<int> > board(rows);
          for(int i = 0; i < rows; i++)
  • MoreMFC . . . . 4 matches
         언제나 그렇듯, Window programming을 할때 처음 등장하는 예제는. Hello~ 시리즈다. 그 source를 통해 MFC프로그램에 첫발을 디딜것이며.. 요책에 나온 윈도우의 이모저모에 관해 설명할것이다. 뭐 .. 대충대충 해나갈 것이지만.. 그럼.. windows programming의 세계로. gogogo -- v [[BR]][[BR]]
         그리고, MFC를 하기전에 꼭 한번씩 나오는 SDK로 하는 windows programming. source. [[BR]]
         #include <windows.h>
          WS_OVERLAPPEDWINDOW,
         // 자세한것은 charles petzold의 Programming Windows라는 책에 보면 엄청 잘나와 있다. --;
  • MySQL . . . . 4 matches
         6 rows in set (0.00 sec)
         2 rows in set (0.00 sec)
         6 rows in set (0.00 sec)
         [http://network.hanbitbook.co.kr/view_news.htm?serial=131 MySQL과 Transaction] 테이블 생성시 InnoDB 나 BSDDB 를 사용하면 Transaction 을 이용할 수 있다. (InnoDB 추천)
  • OperatingSystem . . . . 4 matches
         In computing, an operating system (OS) is the system software responsible for the direct control and management of hardware and basic system operations. Additionally, it provides a foundation upon which to run application software such as word processing programs and web browsers.
          * [[windows|MicrosoftWindows]]
          * Palm, WindowsCE
  • OurMajorLangIsCAndCPlusPlus/2006.2.06/하기웅 . . . . 4 matches
         class newstring {
          newstring(char* s)
         ostream& operator << (ostream& o, const newstring& ns)
          const newstring s="123";
  • PerformanceTest . . . . 4 matches
         Windows 에서의 수행시간측정 방법.
         상기 두 Windows API함수를 사용해서 수행 시간을 측정 할 수 있습니다.
          #include <windows.h>
         Windows는 Multi-Thread로 동작하지 않습니까? 위 코드를 수행하다가 다른 Thread로 제어가 넘어가게 되면 어떻게 될까요? 아마 다른 Thread의 수행시간까지 덤으로 추가되지 않을까요? 따라서 위에서 작성하신 코드들은 정확한 수행시간을 측정하지 못 할 것 같습니다. 그렇다고 제가 정확한 수행시간 측정을 위한 코드 작성 방법을 알지는 못합니다. -_-;
  • ProjectWMB . . . . 4 matches
          * This page's object aim to submit project - Web Map Browser - for Samsung Software Membership.
          * [WebMapBrowser]
         SeeAlso) [WebMapBrowser]
          * Java script, Web browser 기타 웹 관련 지식
  • ProjectZephyrus/Server . . . . 4 matches
          java_win.bat : Windows용 RunServer 실행 batch파일
          javac_win.bat : Windows용 프로젝트 컴파일 batch파일
          * 현재 ZeroPage와 Windows 2k상에 한글 인코딩 문제로 후자로 해야 ZeroPage서버에서 한글로 안내 메세지가 나옴. 컴파일시 해결할수 있지만 귀찮아서 --;; --상민
         ||java -jar {{{~cpp PZServerForWin.jar}}} Port번호(Default 22000)||[http://165.194.17.15/~neocoin/ProjectZephyrus/Server/PZServerForWin.jar jar]||Windows||
  • PythonNetworkProgramming . . . . 4 matches
         만일 winsock 을 쓰고 싶다면 windows extension libary 들을 설치해주면 된다.
          newsock, client_addr = sock.accept()
          data = newsock.recv(bufsize)
         MFC 의 CSocket 를 사용하는 스타일로 프로그래밍을 할 수 있는데, Python 이기에 코드가 더 깔끔. 그리고 Windows/Linux 양쪽 다 가능.
  • Refactoring/ComposingMethods . . . . 4 matches
          (browser.toUpperCase().indexOf("IE") > -1) &&
          final boolean isIEBrowser = browser.toUpperCase().indexOf("IE") > -1);
          if ( isMaxOs && isIEBrowser && wasResized ) {
  • SmallTalk/강좌FromHitel/소개 . . . . 4 matches
         생각합니다. 흔히 Delphi나 Visual Basic, C++ 등으로 Windows 용의 응용 프로그
         * Dolphin Smalltalk는 Windows 시스템의 모든 자원을 사용할 수 있으며,
          Windows 운영 체계의 지원을 받을 수 있습니다. 이는 WIN32 API의 사용을 보
          장해주며, 따라서 WIndows 응용 프로그램의 개발을 쉽게 해 줍니다.
  • SmallTalk_Introduce . . . . 4 matches
         생각합니다. 흔히 Delphi나 Visual Basic, C++ 등으로 Windows 용의 응용 프로그
         * Dolphin Smalltalk는 Windows 시스템의 모든 자원을 사용할 수 있으며,
          Windows 운영 체계의 지원을 받을 수 있습니다. 이는 WIN32 API의 사용을 보
          장해주며, 따라서 WIndows 응용 프로그램의 개발을 쉽게 해 줍니다.
  • SpiralArray/임인택 . . . . 4 matches
          #rows
         def makeSpirialArray(rows, cols):
          for i in range(rows):
          rotList = makeRotList(rows, cols)
  • WinampPluginProgramming/DSP . . . . 4 matches
         #include <windows.h>
         // configuration. Passed this_mod, as a "this" parameter. Allows you to make one configuration
          wsprintf(str,"%s%d%%",g_pitch>100?"+":"",g_pitch-100);
          wsprintf(str,"%s%d%%",g_pitch>100?"+":"",g_pitch-100);
  • ZPBoard/PHPStudy/MySQL . . . . 4 matches
          * mysql_connect, mysql_close, mysql_query, mysql_affected_rows, mysql_num_rows, mysql_fetch_row, mysql_fetch_array
          * mysql_affected_rows
          * mysql_num_rows
  • whiteblue/MyTermProject . . . . 4 matches
         void showsubmenu();
         void showsubmenu()
          showsubmenu();
          showsubmenu();
  • 데블스캠프2005/RUR-PLE . . . . 4 matches
         || [데블스캠프2005/RUR-PLE/Newspaper/Refactoring] ||
         || [데블스캠프2005/RUR-PLE/Newspaper] ||
         http://rur-ple.sourceforge.net/images/newspaper_start.png
         http://rur-ple.sourceforge.net/images/newspaper_end.png
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/변형진 . . . . 4 matches
          public static void main(String[] args) throws IOException {
          public Trainer load() throws IOException {
          value += getLnPwsPwns(index, word);
          private double getLnPwsPwns(int index, String word) {
  • 맞춤교육 . . . . 4 matches
         [http://news.kbs.co.kr/news.php?id=694145&kind=c 기업, '맞춤교육' 대학에 요구]
          - SeeAlso [http://ucc.media.daum.net/uccmix/news/foreign/others/200502/24/fnnews/v8451147.html?u_b1.valuecate=4&u_b1.svcid=02y&u_b1.objid1=16602&u_b1.targetcate=4&u_b1.targetkey1=17161&u_b1.targetkey2=845114 한국엔 인재가 없다]
  • 안윤호의IT인물열전 . . . . 4 matches
         [http://www.zdnet.co.kr/programming/technews/article.jsp?id=63523&forum=1 오타쿠와 프로그래머는 닮은꼴?]
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=52632 '스톨만의 이의있습니다']
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=51851 피터드러커가 말하는 '지식사회']
         [http://www.zdnet.co.kr/biztech/hwsw/biztrend/article.jsp?id=51170 데이터스모그와 오버클러킹]
  • 영호의해킹공부페이지 . . . . 4 matches
         to explain it to myself: I had downloaded a file on Win32 buffer overflows but
         And when executing the program, the output we get is as follows...
         shipped with Windows 9x and MS-DOS...
         which wont show up in the windows task list.
  • 1002/Journal . . . . 3 matches
          throws ProtocolException, IOException {
          throws ProtocolException, IOException {
          throws ProtocolException, IOException {
  • 10학번 c++ 프로젝트/소스 . . . . 3 matches
         #include <windows.h>
         #include <windows.h>
          CurInfo.dwSize=1;
          CurInfo.dwSize=100;
          CurInfo.dwSize=20;
         #include <windows.h>
  • CVS . . . . 3 matches
          * http://network.hanbitbook.co.kr/view_news.htm?serial=298 - CVS 소개.
          * http://network.hanbitbook.co.kr/view_news.htm?serial=299 - CVS 관리. tag, branch 등에 대한 간단한 소개.
          * 현재 ZeroPage 에서는 CVS 서비스를 하고 있다. http://zeropage.org/viewcvs/cgi/viewcvs.cgi 또는 ZeroPage 홈페이지의 왼쪽 메뉴 참조. 웹 클라이언트로서 viewcvs 를 이용중이다. 일반 CVS Client 로서는 Windows 플랫폼에서는 [TortoiseCVS](소위 '터틀'로 불린다.) 를 강력추천! 탐색기의 오른쪽 버튼과 연동되어 아주 편리하다.
  • EightQueenProblem/이선우3 . . . . 3 matches
          public Board( int sizeOfBoard ) throws Exception
          public ConsolBoard( int sizeOfBoard ) throws Exception
          public void prepareBoard( int sizeOfBoard ) throws Exception
  • GIMP . . . . 3 matches
          http://www.gimp.org/screenshots/windowsxp_screenshot1.png
          http://www.gimp.org/screenshots/windowsxp_screenshot2.png
          http://www.gimp.org/screenshots/windowsxp_screenshot3.png
  • GUIProgramming . . . . 3 matches
         = Windows Platform =
         == Windows Forms ==
         최근 버전의 자바에서 이용하기 시작한 선사의 툴킷이다. 특징으로는 AWT보다 더욱 보기 좋은 그래픽을 제공한다. 또한 AWT와 달리 플랫폼에 비종속적이기 때문에 모든 플랫폼에서 동일한 모양을 보여준다. 그리고 클래스 라이브러리에 약간의 수정을 가함으로써 Windows 에서 기타 플랫폼 (예를 들자면 Mac)의 {{{~cpp Look&Feel}}}사용하는 것이 가능하다. 물론 -_-; 원칙적으로 특정 운영체제의 룩&필은 변경해서 응용프로그램을 개발하는 것은 정책상 불법의 범주에 속한다..
  • Java/JDBC . . . . 3 matches
          * @throws SQLException
          * @throws ClassNotFoundException
          public static void main(String[] args) throws SQLException, ClassNotFoundException {
  • MicrosoftFoundationClasses . . . . 3 matches
         Microsoft Foundation Classes 를 줄여서 부른다. 기정의된 클래스의 집합으로 Visual C++이 이 클래스들을 가반으로 하고 있다. 이 클래스 군은 MS Windows API를 래핑(Wrapping)하여서 객체지향적 접근법으로 프로그래밍을 하도록 설계되어 있다. 예전에는 볼랜드에서 내놓은 OWL(Object Windows Library)라는 것도 쓰였던 걸로 아는데... -_-; 지금은 어디로 가버렸는지 모른다. ㅋㅋ
          ''백과사전) WikiPedia:Microsoft_Foundation_Classes, WikiPedia:Object_Windows_Library ''
  • ProjectVirush/Prototype . . . . 3 matches
         //Project -> Setting -> LINK 메뉴 -> Object/library modules: 의 끝부분에 ws2_32.lib 를 추가한다.
          WSADATA wsaData;
          if( WSAStartup(MAKEWORD(2,2), &wsaData) == -1 )
          error("WSAStartup Error");
          WSACleanup();
  • RSSAndAtomCompared . . . . 3 matches
         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.
         Atom 1.0 allows standalone Atom Entry documents; these could be transferred
          * [http://bulknews.typepad.com/blog/2005/07/searchcpanorg_t.html XML::Atom]
  • RUR-PLE/Newspaper . . . . 3 matches
         = RUR-PLE/Newspaper(함수화 전) =
         = RUR-PLE/Newspaper(함수화 후) =
         = RUR-PLE/Newspaper(함수화 후, 함수 반복제거) =
  • ReadySet 번역처음화면 . . . . 3 matches
         For the latest news, see the [http://readyset.tigris.org/servlets/ProjectNewsList Project Announcements].
          *1. Briefly browse all templates
  • Ruby/2011년스터디/서지혜 . . . . 3 matches
          * windows API로 프로세스의 정보 받아오기 ([http://sosal.tistory.com/100 원본])
         #include <Windows.h>
          pe32.dwSize = sizeof(PROCESSENTRY32);
         #include <Windows.h>
          pe32.dwSize = sizeof(PROCESSENTRY32);
  • StructuredText . . . . 3 matches
          Is interpreted as '... by Smith <a href="#12">[12]</a> this ...'. Together with the next rule this allows easy coding of references or end notes.
          Is interpreted as '<a name="12">[12]</a> "Effective Techniques" ...'. Together with the previous rule this allows easy coding of references or end notes.
          * A paragraph that has blocks of text enclosed in '||' is treated as a table. The text blocks correspond to table cells and table rows are denoted by newlines. By default the cells are center aligned. A cell can span more than one column by preceding a block of text with an equivalent number of cell separators '||'. Newlines and '|' cannot be a part of the cell text. For example:
  • TheJavaMan/스네이크바이트 . . . . 3 matches
          public void Move(Board bo) throws IOException
          public static void main(String[] args) throws IOException{
          public static void main(String[] args) throws InterruptedException{
  • Trac . . . . 3 matches
         Trac allows wiki markup in issue descriptions and commit messages, creating links and seamless references between bugs, tasks, changesets, files and wiki pages. A timeline shows all project events in order, making getting an overview of the project and tracking progress very easy.
          http://biohackers.net/yongslib/browser/
  • UbuntuLinux . . . . 3 matches
         title Windows 2000 Advanced Server SP4
          Options Indexes MultiViews
         CTRL + ALT + Left Click on Desktop - allows you to use the mouse to rotate cube.
  • UsenetMacro . . . . 3 matches
          $url .= '/browse_thread/thread/'.$thread;
         [[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)]]
  • ZeroPageServer/set2002_815 . . . . 3 matches
          * [[HTML( <STRIKE> CVS Browser (Perl버전) 설치 </STRIKE> )]]
          * [[HTML( <STRIKE> Browser CVS (Perl 스크립트) 설치 </STRIKE> )]] : 석천 설치 browserCVS 제거
  • ZeroPage_200_OK . . . . 3 matches
          * Google Chrome for Windows
          * Browser Object Model : 자바스크립트로 Browser와 상호작용하기 위해 제공되는 API들의 집합. 공식적인 표준은 존재하지 않아서 조금씩 다를 수 있다.
  • 김동준/Project/Data_Structure_Overview/Chapter1 . . . . 3 matches
         int** make2dArray(int rows, int cols) {
          MALLOC(x, rows * sizeof (*x));
          for(i = 0; i < rows; i++) { MALLOC(x[i], cols * sizeof(**X)); }
  • 데블스캠프2004/금요일 . . . . 3 matches
         JDK 1.5 : http://zeropage.org/~neocoin/eclipse3.0rc3/jdk-1_5_0-beta2-windows-i586.exe
          public static int inputInt() throws IOException {
          public static String inputString() throws IOException {
          * g.drawString(String string, int s, int y) 메소드
  • 데블스캠프2009/월요일/연습문제/HTML-CSS/정종록 . . . . 3 matches
         body {background-image:url('http://wstatic.dcinside.com/new/photo/sosimarine.jpg')}
         //background:url("http://wstatic.dcinside.com/new/photo/sosimarine.jpg");
         body {background-image:url('http://wstatic.dcinside.com/new/photo/sosimarine.jpg');
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 . . . . 3 matches
          inputStr.equals("tistory") || inputStr.equals("co") || inputStr.equals("kr") || inputStr.equals("www") || inputStr.equals("ohmynews") ||
          reslt += getLnPwsPwns(index, wordTmp);
          private double getLnPwsPwns(int index, String word) {
  • 이승한/PHP . . . . 3 matches
         $totalRecord = mysql_num_rows($result); //<변수> = mysql_num_rows(<결과값저장변수>); //되돌아온 리코드의 수를 변수에 저장
          * sleep() //windows의 sleep과 같다.
  • 제12회 한국자바개발자 컨퍼런스 후기 . . . . 3 matches
         || 14:00 ~ 14:50 || KT Cloud 기반 애플리케이션 개발 전략 (정문조) || Event Driven Architecture (이미남) || 성공하는 개발자를 위한 아키텍처 요구사항 분석 방법 (강승준) || JBoss RHQ와 Byteman을 이용한 오픈소스 자바 애플리케이션 모니터링 (원종석) || Java와 Eclipse로 개발하는 클라우드, Windows Azure (김명신) || Apache Hadoop으로 구현하는 Big Data 기술 완벽 해부 (JBross User Group) || 클라우드 서버를 활용한 서비스 개발 실습 (허광남) ||
          그 다음으로 Track 5에서 있었던 Java와 Eclipse로 개발하는 클라우드, Windows Azure를 들었다. Microsoft사의 직원이 진행하였는데 표준에 맞추려고 노력한다는 말이 생각난다. 그리고 처음엔 Java를 마소에서 어떻게 활용을 한다는 건지 궁금해서 들은 것도 있다. 이 Windows Azure는 클라우드에서 애플리케이션을 운영하든, 클라우드에서 제공한 서비스를 이용하든지 간에, 애플리케이션을 위한 플랫폼이 필요한데, 애플리케이션 개발자들에게 제공되는 서비스를 위한 클라우드 기술의 집합이라고 한다. 그래서 Large로 갈 수록 램이 15GB인가 그렇고.. 뭐 여하튼.. 이클립스를 이용해 어떻게 사용하는지 간단하게 보여주고 하는 시간이었다.
  • 파이썬으로익스플로어제어 . . . . 3 matches
          자세한 내용은 http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/reference/objects/internetexplorer.asp 에의 컴포넌트들을 참조하세요. 주로 알아야 할 객체는 WebBrowser, Document 객체입니다. (login 예제는 나중에~) --[1002]
  • 2010php/방명록만들기 . . . . 2 matches
         <textarea name='context' rows='4' cols='50'></textarea>
         $record_number = mysql_num_rows($result);
  • AI오목컨테스트2005 . . . . 2 matches
          * [http://zeropage.org/trac/namsangboy/browser/Omok 오목소스_상협]
          * http://zeropage.org/trac/namsangboy/browser/Omok - 상협의 Python으로 만든 오목 AI (기초적인 것만 함)
  • Ajax . . . . 2 matches
         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.
  • BasicJava2005/5주차 . . . . 2 matches
         7. throws 구문 / throw 구문
          throws : 이 함수에서는 예외처리 하고 싶지 않을때 사용한다.
  • C++HowToProgram . . . . 2 matches
         C++ 사용자 그룹에서는 "초보자에게 괜찮은 책"이라는 평가와 동시에 "형편없는 책"으로도 악명이 높다. see also [http://www.accu.org/bookreviews/public/reviews/cp/cp003204.htm ACCU review]
  • CincomSmalltalk . . . . 2 matches
          * [http://zeropage.org/pub/language/smalltalk_cincom/VM-Windows.tar.gz Windows용 VM]
  • Cracking/ReverseEngineering/개발자/Software/ . . . . 2 matches
         Jeffrey Richter의 Programming Applications for Microsoft Windows란 책을 추천한다. 현재 4th edition까지 나온 상태이다. 물론 한글판은 없다.
         (윈도우즈 시스템 커널이 하는 일등을 배울 수 있으며 그것을 이용해 나쁘게 사용하든 좋게 사용하든 도움이 많이 되는 책이다. Windows에 Base를 둔 Software 개발자로서는 꼭 읽어야할 책.)
  • CvsNt . . . . 2 matches
         이를 돌리려면 Windows용 ViewCVS 패키지를 받아야 한다. http://www.cvsnt.org/wiki/ViewCvs 를 보면 알리라.
         cvsgraph_path =F:webviewcvswindowsbinaries # 윈도우즈환경이고 잘 안될경우 절대경로로.
  • Eclipse . . . . 2 matches
          * [http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html Eclipse + Ant]
         ||Alt +F6|| Windows간 전환||
  • Eclipse/PluginUrls . . . . 2 matches
          * 위와 같은 에러 메시지가 뜬다면 Windows -> preference -> Team -> SVN 에서 SVN interface 를 JavaSVN -> JavaHL 로 변경해야 함
          * [http://www.myeclipseide.com/Downloads%2Bindex-req-viewsdownload-sid-10.html] 홈페이지
  • Eclipse와 JSP . . . . 2 matches
         Windows->Preferences->Tomcat 선택 후
         (필요한 경우) Windows->Preferences->Tomcat->Advanced 선택 후
  • EightQueenProblem/da_answer . . . . 2 matches
          Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
          Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  • Fmt . . . . 2 matches
         lines are as follows.
         lines are as follows.
  • Gof/Command . . . . 2 matches
         아마도 CommandPattern에 대한 첫번째 예제는 Lieberman 의 논문([Lie85])에서 나타났을 것이다. MacApp [App89] 는 undo가능한 명령의 구현을 위한 command의 표기를 대중화시켰다. ET++[WGM88], InterViews [LCI+92], Unidraw[VL90] 역시 CommandPatter에 따라 클래스들을 정의했다. InterViews는 각 기능별 명령에 대한 Action 추상 클래스를 정의했다. 그리고 action 메소드에 의해 인자화됨으로서 자동적으로 command subclass들을 인스턴스화 시키는 ActionCallback 템플릿도 정의하였다.
  • Gof/Strategy . . . . 2 matches
          * ET++, InterViews - line breaking algorithms as we've described.
          * Borland's ObjectWindows - dialog box. validation streategies.
  • Google/GoogleTalk . . . . 2 matches
          my $browser = LWP::UserAgent->new();
          my $response = $browser->get($url->as_string, 'User-Agent'=>'Mozilla' );
  • HelloWorld . . . . 2 matches
         === Windows API version ===
         #include <windows.h>
  • InterWiki . . . . 2 matches
         List of valid InterWiki names this wiki knows of:
         MoinMoin marks the InterWiki links in a way that works for the MeatBall:ColourBlind and also is MeatBall:LynxFriendly by using a little icon with an ALT attribute. If you hover above the icon in a graphical browser, you'll see to which Wiki it refers. If the icon has a border, that indicates that you used an illegal or unknown BadBadBad:InterWiki name (see the list above for valid ones). BTW, the reasoning behind the icon used is based on the idea that a Wiki:WikiWikiWeb is created by a team effort of several people.
  • JTDStudy/첫번째과제/상욱 . . . . 2 matches
          protected void setUp() throws Exception {
          protected void tearDown() throws Exception {
  • Java2MicroEdition/MidpHttpConnectionExample . . . . 2 matches
          protected void startApp() throws MIDletStateChangeException {
          private void init(String url) throws IOException {
  • Linux/디렉토리용도 . . . . 2 matches
         윈도우의 Windows, ProgramFiles 만으로 이루어진 그 구조가 왜 그렇게 그립던지 ㅠ.ㅠ
          * /usr/local : 새로운 프로그램들이 설치되는 곳(windows의 Program Files 와 유사)
  • MoinMoin . . . . 2 matches
          * [http://www.oreillynet.com/pub/a/python/2000/11/29/pythonnews.html PythonNews article on wikis]
  • MoinMoinBugs . . . . 2 matches
          * Solve the problem of the Windows filesystem handling a WikiName case-indifferent (i.e. map all deriatives of an existing page to that page).
         ''They render identically with IE5. Provide some info on your browser & OS. And the HTML is identical:''
  • MoinMoinNotBugs . . . . 2 matches
         == This is *NOT* a Browser bug with CSS rendering ==
         ''This issue will be resolved in the course of XML formatting -- after all, XML is much more strict than any browser.''
  • NamedPipe . . . . 2 matches
         #include <windows.h>
         #include <windows.h>
  • PHP Programming/HtmlTag . . . . 2 matches
          *<FORM> <TEXTAREA rows="8" cols="40" name="area"> .... </TEXTAREA> </FORM>
          *rows=".." - 필드의 수직 행수
  • ProjectPrometheus/CookBook . . . . 2 matches
          protected void doGet(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws ServletException, IOException {
          throws ServletException, IOException {
  • ProjectPrometheus/Journey . . . . 2 matches
          * Python 의 ClientCookie 모듈의 편리함에 즐거워하며. Redirect, cookie 지원. 이건 web browser AcceptanceTest를 위한 모듈이란 생각이 팍팍! --["1002"]
         일단 알고리즘부분을 대강 생각한뒤 Python 으로 TDD 를 했다. ([http://zeropage.org/browsecvs/index.php?&dir=ProjectPrometheus%2FPythonProject%2F&file=RSSpike.py&rev=1.1&cvsrep=ZeroPage 소스]). CRC 세션을 먼저하여 시나리오를 시각화해두고 프로그래밍을 했었다면 좀 더 빨리 작성할 수 있지 않았을까 하는 생각을 해본다.
  • ProjectPrometheus/LibraryCgiAnalysis . . . . 2 matches
          * Servlet-Engine: Tomcat Web Server/3.2.1 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Windows 2000 5.0 x86; java.vendor=Sun Microsystems Inc.)
         Windows 2000 아파치 톰켓 조합에 Java JDK 가 1.3.1_01 이라. 약간 신기한 조합같다는 생각이.. --a
  • ProjectSemiPhotoshop/SpikeSolution . . . . 2 matches
          /* If this is a Windows-style DIB, the number of colors in the
          * allows for (i.e. lpbi->biClrUsed can be set to some value).
  • PyIde . . . . 2 matches
          * http://st-www.cs.uiuc.edu/users/brant/Refactory/RefactoringBrowser.html - Smalltalk refactoring browser
  • Server&Client/상욱 . . . . 2 matches
          public ServerSocketTest() throws IOException {
          public static void main(String[] args) throws Exception {
  • Server&Client/영동 . . . . 2 matches
          public static void main(String[] args) throws IOException
          public static void main(String[] args) throws IOException
  • SharedSourceProgram . . . . 2 matches
         [http://news.naver.com/news/read.php?mode=LSD&office_id=092&article_id=0000002588§ion_id=105&menu_id=105 ZDnet기사부분발췌]
  • SmallTalk/강좌FromHitel/강의2 . . . . 2 matches
          (Sound fromFile: 'C:\Windows\Media\Ding.wav') woofAndWait; woofAndWait.
          SmalltalkSystem current browseContainingSource: 'Dolphin'.
  • SmallTalk/강좌FromHitel/강의3 . . . . 2 matches
         다. Windows의 바탕 화면이 표시되어있다면 글쇠를 눌러서 바탕 화면을
         서 한글 Windows에서 사용하는 기본 글꼴인 '굴림'으로 글꼴 설정을 바꾸어
  • SmallTalk/문법정리 . . . . 2 matches
         from VisualWorks Lesson Browser 01 (Lesson: Language Basic)
         from VisualWorks Lesson Browser 01 (Lesson: Language Basic)
  • Ubiquitous . . . . 2 matches
          [http://zdnet.co.kr/news/brief/0,39026146,10056878,00.htm]
         [http://zdnet.co.kr/news/network/ipv6/0,39029016,39137195,00.htm 한국 IPv6 주소 확보「세계 3위, 아태 1위」] - 독일이 9000여 개로 1위라고 하네요.
  • VMWare/OSImplementationTest . . . . 2 matches
         gcc였습니다. 하지만 저는 windows 환경하의 vc 개발을 주로 해왔으므로 무척
         : warning LNK4096: /BASE value "10000" is invalid for Windows 95; image may
  • ViImproved/설명서 . . . . 2 matches
         wrapscan(ws) ws 우측 마진을 설정
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 2 matches
         에서 루아 Windows 인스톨러를 받아서 설치하게됬다.
         LuaForWindows_v5.1.4-35.exe
  • WikiSlide . . . . 2 matches
          * '''Uncomplicated''' - everything works in a standard browser
          * Creating documentation and slide shows ;)
  • WindowsTemplateLibrary . . . . 2 matches
         {{|The Windows Template Library (WTL) is an object-oriented Win32 encapsulation C++ library by Microsoft. The WTL supports an API for use by programmers. It was developed as a light-weight alternative to Microsoft Foundation Classes. WTL extends Microsoft's ATL, another lightweight API for using COM and for creating ActiveX controls. Though created by Microsoft, it is unsupported.
         Being an unsupported library, WTL has little formal documentation. However, most of the API is a direct mirror of the standard Win32 calls, so the interface is familiar to most Windows programmers.|}}
  • ZP도서관 . . . . 2 matches
         || Applications for Windows Fourth Edition || Jeffrey Richter || MS Press || ["1002"] || 원서 ||
         || Windows NT 프로그래밍 || Julian Templeman || 정보문화사 || ["1002"] || 한서. Wrox 번역판 ||
  • ZeroWiki/Mobile . . . . 2 matches
          * http://detectmobilebrowser.com/
          * http://detectmobilebrowsers.mobi/
  • [Lovely]boy^_^/EnglishGrammer/PresentPerfectAndPast . . . . 2 matches
          ex2) (from the news) The police have arrested two men in connection with the robbery.
          Yet = until now. It shows that the speaker is expecting something to happen. Use yet only in questions and negative sentences.
  • [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.
  • django . . . . 2 matches
         == For Windows ==
         http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/
  • html5/webSqlDatabase . . . . 2 matches
          for (var i=0; i < rs.rows.length; i++) {
          rowOutput += renderTodo(rs.rows.item(i));
  • woodpage/VisualC++HotKeyTip . . . . 2 matches
          *역시 이동하는 기술로 BrowseGoToDefinition 이라고 함 마우스 오른쪽 팝업메뉴에도 나옴 사용법은 예를 들어 fSelect()라는 함수를 사용했을때 그함수내용을 보고싶으면 fSelect에다가 커서를 놓고 F12를 누름 (변수,define도 됨) 그럼 fSelect()가 구현된(?)곳으로 이동함 사용하면 아주 유용함 단점은 *.ncb 파일이 조금 커짐 별문제 아님 사실 마우스 오른쪽 팝업에서 쓰는걸 더 많이 씀
          *BrowseGotoReference라고 함 함수는 선언된곳으로 감 예를 들어 클래스 맴버 함수면 클래스 header로 감
  • wxPython . . . . 2 matches
         wxWindows 를 기반한 다중플랫폼 Python GUI Toolkit.
          * [http://www.roebling.de wxDesigner] - GUI 디자인 툴. GUI 디자인 한 결과물을 wxPython, wxWindows 등의 코드로 변환할 수 있다.
  • 고한종/십자가돌리기 . . . . 2 matches
         #include<Windows.h>
         // ㄴ#include<windows.h> 선언후 사용.
  • 나는이런곳을즐겨찾는다 . . . . 2 matches
         || [MapBrowserSite] || 요즘 서울, 분당은 항공지도 서비스까지 지원 ||. ||
         || http://www.newstand.co.kr/ || 잡지들을 모아논 사이트 주로 스포츠 신문을 봄 || . ||
  • 데블스캠프2002 . . . . 2 matches
         || 6월 26일 || 수요일 || 이상규, 이병희 || DevelopmentinWindows, Web Programming ||
          1. ["DevelopmentinWindows"] - 윈도우즈 운영체제를 기반으로한 프로그램 개발의 간략한 소개 --상규
  • 데블스캠프2002/진행상황 . . . . 2 matches
          * 세미나 - DevelopmentinWindows, EventDrivenProgramming, Web Programming
          * DevelopmentinWindows 세미나는 신입생들에게는 조금 어려웠나봅니다. 준비도 많이 하고 쉽게 설명하려고 복잡한건 다 뺐는데...... 그래도 어려웠나봅니다. 어쨌든 조금이나마 도움이 되었으면 좋겠습니다. --상규
  • 데블스캠프2003/셋째날/J2ME . . . . 2 matches
         [http://165.194.17.15/pub/language/java/j2sdk-1_4_0_01-windows-i586.exe J2SE]
         [http://165.194.17.15/pub/language/j2me_wireless_toolkit-2_0-windows.exe wireless toolkit]
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 2 matches
          public FileData(String filename) throws FileNotFoundException, UnsupportedEncodingException {
          private static void writeCsv(String filename) throws FileNotFoundException {
  • 데블스캠프2012/넷째날/묻지마Csharp/김태진 . . . . 2 matches
         using System.Windows.Forms;
         namespace WindowsFormsApplication1
  • 만년달력/김정현 . . . . 2 matches
          public static void main(String[] args) throws Exception{
          public void setUp() throws Exception {
  • 새싹교실/2012/세싹 . . . . 2 matches
         #include <windows.h>
          * CreateFile함수 사용시 문자열이 LPCWSTR로 변환되지 않는 문제가 생기는 경우에는 CreateFileA를 사용해보세요.
          자세한 내용은 http://stackoverflow.com/questions/3783842/converting-a-string-to-lpcwstr-for-createfile-to-address-a-serial-port
  • 성당과시장 . . . . 2 matches
         이듬해 Eric S.Raymond 는 [http://kldp.org/root/gnu/cb/magic-cauldron/ 마법의 솥] 이라는 오픈소스의 구체적인 사업 형태 대한 논문을 선보인다. 그리고 이후 [http://zdnet.co.kr/news/enterprise/article.jsp?id=69067&forum=1 독점SW vs. 오픈소스「뜨거운 경제 논쟁] 같이 아직까지도 꾸준한 논쟁이 이루어 진다.
         국내에서는 최근(2004) 이만용씨가 MS의 초대 NTO인 [http://www.microsoft.com/korea/magazine/200311/focusinterview/fi.asp 김명호 박사의 인터뷰]를 반론하는 [http://zdnet.co.kr/news/column/mylee/article.jsp?id=69285&forum=1 이만용의 Open Mind- MS NTO 김명호 박사에 대한 반론] 컬럼을 개재하여 화제가 되고 있다.
  • 소수구하기 . . . . 2 matches
         723만자리짜리 소수가 발견되었다네요 [http://ucc.media.daum.net/uccmix/news/foreign/others/200406/08/hani/v6791185.html?u_b1.valuecate=4&u_b1.svcid=02y&u_b1.objid1=16602&u_b1.targetcate=4&u_b1.targetkey1=17161&u_b1.targetkey2=6791185&nil_profile=g&nil_NewsImg=4 관련기사] - [임인택]
  • 송년회 . . . . 2 matches
         이런 연말모임도 해 보면 좋겠습니다.[http://news.naver.com/news/read.php?mode=LSD&office_id=028&article_id=0000089874§ion_id=103&menu_id=103]--[Leonardong]
  • 알고리즘8주숙제 . . . . 2 matches
         The kanpsack problem is defined as follows:
         || [Leonardong] || 2h || [http://wiki.zeropage.org/trac/leonardong/browser/AlgorithmTrainning/OptimalBST.py] ||
  • 임인택/코드 . . . . 2 matches
          * 헤더파일 : windows.h, imm.h
          DWORD dwConversion, dwSentence;
          ImmGetConversionStatus(himc, &dwConversion, &dwSentence);
          ImmSetConversionStatus(himc, IME_CMODE_NATIVE, dwSentence);
          ImmSetConversionStatus(himc, IME_CMODE_ALPHANUMERIC, dwSentence);
          * 헤더 : winuser.h, windows.h
  • 작은자바이야기 . . . . 2 matches
          * Windows7 기준으로 [사용자이름]\.m2\[groupid]\[artifactid] 폴더에 jar 파일을 만들어 준다.
          * .java 파일에는 클래스 내에 native modifier를 붙인 메소드를 작성하고, .c, .cpp 파일에는 Java에서 호출될 함수의 구현을 작성한다. 이후 System.loadLibrary(...) 함수를 이용해서 .dll 파일(Windows의 경우) 또는 .so(shared object) 파일(Linux의 경우)을 동적으로 로드한다.
  • 정규표현식/소프트웨어 . . . . 2 matches
         = windows =
          http://hackingon.net/image.axd?picture=WindowsLiveWriter/AdhocStringManipulationWithVisualStudio/7EA25C99/image.png
  • 정모/2005.4.25 . . . . 2 matches
          SSP 확정으로 인해 windows 기반으로 수업하게 될듯.
          * windows 재설치/Linux 설치
  • 졸업논문/참고문헌 . . . . 2 matches
         [1] Tim O'Reilly, "What Is Web 2.0", http://www.oreillynet.com/pub/a/oreilly/tim/news/2005/09/30/what-is-web-20.html, Sep. 2005.
         [8] http://code.djangoproject.com/browser/django/trunk/django/db/models/query.py
  • 코드레이스/2007/RUR_PLE . . . . 2 matches
         http://rur-ple.sourceforge.net/images/newspaper_start.png
         http://rur-ple.sourceforge.net/images/newspaper_end.png
  • 2011년독서모임 . . . . 1 match
          * [강소현] - [http://www.yes24.com/24/Goods/3105115?Acode=101 엄마를 부탁해]<- [http://news.nate.com/view/20110416n04609?mid=n0507 요상한 비판기사ㅇㅁㅇㅋ]
  • 2학기자바스터디/첫번째모임 . . . . 1 match
         [http://165.194.17.15/pub/language/java/j2sdk-1_4_2_01-windows-i586.exe]
  • 3DGraphicsFoundation/INSU/SolarSystem . . . . 1 match
         #include <windows.h>
          WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS,
  • 5인용C++스터디/소켓프로그래밍 . . . . 1 match
          [Dialog based] -> [Windows Sockets]를 설정
  • 5인용C++스터디/에디트박스와콤보박스 . . . . 1 match
          m_pEdit -> Create(WS_CHILD | WS_VISIBLE | WS_BORDER,
         BOOL Create(DWORD dwstyle, const RECT& rect, CWnd* pParentWnd, UINT nID);
          첫 번째 인수로 에디트의 스타일을 주되 에디트는 메인 윈도우가 될 수 없으므로 WS_CHILD 스타일을 주어야 하고 생성하자마자 보여야 하므로 WS_VISIBLE 스타일을 주어야 한다. 또한 에디트는 디폴트로 경계선을 가지지 않으므로 WS_BORDER 스타일을 주어야 보이게 된다. 두 번째 인수로 에디트가 차지할 사각영역을 주고 세 번째 인수로 에디트의 부모 윈도우의 포인터를 준다. 마지막 인수인 nID는 에디트 컨트롤의 ID이되 통지 메시지를 처리하지 않을 경우는 ID를 주지 않아도 상관없다.
  • 5인용C++스터디/윈도우즈프로그래밍 . . . . 1 match
         #redirect DevelopmentinWindows
  • 5인용C++스터디/키보드및마우스의입출력 . . . . 1 match
         #include <windows.h>
          hWnd=CreateWindow(lpszClass,lpszClass,WS_OVERLAPPEDWINDOW,
  • 5인용C++스터디/타이머보충 . . . . 1 match
         #include <afxcmn.h> // MFC support for Windows Common Controls
  • AM . . . . 1 match
          * 주 교재 : Windows API 정복 ( Aladdin:8973542796 ), Visual C++ 6 완벽가이드 ( Aladdin:8931427301 )
  • AM/20040705두번째모임 . . . . 1 match
         ex) 배우는 부분이 Windows Programming, Window Event Driven Programming, GDI, GUI Control 들이라 한다면
  • AM/20040712세번째모임 . . . . 1 match
          * 참고자료 Upload:am_study2.ppt [DevelopmentinWindows]
  • AM/AboutMFC . . . . 1 match
         그런데요. C# 관련해서 프로그래밍 프로젝트는 없어요? Windows플랫폼이라면, 일반 어플리케이션은 C# 뿐만아니라, Embeded 까지 .NET 계열이 맡게 될텐데 말이죠 :) --NeoCoin
  • API/WindowsAPI . . . . 1 match
         #include <windows.h>
          hWnd=CreateWindow(lpszClass,lpszClass,WS_OVERLAPPEDWINDOW,
  • AcceleratedC++ . . . . 1 match
          || [http://sourceforge.net/projects/mingw/ MinGW] || GCC의 Windows 포팅 ||
  • ActiveTemplateLibrary . . . . 1 match
         {{|The Active Template Library (ATL) is a set of template-based C++ classes that simplify the programming of Component Object Model (COM) objects. The COM support in Visual C++ allows developers to easily create a variety of COM objects, Automation servers, and ActiveX controls.
  • ActiveXDataObjects . . . . 1 match
         {{|Microsoft ADO (ActiveX Data Objects) is a Component object model object for accessing data sources. It provides a layer between programming languages and databases, which allows a developer to write programs which access data, without knowing how the database is implemented. No knowledge of SQL is required to access a database when using ADO, although one can use ADO to execute arbitrary SQL commands. The disadvantage of this is that this introduces a dependency upon the database.
  • Ajax/GoogleWebToolkit . . . . 1 match
         The Google Web Toolkit is a free toolkit by Google to develop AJAX applications in the Java programming language. GWT supports rapid client/server development and debugging in any Java IDE. In a subsequent deployment step, the GWT compiler translates a working Java application into equivalent JavaScript that programatically manipulates a web brower's HTML DOM using DHTML techniques. GWT emphasizes reusable, efficient solutions to recurring AJAX challenges, namely asynchronous remote procedure calls, history management, bookmarking, and cross-browser portability.
  • Ant/JUnitAndFtp . . . . 1 match
         이를 cron job 이나 windows 의 '예약된 작업' 등 스케줄러와 같이 이용하면 편리하다.
  • Applet포함HTML/상욱 . . . . 1 match
          codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_1_01-windows-i586.cab#Version=1,4,1,1"
  • Applet포함HTML/진영 . . . . 1 match
          codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_1_01-windows-i586.cab#Version=1,4,1,1"
  • ApplicationProgrammingInterface . . . . 1 match
          * [API/WindowsAPI] : 윈도우즈에 기본적으로 제공되는 API
  • Atom . . . . 1 match
         Atom is an XML-based document format and HTTP-based protocol designed for the syndication of Web content such as weblogs and news headlines to Web sites as well as directly to user agents. It is based on experience gained in using the various versions of RSS. Atom was briefly known as "Pie" and then "Echo".
  • BusSimulation/태훈zyint . . . . 1 match
         #include <windows.h> //sleep
  • C/Assembly/Main . . . . 1 match
         Windows OS가 아닌 DOS OS는 메모리의 관리를 Kernel(OS의 Core)이 아닌 Program에서 해주게 된다.
  • C/C++어려운선언문해석하기 . . . . 1 match
         로그램(TSR)을 작성하는데 사용되기도 했고 Win32나 X-Windows서는 callback 함수를 작성하는데 주로 사용됩니다. 이 외에도 많은 곳에
  • CCNA/2013스터디 . . . . 1 match
          * Web Browser와 같은 프로그램
  • CPPStudy_2005_1 . . . . 1 match
          [http://sourceforge.net/projects/mingw/ MinGW] GCC의 Windows 포팅
  • CVS/길동씨의CVS사용기ForLocal . . . . 1 match
          * in Windows
  • CeeThreadProgramming . . . . 1 match
         #include <windows.h>
  • Chapter I - Sample Code . . . . 1 match
          '''uCOS-II를 끝내기 전에 PC_DOSSaveReturn 함수를 호출해야한다. 그렇지 않으면 DOS가 curruped mode 가 되어버리고 이것은 당신의 windows에 영향을 줄 수도 있다.'''
  • ChocolateChipCookies/조현태 . . . . 1 match
         #include <Windows.h>
          int nowSuchLength = (int)g_hitPoints.size();
          for (register int j = 0; j < nowSuchLength; ++j)
  • CleanCode . . . . 1 match
          * [https://code.google.com/p/support/wiki/CodeReviews Google Code Review System]
  • CodeConvention . . . . 1 match
          * [http://network.hanbitbook.co.kr/view_news.htm?serial=161 CTS(Common Type System)와 CLS(Common Language Specification)]
  • CodeRace/20060105/민경선호재선 . . . . 1 match
          protected void finalize() throws Throwable {
  • ComputerNetworkClass/Report2006/BuildingProxyServer . . . . 1 match
         [http://www.naturesharmony.us/misc/WoW/WoWEmu_Help/wsaerrors.html WSA Error Code]
  • ComputerNetworkClass/Report2006/BuildingWebServer . . . . 1 match
          * wsock32.lib 을 프로젝트에 추가 해야 돌아간다.
  • Cpp/2011년스터디 . . . . 1 match
          * XCode에서 코드를 좀 더 업그레이드 시켜보려고 했으나 망할 --VS2008-- '윈도' 에만 돌아가는 것들(Windows.h)이 있어 실패하고 한종이 컴퓨터에서만 짜기로 했음.
  • D3D . . . . 1 match
          Tricks of the Windows Game Programming Gurus : Fundamentals of 2D and 3D Game Programming. (DirectX, DirectMusic, 3D sound)
  • DPSCChapter1 . . . . 1 match
         A '''design pattern''' is a reusable implementation model or architecture that can be applied to solve a particular recurring class of problem. The pattern sometimes describes how methods in a single class or subhierarchy of classes work together; more often, it shows how multiple classes and their instances collaborate. It turns out that particular architectures reappear in different applications and systems to the extent that a generic pattern template emerges, one that experts reapply and customize to new application - and domain-specific problems. Hence, experts know how to apply design patterns to new problems to implement elegant and extensible solutions.
  • DebuggingSeminar_2005/UndName . . . . 1 match
         Microsoft(R) Windows (R) 2000 Operating System
  • DermubaTriangle/조현태 . . . . 1 match
         #include <Windows.h>
  • DirectDraw/APIBasisSource . . . . 1 match
         #include <windows.h>
          WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT,
  • DirectDraw/Example . . . . 1 match
         // function that was added to Windows 95. It is important to call this function
          hWnd = CreateWindow(szWindowClass, szTitle, WS_POPUP,
  • DocumentObjectModel . . . . 1 match
         Different variants of DOMs were initially implemented by web browsers to manipulate elements in an HTML document. This prompted the World Wide Web Consortium (W3C) to come up with a series of standard specifications for DOM (hence called W3CDOM).
  • EightQueenProblem/밥벌레 . . . . 1 match
          Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  • EightQueenProblem/이선우2 . . . . 1 match
          public NQueen2( int size ) throws Exception
  • EmbeddedSystemClass . . . . 1 match
         패키지 묶음 설치에서 '''Standard Package''' 만을 선택한다. (x-windows, gnome 은 차후 필요한 부분만을 설치한다.)
  • Erlang/설치 . . . . 1 match
          === Windows ===
  • FoundationOfASP . . . . 1 match
         == PWS(Personal Web Server) 설치 ==
         [http://zeropage.org/woodpage/20025179448/Pws.zip PWS] : Personal Web Server4.0
  • FromCopyAndPasteToDotNET . . . . 1 match
          * [http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/dataexchange/dynamicdataexchange/aboutdynamicdataexchange.asp About Dynamic Data Exchange]
  • Gof/Composite . . . . 1 match
         CompositePattern의 예는 거의 모든 객체지향 시스템에서 찾을 수 있다. Smalltalk 의 Model/View/Container [KP88] 의 original View 클래스는 Composite이며, ET++ (VObjects [WGM88]) 이나 InterViews (Styles [LCI+92], Graphics [VL88], Glyphs [CL90])등 거의 대부분의 유저 인터페이스 툴킷과 프레임워크가 해당 과정을 따른다. Model/View/Controller 의 original View에서 주목할만한 점은 subview 의 집합을 가진다는 것이다. 다시 말하면, View는 Component class 이자 Composite class 이다. Smalltalk-80 의 Release 4.0 은 View 와 CompositeView 의 서브클래스를 가지는 VisualComponent 클래스로 Model/View/Controller 를 변경했다.
  • Gof/FactoryMethod . . . . 1 match
         You can avoid this by being careful to access products solely through accessor operations that create the product on demand. Instead of creating the concrete product in the constructor, the constructor merely initializes it to 0. The accessor returns the product. But first it checks to make sure the product exists, and if it doesn't, the accessor creates it. This technique is sometimes called lazy initialization. The following code shows a typical implementation:
  • Gof/Singleton . . . . 1 match
         InterViews user interface toolkit[LCI+92]는 toolkit의 Session과 WidgetKit 클래스의 unique instance에 접근하지 위해 SingletonPattern을 이용한다. Session은 application의 메인 이벤트를 dispatch하는 루프를 정의하고 사용자 스타일관련 데이터베이스를 저장하고, 하나나 그 이상의 물리적 display 에 대한 연결들(connections)을 관리한다. WidgetKit은 user interface widgets의 look and feel을 정의한다. WidgetKit::instance () operation은 Session 에서 정의된 환경변수에 기반하여 특정 WidgetKit 의 subclass를 결정한다. Session의 비슷한 operation은 지원하는 display가 monochrome display인지 color display인지 결정하고 이에 따라서 singleton 인 Session instance를 설정한다.
  • Googling . . . . 1 match
          또한 단순한 웹페이지 검색만이 아니라 image, usenet, news 에 대한 검색기능을 제공한다.
  • Hacking/20041104세번째모임 . . . . 1 match
          * Chapter3 Windows 98 Hacking
  • Hacking/20041118네번째모임 . . . . 1 match
          * Windows 98 Hacking - 넷바이오스 해킹 툴
  • HanoiTowerTroublesAgain!/조현태 . . . . 1 match
         #include <Windows.h>
  • HelpOnConfiguration . . . . 1 match
         $path='./bin;c:/windows/command;c:/Program Files/gnuplot;c:/Program Files/vim/vim71'; # for win32
  • HelpOnSubPages/SubPages . . . . 1 match
          * XWindows
  • HelpOnTables . . . . 1 match
          * {{{<|2>}}}: 두줄에 걸쳐서 (rowspan)
  • Hessian . . . . 1 match
          public static void main(String[] args) throws MalformedURLException {
  • HostFile . . . . 1 match
         windows 의 경우는 system32/drivers/etc/host 라는 화일.
  • HowManyZerosAndDigits/임인택 . . . . 1 match
          public static int readInt() throws Exception {
  • ISAPI . . . . 1 match
          프로그래 추가/제거 -> Windows 구성 요소 추가/제거 -> 인터넷 정보 서비스(IIS)
  • IdeaPool/PrivateIdea . . . . 1 match
         || 남상협 || 웹지도 브라우저 || 2006.12.19 || Ready || 유상욱 || [WebMapBrowser], [ProjectWMB] ||
  • InnoSetup . . . . 1 match
         Inno Setup is a free installer for Windows programs. First introduced in 1997, Inno Setup today rivals and even surpasses many commercial installers in feature set and stability.
  • IntelliJ . . . . 1 match
         || alt 1 ~ 9 || 주요 windows로 이동 ||
  • InterMap . . . . 1 match
         DejaNews http://www.deja.com/=dnc/getdoc.xp?AN=
  • JSP/SearchAgency . . . . 1 match
          public byte[] norms(String field) throws IOException {
  • Java2MicroEdition . . . . 1 match
          * [http://zeropage.org/~dduk/development/j2me/midp-2_0-src-windows-i686.zip midp 2.0 (win용)]
  • JavaScript/2011년스터디 . . . . 1 match
          * web-browser-based client-side dynamic script
  • JavaScript/2011년스터디/김수경 . . . . 1 match
         // Allows for instanceof to work:
  • JavaStudy2003/두번째과제/입출력예제 . . . . 1 match
          // Shows a question-message dialog requesting
  • JavaStudy2004/자바따라잡기 . . . . 1 match
          * http://zeropage.org/~iruril/jdk-1_5_0_01-windows-i586-p.exe
  • Jython . . . . 1 match
          * http://network.hanbitbook.co.kr/view_news.htm?serial=378
  • Linux/필수명령어/용법 . . . . 1 match
         다음의 사용예는 다른 파티션 영역을 차지하고 있는 DOS 파일 시스템을 마운트하는 것이다. 사실, 이것은 필자가 리눅스를 설치하고 나서 실제로 했던 작업을 그대로 적어놓은 것이다. /dev/hda1 이 의미하는 바에 대해서는 본문을 참조하라(물론 이것은 독자가 설치한 방식에 따라서 다를 것이다.) 하드 디스크의 이 영역에는 Windows 95가 설치되어 있는데, 이것도 DOS 파일 시스템 형식으로 접근이 가능하며 파일의 읽기와 쓰기가 자유롭다.
  • MFC/MessageMap . . . . 1 match
          * frame windows object (linked with view activate)
         #if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
  • MFCStudy_2001/MMTimer . . . . 1 match
          wsprintf((LPSTR) pThis->m_strOutput, "CTmrprocView::TimerProc() Called. Count = %ld", ++pThis->m_cCount);
  • MFCStudy_2002_1 . . . . 1 match
          * 목표 : 방학중 스터디 진행, Programming 에 대한 감각 익히기. Windows Programming 에 대한 이해.
  • Microsoft . . . . 1 match
         {{|Microsoft Corporation (NASDAQ: MSFT) is the world's largest software company, with over 50,000 employees in various countries as of May 2004. Founded in 1975 by Bill Gates and Paul Allen, it is headquartered in Redmond, Washington, USA. Microsoft develops, manufactures, licenses, and supports a wide range of software products for various computing devices. Its most popular products are the Microsoft Windows operating system and Microsoft Office families of products, each of which has achieved near ubiquity in the desktop computer market.|}}
  • MobileJavaStudy/NineNine . . . . 1 match
          public void startApp() throws MIDletStateChangeException {
  • ModelViewPresenter . . . . 1 match
         http://www.object-arts.com/EducationCentre/Overviews/ModelViewPresenter.htm
  • MoniWiki . . . . 1 match
         MoniWiki is a PHP based WikiEngine. WikiFormattingRules are imported and inspired from the MoinMoin. '''Moni''' is slightly modified sound means '''What ?''' or '''What is it ?''' in Korean and It also shows MoniWiki is nearly compatible with the MoinMoin.
  • Monocycle/조현태 . . . . 1 match
         #include <Windows.h>
          suchPointData* nowSuchData = suchPointDatas.front();
          if (nowSuchData->nowPoint.x == endPoint.x && nowSuchData->nowPoint.y == endPoint.y)
          if (0 == nowSuchData->moveDistance % 5)
          int returnData = nowSuchData->timeCount;
          delete nowSuchData;
          ++nowSuchData->timeCount;
          if (0 == nowSuchData->seeChangeCount)
          ++nowSuchData->seeChangeCount;
          nowSuchData->seePoint = (nowSuchData->seePoint + 1) % 4;
          if (isCanMovePoint(nowSuchData->nowPoint, nowSuchData->seePoint) || 1 == GetSurroundMovePoint(nowSuchData->nowPoint))
          suchPointDatas.push(new suchPointData(*nowSuchData));
          nowSuchData->seePoint -= 2;
          if (0 > nowSuchData->seePoint)
          nowSuchData->seePoint += 4;
          if (isCanMovePoint(nowSuchData->nowPoint, nowSuchData->seePoint))
          suchPointDatas.push(new suchPointData(*nowSuchData));
          nowSuchData->seePoint = (nowSuchData->seePoint + 1) % 4;
          --nowSuchData->seeChangeCount;
          else if (1 == nowSuchData->seeChangeCount)
  • MySQL 설치메뉴얼 . . . . 1 match
         binary distribution follows:
  • NSIS/예제1 . . . . 1 match
          File "C:\windows\notepad.exe"
  • NSISIde . . . . 1 match
         || Output Windows 의 생성 || 0.5 ||
  • NetworkDatabaseManagementSystem . . . . 1 match
         The network model is a database model conceived as flexible way of representing objects and their relationships. Its original inventor was Charles Bachman, and it was developed into a standard specification published in 1969 by the CODASYL Consortium. Where the hierarchical model structures data as a tree of records, with each record having one parent record and many children, the network model allows each record to have multiple parent and child records, forming a lattice structure.
  • NotToolsButConcepts . . . . 1 match
         [1002] 가 Windows Programming 을 오래 하다가 EventDrivenProgramming 의 개념을 나름대로 제대로 받아들였다는 느낌이 들었을때는 해당 플랫폼에서 1년 이상 작업했을 때 였다.(여기서 '받아들였다'는 실제 EventDriven Model로 디자인해서 구현해보는 정도) 사람들의 공부 스타일에 따라 차이가 있지만, 해당 개념에 대해 제대로 이해하기 위해선 구현레벨에서의 경험도 필요하다. 위의 '예' 에서 '아닌 - Not' 이란 단어대신 '넘어서 - Beyond' 라는 단어로 바꿔서 읽어보면 어떨까.
  • OpenCamp/첫번째 . . . . 1 match
          * [https://trello-attachments.s3.amazonaws.com/504f7c6ae6f809262cf15522/5050dc29719d8029024cca6f/f04b35485152d4ac19e1392e2af55d89/forConference.html 다운로드]
  • OurMajorLangIsCAndCPlusPlus/ctype.h . . . . 1 match
         || int iswspace(wint_t) || 공백문자들을 검사한다.||
  • PC실관리 . . . . 1 match
         에어컨 청소법 - [ttp://kin.naver.com/browse/db_detail.php?d1id=8&dir_id=813&docid=92267&ts=1052495994]
  • PHP-방명록만들기 . . . . 1 match
          $count = mysql_num_rows($result);
  • PatternOrientedSoftwareArchitecture . . . . 1 match
          * Windows NT
  • PlatformSDK . . . . 1 match
         [WindowsProgramming]
  • PreviousFrontPage . . . . 1 match
          * FindPage: search or browse the database in various ways
  • PrimaryArithmetic/sun . . . . 1 match
          public static void main( String [] args ) throws IOException {
  • ProjectPrometheus/CollaborativeFiltering . . . . 1 match
          *For every meaningful action(searching, viewing, writing a review, rating without writing reviews) there is a pref coefficient. (prefCoef)
  • ProjectVirush . . . . 1 match
         Trac을 이용해 [http://165.194.17.5/trac/aekae/timeline 프로젝트 진행상황]과 [http://165.194.17.5/trac/aekae/browser//ProjectVirush Source Code]를 확인할 수 있습니다.
  • ProjectZephyrus/Client . . . . 1 match
         [http://zeropage.org/browsecvs/index.php?&dir=ProjectZephyrusClient%2F Zephyrus Client CVS] 참조.
  • ProjectZephyrus/PacketForm . . . . 1 match
         바뀐 내용은 [http://zeropage.org/browsecvs/index.php?&cvsrep=ZeroPage&dir=ProjectZephyrusServer%2Fdocument%2F&file=PacketForm.txt CVS-PacketForm] 에서 확인가능
  • ProjectZephyrus/ServerJourney . . . . 1 match
          1. Windows 상에서 일반 콘솔에서 컴파일, 실행 하기 위한 배치 파일 작성
  • ProjectZephyrus/간단CVS사용설명 . . . . 1 match
         = WinCVS in Windows =
  • PyIde/FeatureList . . . . 1 match
         어느정도까지 가능할까. BRM, Smalltalk Refactoring Browser 구경해볼것.
  • PythonLanguage . . . . 1 match
          * ["wxPython"] - linux, windows 둘 다 이용가능한 GUI Toolkit.
  • RUR-PLE . . . . 1 match
          * [RUR-PLE/Newspaper]
  • RedThon/HelloWorld과제 . . . . 1 match
          대충..결과만 나오면 되니깐.ㅋ windows 창이랑 python shell 이랑 둘이 열심히 번갈아 가면서..
  • Refactoring/MakingMethodCallsSimpler . . . . 1 match
         void withdraw(int amount) throws BalanceException {
  • ReleasePlanning . . . . 1 match
         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.
  • Reverse Engineering처음화면 . . . . 1 match
         2. Windows API + C
  • ReverseEngineering/책장사 . . . . 1 match
         4. Windows 구조에 관련된 서적.
  • Robbery/조현태 . . . . 1 match
         #include <Windows.h>
  • STL/map . . . . 1 match
          warning 의 이유는 STL에서 나오는 디버그의 정보가 VC++ 디버그 정보를 위해 할당하는 공간(255byte)보다 많기 때문입니다. 보통 디버그 모드로 디버깅을 하지 않으면, Project setting에서 C/C++ 텝에서 Debug info 를 최소한 line number only 로 해놓으면 warning 는 없어 집니다. 그래도 warning 가 난다면 C/C++ 텝에서 Generate browse info 를 비활성(기본값)화 시키세요.
  • Self-describingSequence/조현태 . . . . 1 match
         #include <Windows.h>
  • SeparatingUserInterfaceCode . . . . 1 match
         When separating the presentation from the domain, make sure that no part of the domain code makes any reference to the presentation code. So if you write an application with a WIMP (windows, icons, mouse, and pointer) GUI, you should be able to write a command line interface that does everything that you can do through the WIMP interface -- without copying any code from the WIMP into the command line.
  • ServerBackup . . . . 1 match
          * 해결 ~ {{{/etc/resolv.conf}}} 에 무료 dns 서버 등록 후 교내 서버는 가장 마지막 순위로 변경 http://theos.in/windows-xp/free-fast-public-dns-server-list/
  • SolarSystem/상협 . . . . 1 match
         #include <windows.h>
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_LINE);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          gluQuadricDrawStyle(obj,GLU_FILL);
          DWORD dwStyle;
          dwExStyle=WS_EX_APPWINDOW;
          dwStyle=WS_POPUP;
          dwExStyle=WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
          dwStyle=WS_OVERLAPPEDWINDOW;
          AdjustWindowRectEx(&WindowRect,dwStyle,FALSE,dwExStyle);
          WS_CLIPSIBLINGS |
          WS_CLIPCHILDREN |
  • StandardWidgetToolkit . . . . 1 match
          * 실행을 시키기 위해서, 실행되는 위치에 swt-win32-2133.dll (Windows 경우)가 있어야 한다.
  • Steps/조현태 . . . . 1 match
         #include <Windows.h>
  • SubVersionPractice . . . . 1 match
         [http://zeropage.org/trac/project/browser/ Zeropage SVN 소스 둘러보기]
  • SystemEngineeringTeam/TrainingCourse . . . . 1 match
          * Ubuntu - 맥분투라고 비난받고 있는 리눅스 뛰어난 사용자 편의성과 GUI를 갖추고 있고 문제 해결에 실마리가 될 포럼이 가장 활발하다. 하지만 대부분의 문제는 XWindows(이걸 뭐라 부르지..)쪽 문제. 빠른 패치와 다양한 패키지를 갖추고 있지만 언제 지원이 끊길지 모른다.
  • TabletPC . . . . 1 match
         see also : http://www.microsoft.com/windowsxp/tabletpc/default.asp
  • TeachYourselfProgrammingInTenYears . . . . 1 match
         어느 책방에 발길을 옮겨도,「7일간으로 배우는 Java(Teach Yourself Java in 7 Days)」라고 하는 방법책을 보기 시작하고, 그 곁에는 Visual Basic 나 Windows 나 인터넷등에 대해서, 똑같이 몇일이나 수시간에 배울 수 있으면(자) 파는 책이, 무한의 바리에이션으로 나란해지고 있다.Amazon.com 그리고 이하의 조건으로검색해 보았는데,
  • Trace . . . . 1 match
         #include <windows.h>
  • UserStoriesApplied . . . . 1 match
         Mike Cohn's User Stories Applied shows how software teams can drive development through user stories, simple, clear, brief descriptions of functionality valuable to real users. It covers user role modeling, gathering stories, working with managers, trainers, salespeople, and other proxies, writing user stories for acceptance testing, and using stories to prioritize, set schedules, and estimate release costs.
  • Velocity . . . . 1 match
          public static void main(String[] args) throws Exception {
  • VisualStudio . . . . 1 match
         VisualStudio 는 Microsoft 에서 개발한 Windows용 IDE 환경이다. 이 환경에서는 Visual C++, Visual Basic, Visual C# 등 여러 언어의 개발환경이 함께하며, 최신 버전은 [Visual Studio] 2012이다.
  • WIBRO . . . . 1 match
         요즘 와이브로는 와이파이 안될 때의 대체제 수준이네요. [http://news.hankooki.com/lpage/economy/201207/h2012071802404621540.htm 기사 : 와이브로 두손 두발 다 들었다]
  • WTL . . . . 1 match
         #Redirect WindowsTemplateLibrary
  • WikiWikiWeb . . . . 1 match
          * [http://news.mpr.org/programs/futuretense/daily_rafiles/20011220.ram Ward Cunningham Radio Interview]
  • WinampPlugin을이용한프로그래밍 . . . . 1 match
         #include <windows.h>
  • WindowsConsoleControl . . . . 1 match
         #include <windows.h>
  • XML/PHP . . . . 1 match
         // If you want to output the XML document to the browser or as standard output, use:
  • XpWeek/20041220 . . . . 1 match
          먼저 설치 : [http://zeropage.org/pub/language/java/j2re-1_4_2_01-windows-i586.exe Java 1.4.2]
  • XpWeek/20041222 . . . . 1 match
         [http://kin.naver.com/browse/db_detail.php?d1id=1&dir_id=10106&docid=722107 jsp에서 ms타임을 년시분초로 바꾸어주는 방법]
  • ZP&COW세미나 . . . . 1 match
          * Java 2 SDK: http://165.194.17.15/pub/language/java/j2sdk-1_4_2_01-windows-i586.exe
  • ZPHomePage/참고사이트 . . . . 1 match
          마이크로소프트가 발표한 경영비젼입니다 Windows2003를 테마로 만든 것 같은데, 우리 차기 ZP홈피도 2003 테마로 만들었으면 합니다. 부드러운 분위기가 메무 맘에 드네요 -[iruril]
  • ZeroPage_200_OK/note . . . . 1 match
          * windows 에서 쓰이고 역시 안정성이 뛰어나고 GUI관리가 가능하다.
  • ZeroPage_200_OK/소스 . . . . 1 match
          <th rowspan="2">price</th><!-- table head cell -->
  • [Lovely]boy^_^/Book . . . . 1 match
          * Windows API 정복(가남사) - OCU SDK 들을때 가끔 펴 봄
  • [Lovely]boy^_^/EnglishGrammer/Passive . . . . 1 match
          A. ex) Henry is very old. Nobody knows exactly how old he is, but :
  • callusedHand/projects/fileManager . . . . 1 match
          * 참고 소스: file-browser, mc
  • eclipse단축키 . . . . 1 match
          * Windows - Preferences - General - Editors - Text Editors - 80라인 제한 선, 라인 수 보이기
  • html5/form . . . . 1 match
          * http://nz.pe.kr/wordpress/programming/html5/번역-지금-바로-cross-browser-html5-form-만드는-방법
  • i++VS++i . . . . 1 match
         http://groups.google.co.kr/groups?selm=Uqfu9.383$5o4.19586@news.hananet.net
  • java/reflection . . . . 1 match
          public static void main(String[] args) throws MalformedURLException, ClassNotFoundException, InvocationTargetException, IllegalAccessException, InstantiationException, NoSuchMethodException {
  • lostship/MinGW . . . . 1 match
          || {{{~cpp g++ -o out -Id:/MinGW/STLport-4.5.3/stlport test.cpp -Ld:/MinGW/STLport-4.5.3/lib/ -lstlport_mingw32 -mwindows}}} ||
  • neocoin/SnakeBite . . . . 1 match
          * [http://zeropage.org/browsecvs/index.php?&dir=SnakeBite%2F Zp CVS 의 SnakeBite] : 집의 CVS 통째로 복사이다.
  • radiohead4us/PenpalInfo . . . . 1 match
         Interests/Hobbies: music, world news
  • wiz네처음화면 . . . . 1 match
         = Lastly News =
  • zennith/w2kDefaultProcess . . . . 1 match
         작업관리줄, 바탕화면 등과 같은 사용자 셸로서 Windows의 작동에 있어 필수적인 요소
  • 가독성 . . . . 1 match
         This is a short document describing the preferred coding style for the linux kernel. Coding style is very personal, and I won't force my views on anybody, but this is what goes for anything that I have to be able to maintain, and I'd prefer it for most other things too. Please at least consider the points made here.
  • 간단한C언어문제 . . . . 1 match
         16Bit 체제의 Windows
  • 게임프로그래밍 . . . . 1 match
          * [http://lazyfoo.net/SDL_tutorials/lesson01/windows/msvsnet0508e/index.php Setting_Up_SDL]
          pScreen = SDL_SetVideoMode(640,480,32,SDL_SWSURFACE);
  • 경시대회준비반/BigInteger . . . . 1 match
          stream >> ws;
  • 단식자바 . . . . 1 match
         [Java], [http://zeropage.org/~iruril/jdk-1_5_0_01-windows-i586-p.exe ZP pub의 JDK]
  • 데블스캠프2005 . . . . 1 match
         [데블스캠프2005/Socket Programming in Unix/Windows Implementation]
  • 데블스캠프2005/RUR-PLE/Newspaper . . . . 1 match
         = 데블스캠프2005/RUR-PLE/Newspaper =
  • 데블스캠프2005/RUR-PLE/Newspaper/Refactoring . . . . 1 match
         = 데블스캠프2005/RUR-PLE/Newspaper/Refactoring =
  • 데블스캠프2005/Socket Programming in Unix/Windows Implementation . . . . 1 match
         UnixSocketProgrammingAndWindowsImplementation
  • 데블스캠프2005/주제 . . . . 1 match
         [DevelopmentinWindows] 여기에 메세지 루프에 관한 설명하고 툴 디버깅에 대한 얘기 하면 되겠다. 감기가 걸려서 오늘 갈 수 있을 란지...
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 1 match
          * PHP로 짜면 스크립트 언어 특성상 프로그래밍이 즐겁다고나 할까요? 그런 느낌이 좋아서 PHP를 선호하긴 하지만, UI를 제외한 코어 루틴만큼은 레퍼런스와 샘플을 함께하면 대부분의 언어로 같은 루틴을 만들 수 있을 거라고 생각해요. 그래도 어느정도는 비 웹언어에 익숙해져야 하지않을까 싶어 C++, Java, C#을 고민하다 C#을 선택해서 해봤는데, C#이 클라이언트단 어플리케이션에서도 효용성을 가지려면 Windows Vista가 출시된 후의 상황을 지켜봐야 할 것 같고, 아직은 C/C++이 더 대세인건 분명해보이네요. 사실 저같은 경우에는 아직은 연구하고 싶은 관심사가 '대용량 데이터베이스 기반 검색 엔진'과 '형태소 분석 기반 자연어 처리'로 DB와 문자열 처리에 관한 부분인데, DB 처리는 일단 RDBMS에서만큼은 PHP처럼 수월한 언어가 없고, 문자열 처리는 Perl이 다른 언어들에 비해 월등하다보니 그런 언어를 도메인 언어로 해오지 않았나 싶네요. ㅋㅋ - [변형진]
  • 데블스캠프2009/수요일 . . . . 1 match
         || 이병윤 || RootKit || Windows의 구조와 IA32 의 구조를 간단하게 설명. 커널레벨로의 접근을 이용한 간단한 루트킷 작성 || ||
  • 데블스캠프2009/월요일/Scratch . . . . 1 match
          * 운영체제에 맞게 Mac용, Windows용 중 선택하시면 됩니다.
  • 데블스캠프2010/회의록 . . . . 1 match
         == Mobile Browser (Webkit) (강사 : [이정직]) ==
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김준석 . . . . 1 match
         using System.Windows.Forms;
  • 데블스캠프2012/넷째날/묻지마Csharp/서민관 . . . . 1 match
         namespace WindowsFormsApplication1
  • 변준원 . . . . 1 match
         #include <windows.h>
          WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT,
  • 봄과프로젝트 . . . . 1 match
         || windowsAPI || [이승한], [조동영] ||
  • 빵페이지/숫자야구 . . . . 1 match
         난수생성 참고자료 : RandomFunction , WindowsConsoleControl
  • 상규 . . . . 1 match
          * [DevelopmentinWindows] (2002.6.26)
  • 새싹교실/2011/學高/1회차 . . . . 1 match
          * 잘 쓰지도 못하는 gcc가지고 가르치려면 공부를 해오던가 아니면 아예 windows로 부팅해서 visual studio를 써서 확실하게 가르치겠다.
  • 새싹교실/2011/學高/5회차 . . . . 1 match
         bitwse operation 수행값 :
  • 새싹교실/2011/데미안반 . . . . 1 match
          * A언어 : ALGOL을 말합니다. 고급 프로그래밍 언어(어셈블리나 기계어를 저급 프로그래밍 언어라고 합니다)로 각광받던 포트란ForTran에 대항하기 위해 유럽을 중심으로 개발된 프로그래밍 언어입니다. ALGOL은 Algorithm Language의 약자로서, 이름 그대로 알고리즘 연구개발을 위해 만들어졌습니다. 하지만 ALGOL은 특정한 프로그래밍 언어를 지칭하기 보다는 C언어나 파스칼과 같이 구조화된 프로그래밍 언어를 지칭하는 말(ALGOL-like programming language)로 쓰입니다. [http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=1040101&docId=68855131&qb=Q+yWuOyWtCBC7Ja47Ja0IEHslrjslrQ=&enc=utf8§ion=kin&rank=1&search_sort=0&spq=0&pid=ghtBIz331ywssZ%2BbORVssv--324794&sid=TYBj6x1TgE0AAE@GUeM 출처 링크! 클릭하세요:)]
  • 새싹교실/2012/새싹교실강사교육/1주차 . . . . 1 match
         3.1 https://www.virtualbox.org 에서 자신의 운영 체제에 맞는 VitualBox를 설치하세요. (예: VirtualBox 4.1.10 for Windows hosts x86/amd64)
  • 새싹교실/2012/주먹밥 . . . . 1 match
          * 답변 : Windows API를 써본다면 이해하겠지만 윈도우창 띄우는데 30줄이 넘는 코드가 필요하죠? 한줄로 보여드립니다. javascript에서 alert(5)를치면? 딱 뜨죠? 참~~ 쉽죠?
  • 새싹교실/2013/라이히스아우토반/3회차 . . . . 1 match
         #include<Windows.h>
  • 새싹배움터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
          1. [http://www.hkbs.co.kr/hkbs/news.php?mid=1&treec=133&r=view&uid=266727 VDIS] - 교통안전공단 차량운행 프로젝트
  • 순수원서 . . . . 1 match
         E-mail : choiwscj at intizen 점 com
  • 스터디/Nand 2 Tetris . . . . 1 match
          Screen: 512 rows by 256 columns, black and white
  • 안녕하세요 . . . . 1 match
          [http://imgnews.naver.com/image/045/2006/03/09/2006-03-09T114301Z_01_NOOTR_NISIDSP_2_120060309091802403.jpg]
  • 암호화실습 . . . . 1 match
         SeeAlso [http://kin.naver.com/browse/db_detail.php?dir_id=1&docid=265235 아스키코드표]
  • 오목/인수 . . . . 1 match
          public OmokFrame(String arg) throws HeadlessException {
  • 웹에요청할때Agent바꾸는방법 . . . . 1 match
          req.add_header('User-Agent', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)')
  • 윤종하/지뢰찾기 . . . . 1 match
         #include<windows.h>
  • 이승한/java . . . . 1 match
         예외 처리 : try, catch, finally, throw, throws
  • 이승한/mysql . . . . 1 match
         $totalRecord = mysql_num_rows($result);
  • 이영호/nProtect Reverse Engineering . . . . 1 match
         3. gcupdater(실행시 항상 서버에 접속하여 파일 3개를 받아온다. guardcat.exe, INST.dat, gc_proch.dll을 순서대로 받아와 자체적으로 wsprintf를 이용하여 복사한다.-아마 디버거에 API를 걸리기 싫었는지 모른다. createprocess로 guardcat.exe를 실행시킨다.)
  • 이영호/기술문서 . . . . 1 match
         [http://blog.naver.com/post/postView.jsp?blogId=pjfile&logNo=40012816514] - setsockopt() && Windows lib version
  • 이차함수그리기/조현태 . . . . 1 match
         #include <windows.h>
  • 임다찬 . . . . 1 match
         www.싸이월드.com/2wsx
  • 임베디드방향과가능성/정보 . . . . 1 match
         둘째로 기술적으로 말씀드리죠. pc의 경우는 application만 하면 됩니다. 그 좋은 visual tool들이 hw specific한 부분과 커널 관련한 부분은 다 알아서 처리해 줍니다. 하지만 임베디드 분야는 이 부분을 엔지니어가 다 알아서 해야 하죠. pc의 경우 windows를 알 필요없지만 임베디드 엔지니어는 os kernel을 만드시 안고 들어가야 합니다. 이 뿐만 아니라 application specific/implementation specific하기 때문에 해당 응용분야에 대한 지식도 가지고 있어야 하며/ 많은constraint 때문에 implementation 할 때hw/sw에 관한 지식도 많아야 하죠. 경우에 따라서는 chip design 분야와 접목될 수도 있습니다.(개인적으로 fpga 분야가 활성화 된다면 fpga도 임베디드와 바로 엮어질거라 생각합니다. 이른바 SoC+임베디드죠. SoC가 쓰이는 분야의 대부분 곧 임베디드 기기일 겁니다. ASIC도 application specific하다는 점에서 임베디드 기기와 성질이 비슷하고 asic의 타겟은 대부분 임베디드 기기입니다.) 대부분의 비메모리 반도체칩은 그 용도가 정해져있으며, 비메모리 반도체를 사용하는(혹은 설계하는 사람)을 두고 임베디드 엔지니어라 할 수 있죠. 사실 임베디드는 범위가 매우 넓기 때문에 한가지로 한정하기 힘듭니다.
  • 임인책/북마크 . . . . 1 match
          * [http://www.internals.com/articles/apispy/apispy.htm API Spying Techniques for Windows 9x, NT and 2000]
  • 임인택/Link . . . . 1 match
          === Web Browser ===
  • 임인택/내손을거친책들 . . . . 1 match
          * Firefox hacks : tips & tools for next-generation web browsing
  • 장용운 . . . . 1 match
         Windows API
  • 정모/2003.1.15 . . . . 1 match
          * 그 밖에 진행하고 싶은 스터디 - Windows API 와 MFC 스터디를 2월 중에 하기로 했음
  • 정모/2012.1.6 . . . . 1 match
          * [http://www.ciokorea.com/news/11231?page=0,0 2012년에 뜰 오픈소스 5가지]
  • 정모/2012.5.14 . . . . 1 match
          * 조금 늦어서 중간부터 들었지만 OMS 재미있게 들었습니다. 키보드 할 때 들어와서 키보드에 대한 이야기인가 했더니 한글에 대한 발표였네요. 사실 저는 Windows를 항상 주로 사용해왔기 때문에 한글 사용 관련하여 크게 불편함을 느낀 적은 없었는데 이번 OMS를 들으며 다양한 언어를 지원하기 위해 고려해야하는 점에 대해 생각해보게 됐습니다. PC실 관리는 사용하는 사람들이 불편할 때 학회실로 오게 하는 것이 좋다고 생각합니다. 그게 관리하는 쪽에서도, PC실 이용하는 쪽에서도 편한 방법이죠. - [김수경]
  • 정모/2012.7.18 . . . . 1 match
          * 수요일 : callback 함수의 개념과 Javascript의 Event Handler 사용. 표준이 제정되지 않은 상황에서 Cross Browsing은 힘들다.
  • 제로스 . . . . 1 match
         * 이론 : Operating System Concepts(6/E) : Windows XP Update - 한국어판
  • 조금더빠른형변환사용 . . . . 1 match
         /* for windows */
  • 조동영 . . . . 1 match
          === Windows API ===
  • 조재화 . . . . 1 match
          *WIndows Program(API,MFC)
  • 졸업논문/본론 . . . . 1 match
         Django는 오픈 소스 프로젝트로 code.djangoproject.com/browser/django 에서 전체 소스코드를 확인할 수 있다. 문서에 따르면 django 데이터베이스 API는 "SQL문을 효율적으로 사용하고, 필요할 때는 알아서 join연산을 수행하는 강력한 구문을 가졌으며, 사용자가 필요할 경우 직접 SQL문을 작성할 수 있도록 지원"[5]한다. 추상화된 구문을 사용하더라도 데이터는 관계형 데이터베이스에 저장하게 되는데, MS SQL, MySQL, Oracle, PostgreSQL, SQLite3와 같은 DBMS를 사용할 수 있다.
  • 지영민/ㅇㅈㅎ게임 . . . . 1 match
         #include<Windows.h>
  • 코바예제/시계 . . . . 1 match
         public String getTime() throws SystemException {
  • 타도코코아CppStudy/0728 . . . . 1 match
          ZeroWiki:DevelopmentinWindows
  • 테트리스만들기2006/예제1 . . . . 1 match
         #include <Windows.h>
  • 통계청 . . . . 1 match
         [http://kosis.nso.go.kr/cgi-bin/sws_999.cgi?ID=DT_1WB41&IDTYPE=3 총독서량]
  • 프로그래머를위한공부론 . . . . 1 match
         [http://www01.zdnet.co.kr/news/column/hotissue/0,39024748,10049399,00.htm 어떻게 공부할까? 프로그래머를 위한 「공부론」]
Found 402 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.4289 sec