Communities

Total Articles 180
No.
Subject
Author
60 How to remove folders recursively
[Level:16]gilgil
76608   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
75976   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
75809   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
75569   Aug 10, 2011
.. cache test source code files.cache.zip  
56 How to make soft AP on Windows7
[Level:16]gilgil
74517   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 [qt][android] hello_world_gui build log file
[Level:16]gilgil
73460   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...  
54 [linux] copy stdout into clipboard
[Level:16]gilgil
72942   Nov 30, 2014
http://stackoverflow-.com/questions/51309-68/how-can-i-copy-the-output-of-a-command-directly-into-my-clipboard Install xclip sudo apt-get install xclip All alias in bashrc # # clipboard # alias c='xclip -selection clipbo...  
53 url_test for qt
[Level:16]gilgil
72915   Oct 05, 2013
[Source] // ---------------------------------------------------------------------------- // // VDream Component Suite version 8.0 // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // ------------------------...  
52 network layer protocol constants
[Level:16]gilgil
72904   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 ...  
51 [qt] obj_qvariant_conversion_test file
[Level:16]gilgil
72895   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....  
50 [regex] Of running multiple regexp at once
[Level:16]gilgil
72891   May 06, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
49 [c++] g++ exception(divide by zero)
[Level:16]gilgil
72885   Dec 25, 2014
http://www.network54-.com/Forum/613583/me-ssage/1364726793/Usi-ng+C%2B%2B+exception-+handling+to+catch+f-loating+point+divide-+by+zero.  
48 [cmake] How to change install prefix
[Level:16]gilgil
72876   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  
47 touch for windows file
[Level:16]gilgil
72870   Mar 15, 2014
touch.zip  
46 [ubuntu] how to show volume control in root account
[Level:16]gilgil
72859   Sep 26, 2014
Launch Startup Application. Add the following item. Name : Volume Control Command : /usr/bin/pulseaudio  
45 [wireshark] running wireshark as root count warning message
[Level:16]gilgil
72846   Nov 14, 2014
fix lua error: cd /usr/share/wireshark- nano init.lua line #29 change to: disable_lua = true  
44 [qt][android] openssl for android
[Level:16]gilgil
72839   Oct 26, 2014
http://wiki.openssl.-org/index.php/Androi-d 1. .bashrc 파일을 다음과 같이 설정한다. # # for android # export _ANDROID_ARCH=arch-arm export _ANDROID_EABI=arm-linux-androideabi-4.8 export _ANDROID_API=n...  
43 Of running multiple regexp at once
[Level:16]gilgil
72837   Jan 01, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
42 20 issues of porting C++ code on the 64-bit platform
[Level:16]gilgil
72837   Oct 23, 2013
http://www.viva64.co-m/en/a/0004/  
41 How to use meta class in C++
[Level:16]gilgil
72837   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. ...  


XE Login