Communities

Total Articles 180
No.
Subject
Author
140 [qt] QTimer example file
[Level:16]gilgil
113070   Mar 19, 2017
[Code] #include <QCoreApplication> #include <QDebug> #include <QTimer> struct Obj : QObject { Q_OBJECT public slots: void processTimeout() { qDebug() << "processTimeout"; } }; int main(int argc, char *ar...  
139 Dunkin' Donuts DDoS Attack movie
[Level:16]gilgil
110506   Jan 05, 2010
terrible :)  
138 How to pass std::string as default parameter 1
[Level:16]gilgil
107151   Oct 18, 2011
When passing std::string is passed, object is copied through a stack. void loadFromFile(std::st-ring fileName); So, parameter is passed in reference type to prevent object copy load in the stack. void loa...  
137 When is the object VMT pointer changed in constructor and destructor? 3 file
[Level:16]gilgil
106811   Oct 12, 2011
[Question] Suppose that C is inherited from B and B is inherited from A. Each class has virtual function(destructor and foo). This means that all classed have their own VMT(VMT for A, VMT for B...  
136 How to measure time difference
[Level:16]gilgil
106470   Aug 10, 2011
[Windows] #include <windows.h> DWORD begTick = GetTickCount(); foo(); DWORD endTick = GetTickCount(); printf("%d\n", endTick - begTick); [Linux] #include <sys/time.h> struct timeval begTick; gettimeofday(&begTic...  
135 The static object difference between local and global file
[Level:16]gilgil
106408   Nov 21, 2013
[LocalObject] class LocalObject { static LocalObject& instance(); }; LocalObject& LocalObject::instanc-e() { static LocalObject localObject; // declared as local // --- (1) --- return localObject; // --- (2) --- } ---...  
134 [android] How to Build and Use libnetfilter_queue for Android
[Level:16]gilgil
104515   Nov 01, 2014
http://www.roman10.n-et/how-to-build-and-use-libnetfilter_queue-for-android/  
133 boost serialize example file
[Level:16]gilgil
103755   Jun 10, 2011
Person.h #ifndef PersonH #define PersonH #include <string> // for std::string #include <boost/serialization/-access.hpp> class Person { public: Person(); public: int age; bool sex; std::string name; private: friend class ...  
132 Distinguish default , explicit and copy constructor and assign operator file
[Level:16]gilgil
103093   Sep 12, 2011
[Class] class String { public: // // constructor // String() { cout << "constructor()\n"; } // default constructor String(char* p) { cout << "constructor(char*)\n"; } // explicit constructor String(const char* p)...  
131 [network] snort and suricata file
[Level:16]gilgil
102743   Aug 27, 2016
snort_and_suricata(2-016.08.27).odp snort_and_suricata(2-016.08.27).ppt  
130 How to get best adapter in winpcap automatically file
[Level:16]gilgil
102565   Mar 24, 2010
Whenever you use WinPcap, you are forced to select a specific network adapter to capture packets. This sample shows you how to select the best network adapter automatically by using "GetBestInteface"-; win...  
129 Network Device Icon ( iconworld_ppt_090313.ppt ) file
[Level:16]gilgil
101490   Jun 18, 2010
from : Siemens  
128 [qt][android] Getting Started with Qt for Android
[Level:16]gilgil
100899   Oct 22, 2014
http://qt-project.org/doc/qt-5/androidgs.html  
127 Add make option in bashrc file(Ubuntu)
[Level:16]gilgil
97764   Aug 08, 2011
In linux, when you make cpp project, you might have a case that you are always forced to set default include path and default library path. This is a quick tip for you to solve this problem. original ...  
126 Find a bug why run time error occurs. 5 file
[Level:16]gilgil
97171   Sep 13, 2011
[Quiz] Find a bug why run time error occurs. [Source] #include <iostream> #include <string> using namespace std; #define SAFE_DELETE(A) { if(A != NULL) { delete (A); A = NULL; } } class MyString { public: ...  
125 malicious site list
[Level:16]gilgil
96211   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/-...  
124 Default STL Allocator
[Level:16]gilgil
93822   Aug 15, 2011
template<typename T> struct Allocator : public std::allocator<T> { Allocator() { } template<class Other> Allocator( const Allocator<Other>& _Right ) { } inline typename std::allocator<T>::pointer allocate(t...  
123 C++ Permutation Template Class file
[Level:16]gilgil
91105   Jan 20, 2012
[Permutation.h] // ---------------------------------------------------------------------------- // // Permutation Template Class Library // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // -----------------...  
122 [Qt] QByteArray setRawData example file
[Level:16]gilgil
91073   Feb 17, 2014
QByteArray & QByteArray::setRawDa-ta ( const char * data, uint size )Resets the QByteArray to use the first size bytes of the data array. The bytes are not copied. The QByteArray will contain ...  
121 Google chrome keyboard and mouse shortcuts
[Level:16]gilgil
90932   Mar 21, 2010
http://www.google.co-m/support/chrome/bin-/answer.py?answer=95743&ctx=tip  


XE Login