Communities

Total Articles 180
No.
Subject
Author
60 How to remove folders recursively
[Level:16]gilgil
76211   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
75565   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
75419   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
75210   Aug 10, 2011
.. cache test source code files.cache.zip  
56 How to make soft AP on Windows7
[Level:16]gilgil
74050   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
72320   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 [android][c] hello world project files file
[Level:16]gilgil
72036   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...  
53 VInt class header file file
[Level:16]gilgil
71603   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...  
52 url_test for qt
[Level:16]gilgil
71500   Oct 05, 2013
[Source] // ---------------------------------------------------------------------------- // // VDream Component Suite version 8.0 // // http://www.gilgil.ne-t // // Copyright (c) Gilbert Lee All rights reserved // // ------------------------...  
51 [qt] obj_qvariant_conversion_test file
[Level:16]gilgil
71499   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 How to use meta class in C++
[Level:16]gilgil
71483   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. ...  
49 so_test file
[Level:16]gilgil
71480   Feb 22, 2013
so_test.zip  
48 [ubuntu] how to show volume control in root account
[Level:16]gilgil
71439   Sep 26, 2014
Launch Startup Application. Add the following item. Name : Volume Control Command : /usr/bin/pulseaudio  
47 [c++] explicit
[Level:16]gilgil
71436   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  
46 [regex] Of running multiple regexp at once
[Level:16]gilgil
71421   May 06, 2015
http://fulmicoton.co-m/posts/multiregexp/-  
45 [etc] Markdown
[Level:16]gilgil
71420   Nov 27, 2014
[Markdown Basics] https://help.github.-com/articles/markdow-n-basics/ [Online Markdown Editor] http://dillinger.io/-  
44 qmake.conf for msvc2008 1 file
[Level:16]gilgil
71418   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...  
43 How to run chrome as root user in Ubuntu
[Level:16]gilgil
71412   Oct 19, 2014
http://computernetwo-rkingnotes.com/ubunt-u-12-04-tips-and-tricks/how-to-run-chrome-as-root-user-in-ubuntu.html 1. gedit /opt/google/chrome/g-oogle-chrome 2. At the end of the file, add "--user-data-dir $HOME" exec -a "$0" "$HER...  
42 [c] libxml sample using sax
[Level:16]gilgil
71412   Nov 14, 2014
http://stackoverflow-.com/questions/39599-87/requesting-complete-compilable-libxml2-sax-example  
41 Fedora installation for Qt
[Level:16]gilgil
71409   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 ...  


XE Login