Since 4/14/2012 3:27:51 AM, crimaniak has written 3 articles and participated in 14 conversations. crimaniak signature: crimaniak
crimaniak's articles:
Items(3) /1
g++ -Weffc++ key and libraries6164 (12/1/2009 11:12:19 AM) comp.lang.c++ Hi All!
I read about -Weffc++ key and try to use it to make my code more
reliable. But compiler gives me about 1500 warnings for project and
most of them located in used libraries: boost, dlib, json_spirit... crimaniak
How to debug makefile project target in Eclipse1947 (12/1/2009 10:37:17 AM) comp.lang.c++ Hi all!
I have Eclipse CDT:
Eclipse Platform
Version: 3.4.2
Build id: M20090211-1700
And I have makefile project in Eclipse. Why I used makefile type
project: first compiled and linked target 'xml2cpp... crimaniak
recursive wildcard target in makefile2169 (11/16/2009 4:52:48 PM) comp.lang.c++ Hi all!
I have .cpp sources in c/ directory of project and want to
generate .dep files for every .cpp in temp/ directory.
For example:
c/tester.cpp produced temp/tester.dep
c/lib1/file.cpp produced tem... crimaniak
regexp - replace \n by <br>, but not inside <pre>718 (10/14/2009 12:47:12 PM) comp.lang.php Hi, I want to replace "\n" in a string by "\n", but not if the \n is withing tags. Can you please assist? -- ------------------------------------ Gernot Frisch http://www.glbasic.com ... me4(18696)
Managing state1122 (10/15/2009 2:38:16 PM) comp.lang.php I'm working on a project that stores state information in session. (Specifically the ID of the database entity the user is currently working with.) A drawback of this method is that everything gets out of sync... marksmith5555(101)
How to get immediate parent for included file?722 (10/16/2009 6:31:45 PM) comp.lang.php PHP_SELF seems to point to the highest up parent, im trying to find out the immediate parent. In other words, if this is the include chain... index.php -> include1.inc -> include2.inc how can I echo that incl... nboutelier1(2)
Array_unique - odd behavior523 (10/22/2009 11:23:07 AM) comp.lang.php I've just spent the last few hours tracking down an obscure bug and distilled it down to a simple test script that highlights the problem. There are some really strange interactions going on between the php fu... marksmith5555(101)
loaded configuration file (none) in phpinfo()3219 (10/24/2009 7:51:20 PM) comp.lang.php Hello i have a little problem with installing PHP. This is not my first time with PHP but today i dont know what is going on. after i Intalled php, apache and mysql i tried to run mysql_connect() function i get... lisek.lichu(3)
Strip part of site432 (11/1/2009 4:06:02 PM) comp.lang.php Hi all! I'm looking for a way to strip a part of a website. Let's say I wanna strip everything between two tags. For example, everything between and . I tried some functions but could get the result I wante... xct.expert(11)
how to make a filter function-filter out items in array?329 (11/4/2009 11:02:51 PM) comp.lang.php tried this, but didnt work for more than one $delete. I understand why, but not how to fix. function arrayfilterout ($input, $delete) { foreach($input as $i){ foreach($delete as $d){ if(strpos($i, $d)===f... juglesh689(16)
Programmatic approach to string construction149 (11/6/2009 4:37:39 AM) comp.lang.php Hello I am looking for some opinions or practical approach to constructing a string programmatically. What I am doing is taking a boat load of post variables and assembling an sql statement for insert(repla... futureshock(237)
reflection in init() functions1317 (11/9/2009 2:46:10 PM) comp.lang.php Let's say you have a class that reads a conf file with the following label=value format: debug=false showSuffixes=false searchRootFilePath=/var/www/content/ etc.... You could write a class function, perhaps w... whileone(6)