User Paul - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:59:57Z http://stackoverflow.com/feeds/user/1687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/333282/transaction-with-monetdb-and-jdbc-driver 0 Transaction with MonetDB and JDBC driver Paul 2008-12-02T07:51:25Z 2009-11-20T18:50:59Z <p>I'm trying to perform transaction-like behavior with MonetDB and its JDBC driver.</p> <p>I tried first to set autocommit to false for the connection, I then get the following error on commit :</p> <pre><code>java.lang.IndexOutOfBoundsException at java.nio.StringCharBuffer.subSequence(StringCharBuffer.java:92) at nl.cwi.monetdb.mcl.parser.StartOfHeaderParser.getNextAsString(StartOfHeaderParser.java:130) at nl.cwi.monetdb.jdbc.MonetConnection$ResponseList.executeQuery(MonetConnection.java:1927) at nl.cwi.monetdb.jdbc.MonetConnection$ResponseList.processQuery(MonetConnection.java:1808) at nl.cwi.monetdb.jdbc.MonetConnection.commit(MonetConnection.java:347) </code></pre> <p>I then tried to set autocommit to true and call </p> <p>START TRANSACTION; ... COMMIT;</p> <p>but this doesn't seem to work either. Any idea/experience about that?</p> http://stackoverflow.com/questions/1722670/common-way-to-call-mother-class-operator-in-c 0 Common way to call mother-class operator= in C++? Paul 2009-11-12T14:44:41Z 2009-11-12T14:55:03Z <p>Let's suppose I have a class Dog that inherits from class Animal, you might want to insert a call to Animal::operator= in Dog::operator=.</p> <p>What is the most readable/common way to write it?</p> <p>I think I know those two...</p> <pre><code>static_cast&lt;Animal*&gt;(this)-&gt;operator=(other); </code></pre> <p>and</p> <pre><code>this-&gt;Animal::operator=(other); </code></pre> http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset 3 STL: How to check that an element is in a std::set ? Paul 2009-11-09T13:46:08Z 2009-11-09T17:39:19Z <p>How do you check that an element is in a set?</p> <p>Is there a simpler equivalent of the following code:</p> <pre><code>myset.find(x) != myset.end() </code></pre> http://stackoverflow.com/questions/1367316/include-and-include 8 #include <> and #include "" [closed] Paul 2009-09-02T12:10:07Z 2009-09-03T14:52:25Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename">what is the difference between #include &lt;filename&gt; and #include &ldquo;filename&rdquo;</a> </p> </blockquote> <p>Is there a fundamental difference between the two #include syntax, apart from the way the path the compiler will search for?</p> <p>I have the feeling that Intel's compiler does not give exactly the same output.</p> http://stackoverflow.com/questions/1294382/what-is-a-global-interpreter-lock-gil/1294430#1294430 1 Answer by Paul for What is a global interpreter lock (GIL)? Paul 2009-08-18T14:57:06Z 2009-08-18T22:20:05Z <p>Whenever two threads have access to the same variable you have a problem. In C++ for instance, the way to avoid the problem is to define some mutex lock to prevent two thread to, let's say, enter the setter of an object at the same time.</p> <p>Multithreading is possible in python, but two threads cannot be executed at the same time at a granularity finer than one python instruction. The running thread is getting a global lock called GIL.</p> <p>This means if you begin write some multithreaded code in order to take advantage of your multicore processor, your performance won't improve. The usual workaround consists of going multiprocess.</p> <p>Note that it is possible to release the GIL if you're inside a method you wrote in C for instance.</p> <p>The use of a GIL is not inherent to Python but to some of its interpreter, including the most common CPython. (#edited, see comment)</p> <p>The GIL issue is still valid in Python 3000.</p> http://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function 5 about the cost of virtual function Paul 2009-08-18T09:03:20Z 2009-08-18T09:37:28Z <p>If I call a virtual function 1000 times in a loop, will I suffer from the vtable lookup overhead 1000 times or only once?</p> http://stackoverflow.com/questions/1055160/unicode-friendly-alphabetic-pattern-for-python-regex 3 Unicode friendly alphabetic pattern for python regex? Paul 2009-06-28T16:04:58Z 2009-06-28T16:29:15Z <p>I'm looking for a pattern equivalent to \w, and which doesn't match numeric pattern. I cannot use [a-zA-Z] because I would like it to match japanese kanjis as well.</p> <p>Is there a way to write something like [\w^[0-9]] ? Is there an equivalent of [:alpha:] in python regex?</p> http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/14260#14260 12 Answer by Paul for What's your favourite programming language, and its killer feature? Paul 2008-08-18T06:47:30Z 2009-06-05T11:05:32Z <p>OCaml, its killer feature might be pattern matching. It makes your program very readable :</p> <pre><code>let rec fact = fun | 0 -&gt; 1 | n -&gt; n*fact (n-1) ;; let rec filter predicate = fun | [] -&gt; [] | h::q when predicate h -&gt; h::(filter predicate q) | h::q-&gt;(filter predicate q) ;; </code></pre> <p>Ok sorry for that :</p> <p>So the first function describe the blockbuster factorial function. It's implemented recursively.</p> <p>So the first function should be read :</p> <pre><code>*(l.1)* **let** **fact** be a **fun**ction defined **rec**ursively as : *(l.2)* when given **0** as an argument, returns **1** *(l.3)* when given **n** as an argument, returns **n-1** </code></pre> http://stackoverflow.com/questions/17721/experience-with-hadoop 6 Experience with Hadoop? Paul 2008-08-20T10:43:13Z 2009-05-21T22:40:37Z <p>Hi,</p> <p>Have any of you tried Hadoop? Can it be used without the distributed filesystem that goes with it, in a Share-nothing architecture? Would that make sense?</p> <p>I'm also interested into any performance results you have...</p> http://stackoverflow.com/questions/824160/which-compilation-option-should-be-set-for-profiling 1 Which compilation option should be set for profiling? Paul 2009-05-05T09:57:10Z 2009-05-05T14:36:41Z <p>Hi,</p> <p>I need to profile an application compiled with intel's compiler via VC++. I'm using VTune to profile my code.</p> <p>My understanding is that in release mode I won't have the debug information that is necessary for the profiler to profile my code while in debug mode, the result of the profiling will not be pertinent.</p> <p>What should I do ? Is it possible to add debug info in release mode? How can I set this mode?</p> <p>If so, will I still benefit from all the optimization (inlining etc.)?</p> http://stackoverflow.com/questions/714068/how-do-you-organize-javascript-verboseness/714115#714115 1 Answer by Paul for How do you organize Javascript verboseness? Paul 2009-04-03T14:18:47Z 2009-04-03T14:18:47Z <p>jQuery makes things shorter via a magic function $() that gives back a wrapper of your dom element.</p> <p>The wrapper gives you access to all the css property, and pretty much all its methods (ie the setters are giving back "this") including the CSS setters.</p> <p>It will be clearer with an example...</p> <pre><code>$("&lt;a href='toto/'&gt;&lt;/a&gt;") .css("position", "absolute"); .css("right", "3em") .appendTo($(containerid)); </code></pre> http://stackoverflow.com/questions/707879/python-bayesian-text-classification-modules/708236#708236 0 Answer by Paul for Python Bayesian text classification modules Paul 2009-04-02T03:57:28Z 2009-04-02T03:57:28Z <p>If you're trying to detect language <a href="http://cogscicoder.blogspot.com/2009/03/automatic-language-identification-using.html" rel="nofollow">this</a> works fine even with pretty short texts.</p> <p>The api is pretty close to yours but I don't know if it is called a Bayesian classifier. </p> http://stackoverflow.com/questions/662762/can-i-write-python-web-application-for-windows-and-linux-platforms-at-the-same-ti/662784#662784 2 Answer by Paul for Can I write Python web application for Windows and Linux platforms at the same time? Paul 2009-03-19T15:55:29Z 2009-03-19T15:55:29Z <p>web.py includes a server... It will do the trick for small jobs.</p> <p>By the way, Apache works on windows.</p> http://stackoverflow.com/questions/659737/python-how-to-add-rsa-padding/661276#661276 2 Answer by Paul for Python: How to add RSA padding? Paul 2009-03-19T07:02:35Z 2009-03-19T07:09:07Z <p>One of the reason for <strong>random</strong> padding might be that "from the book" RSA with low exponent (let's say 3) can be cracked really simply if the exact same message is sent to several people (three).</p> <p>You'd therefore better make sure that you don't send the exact same message by applying some kind of random (yet inversible) transformation to your message before.</p> <p>Maybe that's what thing padding is about !?</p> <p>EDIT: I looked on wikipedia. what I was talking about is called Hastad's attack.</p> http://stackoverflow.com/questions/660727/python-decorator-specific-argument-unrelated-to-wrapped-function/660751#660751 5 Answer by Paul for Python: decorator specific argument (unrelated to wrapped function)? Paul 2009-03-19T01:22:45Z 2009-03-19T01:29:36Z <p>The idea is that your decorator is a function returning a decorator.</p> <p><strong>FIRST</strong> Write your decorator as if you knew your argument was a global variable. Let's say something like:</p> <p>-</p> <pre><code>def decorator(f): def decorated(*args,**kwargs): cache = Cache(cachepath) if cache.iscached(*args,**kwargs): ... else: res = f(*args,**kwargs) cache.store((*args,**kwargs), res) return res return decorated </code></pre> <p><strong>THEN</strong> Write a function that takes cachepath as an arg and return your decorator.</p> <p>-</p> <pre><code>def cache(filepath) def decorator(f): def decorated(*args,**kwargs): cache = Cache(cachepath) if cache.iscached(*args,**kwargs): ... else: res = f(*args,**kwargs) cache.store((*args,**kwargs), res) return res return decorated return decorator </code></pre> http://stackoverflow.com/questions/660634/css-text-decoration-reverse/660708#660708 4 Answer by Paul for CSS text-decoration: reverse Paul 2009-03-19T01:01:24Z 2009-03-19T01:06:07Z <p>What are you calling reverted? Do you mean to set the background as the foreground color and vice versa? (Maybe it's a stupid comment, but if so it is not a decoration is it?)</p> <p>Anyway you're about to have a fight between DRY and MVC here :</p> <ul> <li>either you declare a new CSS class each time you want to do that. That's redundant and painful, but you indeed separated the style from the code.</li> </ul> <p>Typically:</p> <pre><code>.mydiv { background-color: blue; color: red; font-family:...; (...) } .mydiv:hover { color: red; background-color: blue; } </code></pre> <ul> <li><p>another option is to do that through javascript. Proxify suggested using jQuery.</p> <p>The result would probably look like that... (not tested)</p></li> </ul> <pre><code>$(".invert").map(function (el) { var color = el.css("color"); var bgcolor = el.css("background-color"); el.css("color", bgcolor).css("background-color",color); })</code></pre> http://stackoverflow.com/questions/656933/communicating-with-a-running-python-daemon/656956#656956 8 Answer by Paul for Communicating with a running python daemon Paul 2009-03-18T04:22:00Z 2009-03-18T10:04:48Z <p>What about having it run an http server?</p> <p>It seems crazy but running a simple web server for administrating your server requires just a few lines using web.py</p> <p>You can also consider creating a unix pipe.</p> http://stackoverflow.com/questions/656897/normal-distribution-function/656971#656971 2 Answer by Paul for Normal Distribution function Paul 2009-03-18T04:31:13Z 2009-03-18T08:22:50Z <p>A normal distribution is never equal to 0. Please make sure that what you want to plot is indeed a normal distribution.</p> <p>If you're only looking for this bell shape (with the tangent and everything) you can use the following formula:</p> <pre><code>x^2*(x-10)^2 for x between 0 and 10 0 elsewhere </code></pre> <p>(Divide by 125 if you need to have your peek on 5.)</p> <pre><code>double bell(double x) { if ((x &lt; 10) &amp;&amp; (x&gt;0)) return x*x*(x-10.)*(x-10.)/125.; else return 0.; } </code></pre> http://stackoverflow.com/questions/653783/a-simple-freeze-behavior-decorator 2 A simple freeze behavior decorator Paul 2009-03-17T11:08:54Z 2009-03-17T18:57:28Z <p>Hi,</p> <p>I'm trying to write a freeze decorator for Python.</p> <p>The idea is as follows :</p> <p><strong>(In response to the two comments)</strong></p> <p>I might be wrong but I think there is two main use of test case.</p> <ul> <li><p>One is the test-driven development : Ideally , developers are writing case before writing the code. It usually helps defining the architecture because this discipline forces to define the real interfaces before development. One may even consider that in some case the person who dispatches job between dev is writing the test case and use it to illustrate efficiently the specification he has in mind. I don't have any experience of the use of test case like that.</p></li> <li><p>The second is the idea that all project with a decent size and a several programmers is suffering from broken code. Something that use to work may get broken from a change that looked like an innocent refactoring. Though good architecture, loose couple between component may help to fight against this phenomenon ; you will sleep better at night if you have written some test case to make sure that nothing will break your program's behavior.</p></li> </ul> <p>HOWEVER, Nobody can deny the overhead of writting test cases. In the first case one may argue that test case is actually guiding development and is therefore not to be considered as an overhead.</p> <p>Frankly speaking, I'm a pretty young programmer and if I were you, my word on this subject is not really valuable... Anyway, I think that mosts company/projects are not working like that, and that unit tests are mainly used in the second case...</p> <p>In other words, rather than ensuring that the program is working correctly, it is aiming at checking that it will work the same in the future.</p> <p>This needs can be met without the cost of writing tests, by using this freezing decorator.</p> <p>Let's say you have a function</p> <pre><code>def pow(n,k): if n == 0: return 1 else: return n * pow(n,k-1) </code></pre> <p>It is perfectly nice, and you want to rewrite it as an optimized version. It is part of a big project. You want it to give back the same result for a few value. Rather than going through the pain of test cases, one could use some kind of freeze decorator.</p> <p>Something such that the first time the decorator is run, the decorator run the function with the defined args (below 0, and 7) and saves the result in a map ( f --> args --> result )</p> <pre><code>@freeze(2,0) @freeze(1,3) @freeze(3,5) @freeze(0,0) def pow(n,k): if n == 0: return 1 else: return n * pow(n,k-1) </code></pre> <p>Next time the program is executed, the decorator will load this map and check that the result of this function for these args as not changed.</p> <p>I already wrote quickly the decorator (see below), but hurt a few problems about which I need your advise...</p> <pre><code>from __future__ import with_statement from collections import defaultdict from types import GeneratorType import cPickle def __id_from_function(f): return ".".join([f.__module__, f.__name__]) def generator_firsts(g, N=100): try: if N==0: return [] else: return [g.next()] + generator_firsts(g, N-1) except StopIteration : return [] def __post_process(v): specialized_postprocess = [ (GeneratorType, generator_firsts), (Exception, str), ] try: val_mro = v.__class__.mro() for ( ancestor, specialized ) in specialized_postprocess: if ancestor in val_mro: return specialized(v) raise "" except: print "Cannot accept this as a value" return None def __eval_function(f): def aux(args, kargs): try: return ( True, __post_process( f(*args, **kargs) ) ) except Exception, e: return ( False, __post_process(e) ) return aux def __compare_behavior(f, past_records): for (args, kargs, result) in past_records: assert __eval_function(f)(args,kargs) == result def __record_behavior(f, past_records, args, kargs): registered_args = [ (a, k) for (a, k, r) in past_records ] if (args, kargs) not in registered_args: res = __eval_function(f)(args, kargs) past_records.append( (args, kargs, res) ) def __open_frz(): try: with open(".frz", "r") as __open_frz: return cPickle.load(__open_frz) except: return defaultdict(list) def __save_frz(past_records): with open(".frz", "w") as __open_frz: return cPickle.dump(past_records, __open_frz) def freeze_behavior(*args, **kvargs): def freeze_decorator(f): past_records = __open_frz() f_id = __id_from_function(f) f_past_records = past_records[f_id] __compare_behavior(f, f_past_records) __record_behavior(f, f_past_records, args, kvargs) __save_frz(past_records) return f return freeze_decorator </code></pre> <ul> <li><p>Dumping and Comparing of results is not trivial for all type. Right now I'm thinking about using a function (I call it postprocess here), to solve this problem. Basically instead of storing res I store postprocess(res) and I compare postprocess(res1)==postprocess(res2), instead of comparing res1 res2. It is important to let the user overload the predefined postprocess function. My first question is : <strong>Do you know a way to check if an object is dumpable or not?</strong></p></li> <li><p>Defining a key for the function decorated is a pain. In the following snippets I am using the function module and its name. ** Can you think of a smarter way to do that. **</p></li> <li><p>The snippets below is kind of working, but opens and close the file when testing and when recording. This is just a stupid prototype... but do you know a nice way to open the file, process the decorator for all function, close the file...</p></li> <li><p>I intend to add some functionalities to this. For instance, add the possibity to define an iterable to browse a set of argument, record arguments from real use, etc. Why would you expect from such a decorator?</p></li> <li><p>In general, would you use such a feature, knowing its limitation... Especially when trying to use it with POO?</p></li> </ul> http://stackoverflow.com/questions/653259/effective-way-to-iteratively-append-to-a-string-in-python/653268#653268 4 Answer by Paul for Effective way to iteratively append to a string in Python? Paul 2009-03-17T07:08:48Z 2009-03-17T07:28:42Z <p>You don't want to use re.split?</p> <pre><code>import re re.split("[,; ]+", "coucou1 , coucou2;coucou3") </code></pre> http://stackoverflow.com/questions/642901/a-bit-of-tiling 1 A bit of tiling... Paul 2009-03-13T14:13:42Z 2009-03-13T20:24:18Z <p>I just finished writing a small script to combine a lot of png pictures into a bigger one for CSS Sprite.</p> <p>So basically, I have a list of dimensions [(w1,h2), ..., (wn,hn)] and I need to put them into a frame with dimension (W,H) with WH as small as possible. (Of course they cannot overlap)</p> <p>The heuristic I used is obviously not optimal. I was wondering if you had any ideas on the subject? Do you think some smarter constraint, like grouping images with similar histograms would make the png smaller?</p> http://stackoverflow.com/questions/642991/whats-the-correct-way-for-a-cross-browser-html-layout/643041#643041 0 Answer by Paul for What's the correct way for a cross-browser HTML layout? Paul 2009-03-13T14:48:24Z 2009-03-13T14:48:24Z <p>I think it's impossible.</p> <p>Note however that if the height of the row is known you can define your table via first column - first row, second row, ... second column - ....</p> http://stackoverflow.com/questions/617097/iterative-version-of-pythons-deepcopy/617394#617394 0 Answer by Paul for Iterative version of Python's deepcopy Paul 2009-03-06T01:08:35Z 2009-03-06T01:08:35Z <p>Maybe it would work as such with <a href="http://en.wikipedia.org/wiki/Stackless%5FPython" rel="nofollow">Stackless Python</a></p> http://stackoverflow.com/questions/609972/boolean-and-in-python/610373#610373 5 Answer by Paul for Boolean 'and' in Python Paul 2009-03-04T12:44:06Z 2009-03-04T12:44:06Z <p>You can also test them as a couple.</p> <pre><code>if (i,ii)==(5,10): print "i is 5 and ii is 10" </code></pre> http://stackoverflow.com/questions/590109/find-all-duplicates-and-missing-values-in-a-sorted-array/590600#590600 0 Answer by Paul for Find all duplicates and missing values in a sorted array Paul 2009-02-26T13:43:09Z 2009-02-26T13:43:09Z <p>in python </p> <pre><code>consecutive=zip(l[0:-1],l[1:]) duplicate=[ a for (a,b) in consecutive if a==b] missing=reduce(lambda u,v:u+v, [range(a+1,b) for (a,b) in consecutive]) </code></pre> http://stackoverflow.com/questions/589145/what-does-this-mysterious-color-method-do-what-does-it-return/589157#589157 3 Answer by Paul for What does this mysterious Color Method do? What does it return? Paul 2009-02-26T04:54:56Z 2009-02-26T04:54:56Z <p>It seems like you have colortable which is a storing a list of colors.</p> <p>Then you have this strangely hardcoded colorspace of </p> <blockquote> <p>Colors that have component which are a multiple of 4 and are "not too bright" but not "too dark either".</p> </blockquote> <p>This function seems to be giving you the color in the latter which "contrasts" the best with your color table.</p> <p>When I say contrast , this is defined by choosing the color that is as far as possible from the color table using the 2-norm.</p> http://stackoverflow.com/questions/588749/python-daemon-packaging-best-practices/588891#588891 2 Answer by Paul for Python Daemon Packaging Best Practices Paul 2009-02-26T02:44:33Z 2009-02-26T02:44:33Z <p>There are many snippets on the internet offering to write a daemon in pure python (no bash scripts)</p> <p><a href="http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/" rel="nofollow">http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/</a> looks clean...</p> <p>If you want to write your own,<br /> the principle is the same as with the bash daemon function.</p> <p>Basically:</p> <p><strong>On start:</strong></p> <ul> <li>you fork to another process</li> <li>open a logfile to redirect your stdout and stderr </li> <li>Save the pid somewhere.</li> </ul> <p><strong>On stop:</strong></p> <ul> <li>You send SIGTERM to the process with pid stored in your pidfile.</li> <li>With signal.signal(signal.SIGTERM, sigtermhandler) you can bind a stopping procedure to the SIGTERM signal.</li> </ul> <p>I don't know any widely used package doing this though.</p> http://stackoverflow.com/questions/585815/how-useful-is-python/585834#585834 1 Answer by Paul for How useful is Python? Paul 2009-02-25T12:42:13Z 2009-02-25T13:17:42Z <ul> <li><p>Python is like a new/better PERL. It makes it possible to write pretty complicated system scripts in a very compact and easy to read way.</p></li> <li><p>Python is fine for big projects as well.</p></li> <li><p>Python offers access to a LOT of libraries, whose API is most of the time far simpler than what you can meet in other languages.</p></li> <li><p>Python is pretty fast for a dynamic language.</p></li> <li><p>Python doesn't care whether you are more about OOP or functional programming. You're free to adopt both programming styles.</p></li> </ul> http://stackoverflow.com/questions/585913/c-member-function-virtual-override-and-overload-at-the-same-time/585940#585940 1 Answer by Paul for C++ member function virtual override and overload at the same time Paul 2009-02-25T13:14:20Z 2009-02-25T13:14:20Z <p>I was a bit doubtful about that one, but indeed it does not compile. Here is a simplified version of the code that illustrates the same issue.</p> <pre><code>class A { public: virtual void f(int) {} virtual void f(void*) {} }; class B : public A { public: virtual void f(void*) {} }; int main() { B b; b.f(1); return 0; } </code></pre> http://stackoverflow.com/questions/585529/find-all-strings-in-python-code-files/585780#585780 2 Answer by Paul for Find all strings in python code files Paul 2009-02-25T12:24:21Z 2009-02-25T12:24:21Z <p>You may also consider to parse your code with <a href="http://pygments.org/" rel="nofollow">pygments.</a></p> <p>I don't know the other solution, but it sure is very simple to use.</p> http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1702184#1702184 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T17:16:32Z 2009-11-09T17:16:32Z what about container.begin()? http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1702184#1702184 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T16:57:55Z 2009-11-09T16:57:55Z Thank you very much!!! http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T16:42:56Z 2009-11-09T16:42:56Z @280Z28 Could you give us your version? I'm not really familiar with STL style... http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T16:39:27Z 2009-11-09T16:39:27Z @wilhelmtell but what if I want it inline? http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T14:02:08Z 2009-11-09T14:02:08Z just did so : template&lt;class T&gt; static inline bool contains(const std::set&lt;T&gt;&amp; S, T x) { return (S.find(x) != S.end()); } http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701083#1701083 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T13:54:37Z 2009-11-09T13:54:37Z thank you very much. http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701072#1701072 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T13:52:05Z 2009-11-09T13:52:05Z ... which could be casted into a bool I understand your answer, however I like my code to be easy to read, and it's slightly twisted to use count to check if something is in a set. So you're positive this is the common idiom? http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701072#1701072 Comment by Paul on STL: How to check that an element is in a std::set ? Paul 2009-11-09T13:47:58Z 2009-11-09T13:47:58Z I mean, is there something like &quot;is_in&quot; or &quot;contains&quot; somewhere? I couldn't find anything... http://stackoverflow.com/questions/1367316/include-and-include Comment by Paul on #include <> and #include "" Paul 2009-09-08T14:05:16Z 2009-09-08T14:05:16Z Ok... By different output I meant that VC++ gave me a (pertinent) warning with the #include &quot;&quot;, and it couldn't detect the issue with the #include &lt;&gt;. http://stackoverflow.com/questions/1294382/what-is-a-global-interpreter-lock-gil/1294430#1294430 Comment by Paul on What is a global interpreter lock (GIL)? Paul 2009-08-18T22:19:26Z 2009-08-18T22:19:26Z Good point. Thank you for the comment http://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function/1292775#1292775 Comment by Paul on about the cost of virtual function Paul 2009-08-18T12:29:48Z 2009-08-18T12:29:48Z I know it &quot;could&quot;, I don't if it &quot;does&quot; help me. http://stackoverflow.com/questions/1292718/about-the-cost-of-virtual-function/1292773#1292773 Comment by Paul on about the cost of virtual function Paul 2009-08-18T12:27:34Z 2009-08-18T12:27:34Z Thank you very much for your answer and comments. I'll check that on gcc when I get some time. http://stackoverflow.com/questions/1055160/unicode-friendly-alphabetic-pattern-for-python-regex/1055173#1055173 Comment by Paul on Unicode friendly alphabetic pattern for python regex? Paul 2009-06-28T16:46:50Z 2009-06-28T16:46:50Z pretty cool. I hadn't thought about that. http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/14260#14260 Comment by Paul on What's your favourite programming language, and its killer feature? Paul 2009-06-05T11:05:09Z 2009-06-05T11:05:09Z fixed, sorry I wrote that in a rush http://stackoverflow.com/questions/711941/what-is-currently-considered-the-best-algorithm-for-2d-point-matching Comment by Paul on What is currently considered the "best" algorithm for 2D point-matching? Paul 2009-04-03T00:12:49Z 2009-04-03T00:12:49Z I'm interested into this one as well.