Communities

Total Articles 180
No.
Subject
Author
100 Minimal WinMain Source Code secret
[Level:16]gilgil
2   Mar 08, 2012
This article is secret  
99 How to use property code in C++
[Level:16]gilgil
76414   Apr 05, 2012
To enhahce code readibility, C++ programmers sometime prefer property code(getter, setter) to access member function. Here is a sample code. class Person { protected: int m_age; public: __declspec(property (get...  
98 VInt class header file file
[Level:16]gilgil
71262   Apr 17, 2012
When you 1. use C++ STL library(list, vector, map, and so on). 2. make your own template library 3. use their objects as global or static you want to know when the object is created, accessed, deleted...  
97 linux installation guide for virtual machine
[Level:16]gilgil
70822   Jan 19, 2013
os installation install ubuntu-14.04.1-desktop-amd64.iso basic setup enable root account #sudo passwd root > <current password> > <root password> > <root password again> add the following line at the end of c...  
96 qmake.conf for msvc2008 1 file
[Level:16]gilgil
70760   Feb 12, 2013
# # qmake configuration for win32-msvc2008 # # Written for Microsoft Visual C++ 2008 # MAKEFILE_GENERATOR = MSVC.NET TEMPLATE = app CONFIG += qt warn_on release incremental flat link_prl prec...  
95 A Tour of Go imagefile
[Level:16]gilgil
70824   Feb 17, 2013
A programming language guide line of Go(open source programming powered by Google) http://tour.golang.o-rg  
94 VDream option for Qt pro file
[Level:16]gilgil
70810   Feb 18, 2013
#------------------------------------------------- # Common #------------------------------------------------- CONFIG(release, debug|release) { DEFINES += _RELEASE D = "" } CONFIG(debug, debug|release) { DEFINES += _DEBUG D = "d" } LI...  
93 pipe_test file
[Level:16]gilgil
70433   Feb 19, 2013
pipe_test(2013.02.19-)-2.zip pipe_test(2013.02.19-).zip  
92 network layer protocol constants
[Level:16]gilgil
70771   Feb 21, 2013
[DataLink Type] : bpf.h #define DLT_NULL 0 /* BSD loopback encapsulation */ #define DLT_EN10MB 1 /* Ethernet (10Mb) */ #define DLT_EN3MB 2 /* Experimental Ethernet (3Mb) */ #define DLT_AX25 3 /* Amateur Radio ...  
91 so_test file
[Level:16]gilgil
70751   Feb 22, 2013
so_test.zip  
90 Talk is cheap. Show me the code.
[Level:16]gilgil
69358   Mar 22, 2013
https://lkml.org/lkm-l/2000/8/25/132  
89 gui_option_test file
[Level:16]gilgil
70801   Apr 11, 2013
[gui_option_test.pro] contains(QT, gui) { message (gui) } else { message (no_gui) } TARGET = gui_option_test CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp [main.cpp]...  
88 qt-everywhere-4.8.4-configure 1 file
[Level:16]gilgil
79155   May 03, 2013
Unable to detect the platform from environment. Use -platform command lineargument or set the QMAKESPEC environment variable and run configure again See the README file for a list of supported op...  
87 malicious site list
[Level:16]gilgil
96540   May 08, 2013
http://www.selectrea-lsecurity.com/public--block-lists http://www.malwaredo-mainlist.com/hostsli-st/hosts.txt http://www.malwaredo-mains.com/?page_id=66 http://mirror1.malwa-redomains.com/files/-domains.txt http://mirror1.malwa-redomains.com/files/-...  
86 wireshark build on windows
[Level:16]gilgil
67800   May 13, 2013
http://www.wireshark-.org/docs/wsdg_html_-chunked/ChSetupWin32-.html  
85 Enumeration type wrapping class in C++ (Days)
[Level:16]gilgil
70812   Sep 30, 2013
Here is a sample code of enumeration type wrapping class in C++. [Source Code] #include <stdio.h> class Days { public: enum _Days { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday }; protected: _...  
84 How to use meta class in C++
[Level:16]gilgil
70780   Oct 04, 2013
Thers is a base class named "Shape" that has a virtual function "draw()". class Shape { public: virtual void draw() = 0; }; Circle, Triangle, Rectangle and Pentagon classes are descendent classes of Shape class. ...  
83 url_test for qt
[Level:16]gilgil
70829   Oct 05, 2013
[Source] // ---------------------------------------------------------------------------- // // VDream Component Suite version 8.0 // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // ------------------------...  
82 Fedora installation for Qt
[Level:16]gilgil
70823   Oct 05, 2013
Fedora installation Change display Change root login Security Update yum install gcc yum install gcc-c++ yum install make Install Qt(4.8.1) yum install libpng-compat ( for libpng12.so file ) yum install xterm ...  
81 Class diagram
[Level:16]gilgil
70733   Oct 08, 2013
http://en.wikipedia.-org/wiki/Class_diagr-am  


XE Login