Communities

Total Articles 180
No.
Subject
Author
60 How to remove folders recursively
[Level:16]gilgil
76126   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
75427   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
75344   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
75121   Aug 10, 2011
.. cache test source code files.cache.zip  
56 How to make soft AP on Windows7
[Level:16]gilgil
73949   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
71886   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
71444   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
71354   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
71257   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
70897   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 gettimeofday function for windows
[Level:16]gilgil
70878   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...  
49 [regex] Of running multiple regexp at once
[Level:16]gilgil
70867   May 06, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
48 [wireshark] running wireshark as root count warning message
[Level:16]gilgil
70863   Nov 14, 2014
fix lua error: cd /usr/share/wireshark- nano init.lua line #29 change to: disable_lua = true  
47 [c] snprintf test file
[Level:16]gilgil
70857   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()...  
46 [c] libxml sample using sax
[Level:16]gilgil
70844   Nov 14, 2014
http://stackoverflow-.com/questions/39599-87/requesting-complete-compilable-libxml2-sax-example  
45 [cmake] How to change install prefix
[Level:16]gilgil
70835   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  
44 url_test for qt
[Level:16]gilgil
70821   Oct 05, 2013
[Source] // ---------------------------------------------------------------------------- // // VDream Component Suite version 8.0 // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // ------------------------...  
43 A Tour of Go imagefile
[Level:16]gilgil
70818   Feb 17, 2013
A programming language guide line of Go(open source programming powered by Google) http://tour.golang.o-rg  
42 touch for windows file
[Level:16]gilgil
70817   Mar 15, 2014
touch.zip  
41 linux installation guide for virtual machine
[Level:16]gilgil
70817   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...  


XE Login