Since 4/30/2012 12:16:00 AM, rabbit50 has written 9 articles and participated in 11 conversations. rabbit50 signature: rabbit50
rabbit50's articles:
Items(9) /1
newbie: simple question1129 (4/8/2009 2:21:34 PM) comp.lang.c++ hallo people. how to write C++ style conversion in order for it to compile? #include #include #include using namespace std; typedef pair PerfDebData; int main(int argc, char *argv[]) { PerfDebData dur... Michal
STL question. what is the difference...632 (4/1/2009 4:03:05 PM) comp.lang.c++ Hallo Group Members I unfortunatelly do not feel the difference between the 2 below. namespace std { template void swap(Widget& a, Widget& b) { .... } } namespace std { template void ... Michal
C++ - how to convert string to uppercase/lowercase7058 (12/17/2008 5:29:41 PM) comp.lang.c++ Hallo I looked through ANSI/ISO C++ standard string, and I did not find any function from string class that would do so. Did I overlooked something or it is so? regards, Michal ... Michal
linux 2.6.25 capabilities.446 (9/8/2008 4:41:38 PM) comp.lang.c Hallo Group Members I have the following problem with capabilities under linux. It looks like they are not taken into consideration when when program is run in gdb. A bit more detailed below /tmp/p1.c: #incl... Michal
the best live cd/dvd distribution247 (5/24/2008 4:29:53 PM) comp.os.linux.misc hallo group members I am planning to run linux from CD/DVD. I am going to remaster it a bit just to add some programs I use. Could You tell Your opinion what is the best distribution for that. By best I mean: 1... Michal
ext3 fsck on fileystem mount351 (4/12/2008 8:46:42 PM) comp.os.linux.misc Hallo group members. Is it possible somehow to tell mount command to check filesystem integrity at mount operation. The action should be done when number of times the filesystem is mounted without check operati... rabbit50
udev - how to run program on ext3 labelled parition.257 (4/2/2008 7:15:43 PM) comp.os.linux.misc Hallo Group Members. I created ext3 partition on my usb pen drive. I labelled it with "my_partition". Now, when I plug it it I want udev invoked some script. I want it be invoked only for usb that contains "my_... Michal
rabbit50's replies:
Items(7) /1
udev - how to run program on ext3 labelled parition.257 (4/2/2008 7:15:43 PM) comp.os.linux.misc Hallo Group Members. I created ext3 partition on my usb pen drive. I labelled it with "my_partition". Now, when I plug it it I want udev invoked some script. I want it be invoked only for usb that contains "my_... rabbit50(20)
the best live cd/dvd distribution247 (5/24/2008 4:29:53 PM) comp.os.linux.misc hallo group members I am planning to run linux from CD/DVD. I am going to remaster it a bit just to add some programs I use. Could You tell Your opinion what is the best distribution for that. By best I mean: 1... rabbit50(20)
try-catch usage924 (8/26/2008 12:01:20 PM) comp.lang.c++ Why does this: try { throw 1; } catch(...) { handle_exception(); } works as expected (exception is caught in the catch block) and this: try { throw; } catch(...) { handle_exception(); } cra... ruyeirwei(3)
STL question. what is the difference...632 (4/1/2009 4:03:05 PM) comp.lang.c++ Hallo Group Members I unfortunatelly do not feel the difference between the 2 below. namespace std { template void swap(Widget& a, Widget& b) { .... } } namespace std { template void ... rabbit50(20)
newbie: simple question1129 (4/8/2009 2:21:34 PM) comp.lang.c++ hallo people. how to write C++ style conversion in order for it to compile? #include #include #include using namespace std; typedef pair PerfDebData; int main(int argc, char *argv[]) { PerfDebData dur... rabbit50(20)