Communities

Total Articles 180
No.
Subject
Author
60 How to remove folders recursively
[Level:16]gilgil
76117   Aug 27, 2011
[Linux] find . -name .svn -exec rm -rf {} \; [Windows] for /d /r . %d in (.svn) do @if exist "%d" rd /s/q "%d" However, you can use my tool "rm_folder". http://www.gilgil.ne-t/9075  
59 malloc_test file
[Level:16]gilgil
75408   Aug 15, 2011
[Source code] #include <list> #include <stdlib.h> #include <stdio.h> void usage() { printf("malloc test made by gilgil\n"); printf("syntax : malloc_test <count> <size1> <size2> ... \n"); printf("example : malloc_test 10 ...  
58 How to remove ^M from file
[Level:16]gilgil
75338   Aug 29, 2011
In vi editor, do the following: :g/^M/s/// ^M has to be entered with the key strokes "ctrl-v followed by ctrl-m".  
57 cache test file
[Level:16]gilgil
75116   Aug 10, 2011
.. cache test source code files.cache.zip  
56 How to make soft AP on Windows7
[Level:16]gilgil
73937   May 07, 2011
[install] netsh wlan set hostednetwork mode=allow "ssid=gilgil" "key=1234567890" keyUsage=persistent [uninstall] netsh wlan set hostednetwork mode=disallow [start] netsh wlan start hostednetwork [stop] netsh ...  
55 [android][c] hello world project files file
[Level:16]gilgil
71870   Nov 01, 2014
[Makefile] _ANDROID_ARCH=arch-arm _ANDROID_API=android-9 _ANDROID_EABI=arm-linux-androideabi-4.8 ANDROID_NDK_ROOT=/android/ndk ANDROID_SDK_ROOT=/android/adt/sdk ANDROID_SYSROOT=$ANDROID_NDK_ROOT/pl-atf...  
54 [qt][android] hello_world_gui build log file
[Level:16]gilgil
71335   Oct 26, 2014
[ubuntu debug] 00:35:10: Running steps for project hello_world_gui... 00:35:10: Starting: "/opt/Qt/5.3/gcc_64/b-in/qmake" /root/temp/qt/hello_-world_gui/hello_worl-d_gui.pro -r -spec linux-g++ CONFIG+=debug 00:35:10: The p...  
53 [qt] obj_qvariant_conversion_test file
[Level:16]gilgil
71333   Dec 22, 2014
obj_qvariant_convers-ion_test.tar.gz obj_qvariant_convers-ion_test(2014.12.22 2143).tar.gz V_QVARIANT_CONVERSIO-N(TYPE) and V_TYPE_CONVERSION(TY-PE, NEWTYPE, MEMBER) added. obj_qvariant_convers-ion_test(2014....  
52 VInt class header file file
[Level:16]gilgil
71214   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...  
51 qt static build 1 imagefile
[Level:16]gilgil
70875   Nov 27, 2013
[Environment] Microsoft Windows 7 Microsoft Visual Studio 2012 64bit compiler(or 32bit compiler) Qt 5.1.1 [Required] Download and install ActivePerl (version 5.16.3 or higher) and check system path ...  
50 [regex] Of running multiple regexp at once
[Level:16]gilgil
70805   May 06, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
49 [c] snprintf test file
[Level:16]gilgil
70791   Oct 29, 2014
[code] #include <stdio.h> #include <string.h> static const int BUFSIZE = 4; void dump(char* p, int size) { for (int i = 0; i < size; i++) { unsigned char ch = *p; printf("%02X ", ch); p++; } printf("\n"); } int main()...  
48 gettimeofday function for windows
[Level:16]gilgil
70787   Feb 23, 2014
#include <windows.h> int gettimeofday(struct timeval* tv, struct timezone* tz) { static LONGLONG birthunixhnsec = 116444736000000000; /*in units of 100 ns */ FILETIME systemtime; GetSystemTimeAsFileT-ime(&sy...  
47 [cmake] How to change install prefix
[Level:16]gilgil
70772   Mar 31, 2015
cmake -DCMAKE_INSTALL_PREFI-X:PATH=/home/gilgil . && make all install cmake -DCMAKE_INSTALL_PREFI-X:PATH=$PWD/usr/local . && make all install  
46 [wireshark] running wireshark as root count warning message
[Level:16]gilgil
70769   Nov 14, 2014
fix lua error: cd /usr/share/wireshark- nano init.lua line #29 change to: disable_lua = true  
45 A Tour of Go imagefile
[Level:16]gilgil
70761   Feb 17, 2013
A programming language guide line of Go(open source programming powered by Google) http://tour.golang.o-rg  
44 VDream option for Qt pro file
[Level:16]gilgil
70750   Feb 18, 2013
#------------------------------------------------- # Common #------------------------------------------------- CONFIG(release, debug|release) { DEFINES += _RELEASE D = "" } CONFIG(debug, debug|release) { DEFINES += _DEBUG D = "d" } LI...  
43 [c] libxml sample using sax
[Level:16]gilgil
70748   Nov 14, 2014
http://stackoverflow-.com/questions/39599-87/requesting-complete-compilable-libxml2-sax-example  
42 linux installation guide for virtual machine
[Level:16]gilgil
70744   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...  
41 [c++] explicit
[Level:16]gilgil
70742   Dec 22, 2014
explicit http://en.cppreferen-ce.com/w/cpp/languag-e/explicit explicit type conversion http://en.cppreferen-ce.com/w/cpp/languag-e/explicit_cast  


XE Login