User David Nehme - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:54:26Z http://stackoverflow.com/feeds/user/14167 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259240/iterator-adapter-to-iterate-just-the-values-in-a-map/259377#259377 6 Answer by David Nehme for iterator adapter to iterate just the values in a map? David Nehme 2008-11-03T17:36:49Z 2009-12-14T15:35:51Z <p>I don't think there's anything out of the box. You can use boost::make_transform.</p> <pre><code>template&lt;typename T1, typename T2&gt; T2&amp; take_second(const std::pair&lt;T1, T2&gt; &amp;a_pair) { return a_pair.second; } void run_map_value() { map&lt;int,string&gt; a_map; a_map[0] = "zero"; a_map[1] = "one"; a_map[2] = "two"; copy( boost::make_transform_iterator(a_map.begin(), take_second&lt;int, string&gt;), boost::make_transform_iterator(a_map.end(), take_second&lt;int, string&gt;), ostream_iterator&lt;string&gt;(cout, "\n") ); } </code></pre> http://stackoverflow.com/questions/252208/is-there-a-good-argument-for-software-patents 7 Is there a good argument for software patents? David Nehme 2008-10-31T00:08:35Z 2009-11-09T18:58:14Z <p>Now that it looks like software patents are going to be <a href="http://www.groklaw.net/article.php?story=20081030150903555" rel="nofollow">severely limited</a>, does anyone have a good argument for keeping them. It seems like copyright law serves software fine and patents just add overhead to what should be an almost frictionless process. Are there any examples of software that wouldn't have been written if not for patents?</p> http://stackoverflow.com/questions/304393/how-do-i-create-a-sqllite3-in-memory-database 5 How do I create a sqllite3 in-memory database? David Nehme 2008-11-20T05:16:51Z 2009-10-20T11:41:11Z <p>One of the <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">appropriate uses</a> for <a href="http://www.sqlite.org" rel="nofollow">sqlite3</a> is "in-memory databases". This sounds like a really useful tool for my C++ applications. Does anyone have an example of how this is done in C or C++? I'm specifically looking for a canonical way to slurp several flat-files into an in-memory database, then do some joins.</p> http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation/139698#139698 3 Answer by David Nehme for Merit of screencasts vs text-based documentation? David Nehme 2008-09-26T14:03:30Z 2009-10-20T08:01:05Z <p>Wow, like they used to say about TV: if you don't like it, turn it off or change the channel. For the Internet, that's about 10^6 times more applicable. Some folks learn better by listening to lectures, some by reading. And for some people, a combination of the two works best. Heck, if you went to college you probably attended lectures and followed that up by textbooks.</p> http://stackoverflow.com/questions/407407/how-do-i-read-fixed-length-records-in-perl 4 How do I read fixed-length records in Perl? David Nehme 2009-01-02T16:57:44Z 2009-08-04T23:14:29Z <p>What's the best way to read a fixed length record in Perl. I know to read a file like:</p> <pre><code>ABCDE 302 DEFGC 876 </code></pre> <p>I can do</p> <pre><code>while (&lt;FILE&gt;) { $key = substr($_, 0, 5); $value = substr($_, 7, 3); } </code></pre> <p>but isn't there a way to do this with read/unpack?</p> http://stackoverflow.com/questions/1120225/ruby-and-accdb-ms-access 1 ruby and accdb (ms access) David Nehme 2009-07-13T15:37:44Z 2009-07-22T03:51:40Z <p>If I have a base windows xp system, ruby and an ms access 2007 file (say c:/foo/bar.accdb) file, what's the least intrusive method for reading that .accdb file.</p> <ul> <li>What needs to be installed on the xp system.</li> <li>What is the specific connection string.</li> </ul> http://stackoverflow.com/questions/1136735/getting-started-with-tcl-tk/1138484#1138484 1 Answer by David Nehme for Getting started with Tcl TK? David Nehme 2009-07-16T15:37:57Z 2009-07-16T15:37:57Z <blockquote> <p>but the book that they recommend is quite old, </p> </blockquote> <p>The fact about tcl is, it is quite old, the book by Ousterhout is still the best book on tcl (and IMHO, almost a classic). There was never even a <a href="http://rads.stackoverflow.com/amzn/click/032133633X" rel="nofollow">second edition</a> although one is apparently in the making. <a href="http://www.computerworld.com.au/article/301772/-z%5Fprogramming%5Flanguages%5Ftcl" rel="nofollow">tcl</a> was a great idea at the time and it doesn't really hurt to learn it, but it hasn't kept up and frankly had a lot of design issues from the start. Don't get me wrong, I was a huge fan of tcl back in the day, but it's not the best thing to be learning now. If you decide to carry-on, pick up a used copy of the original book and use the online resources.</p> <p>The original purpose of tcl was to be easy and free enough to eliminate the need for the myriad of home-grown command languages that folks were writing to add interactivity to their applications. Later, the Tk toolkit was added and it was the easiest, free way to add a GUI to an application.</p> <p>Today, there are a lot more options available (for example for GUI's the <a href="http://www.qtsoftware.com/products/" rel="nofollow">Qt</a> toolkit is now under the LGPL therefore almost as free at Tk. For adding a command line interface to an existing C / C++ application, the closest modern tool is <a href="http://www.lua.org/" rel="nofollow">Lua</a>, but even more powerful languages like ruby and python are not much harder to integrate with C/ C++ applications (especially with tools like <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/python/doc/index.html" rel="nofollow">boost python</a> and <a href="http://www.swig.org/" rel="nofollow">SWIG</a>).</p> http://stackoverflow.com/questions/1119971/include-guard-in-ruby 2 include guard in ruby David Nehme 2009-07-13T15:01:05Z 2009-07-14T01:35:54Z <p>What is the idiomatic way to add an include guard in a ruby file analogous to </p> <pre><code>#ifdef FOO_H #define FOO_H ... #endif </code></pre> <p>in C?</p> http://stackoverflow.com/questions/1122268/how-to-construct-a-static-global-variable-in-c/1122331#1122331 0 Answer by David Nehme for How to construct a static global variable in C++ David Nehme 2009-07-13T22:00:27Z 2009-07-13T22:00:27Z <p>When you are defining foo, you are defining a local variable in the function main. When you link, you will get a missing symbol because your extern foo; is never created. You need to have foo defined outside a function.</p> <p>b.cpp</p> <pre><code>string foo; int main () { foo = "abc"; } </code></pre> <p>Better yet, you should try a singleton.</p> http://stackoverflow.com/questions/730835/how-create-file-in-c-in-a-specific-place-in-the-pc/730846#730846 2 Answer by David Nehme for How create file in C++ in a specific place in the PC David Nehme 2009-04-08T16:43:58Z 2009-04-14T16:43:14Z <pre><code>#include &lt;stdio.h&gt; .... FILE *file; file = fopen("c:/file.txt", "w"); </code></pre> http://stackoverflow.com/questions/691994/startup-or-bigco/691998#691998 4 Answer by David Nehme for Startup or BigCo? David Nehme 2009-03-28T01:52:46Z 2009-03-28T01:52:46Z <p>Don't think a big corp is going to be a safer position. Job security comes from the skills you have, not from company you work for.</p> http://stackoverflow.com/questions/269944/sas-one-liner 2 sas one-liner David Nehme 2008-11-06T19:23:41Z 2009-02-11T23:38:22Z <p>Is there a way to run a one-liner in sas, or do I have to create a file? I'm looking for something like the -e flag in perl.</p> http://stackoverflow.com/questions/262255/why-isnt-all-government-sponsored-software-open-source/262295#262295 5 Answer by David Nehme for Why isn't all government sponsored software open source? David Nehme 2008-11-04T16:15:02Z 2009-02-05T19:34:33Z <p>There is a lot of government-sponsored open source now, especially stuff coming out of government labs like <a href="https://software.sandia.gov/" rel="nofollow">Sandia</a>. It's not hard to find. </p> <p>An argument against open-source software by the government is that tax dollars of folks writing commercial software are being used to make competing products. That's an entirely different thing than if folks did that on their own time or with their own money. Imagine if you had a hotel, then the city bought a neighboring piece of property, put a hotel on it, then started selling rooms at lower rates (oh, actually that sort of thing does <a href="http://www.reason.com/news/show/29576.html" rel="nofollow">happen</a>).</p> http://stackoverflow.com/questions/499206/emacs-mode-multiline-comments 1 Emacs mode multiline comments David Nehme 2009-01-31T17:27:06Z 2009-02-01T01:01:22Z <p>What's the correct method for defining multi-line comments in an emacs mode (like C's /* */)? The elisp examples I see are for comments that start with a single delimiter and end at the end of the line (like C++'s // or perl's #).</p> http://stackoverflow.com/questions/499151/which-programming-lanuages-should-i-avoid-learning-because-nobody-will-be-using-t/499167#499167 0 Answer by David Nehme for Which programming lanuages should I avoid learning because nobody will be using them in 5 years? David Nehme 2009-01-31T17:00:30Z 2009-01-31T17:05:41Z <p>Learning an unusual or obscure programming language isn't necessarily a waste of time. Learning a functional language, for example, can expose you to new techniques which might be useful when you are writing in a more mainstream language, for example.</p> <p>You might want to avoid proprietary languages tied to a particular vendor. The skills you learn there are less likely to apply in the future. If the vendor goes under or decides to drop support, the remaining jobs for that application are likely to become scarce. Even worse, from your point of view, are languages used only internally by a single employer.</p> http://stackoverflow.com/questions/411410/subversion-repository-on-linux-dev 3 Subversion Repository on Linux Dev David Nehme 2009-01-04T18:07:49Z 2009-01-05T07:49:46Z <p>What's the best practice for setting up a subversion repository on a linux development machine. External users need to be able to access a specific repository, but nothing else on the machine. I know one answer is to set up a dedicated repository, but I'm looking for a single machine solution: location of repositories, accounts, backup procedures.</p> http://stackoverflow.com/questions/383968/can-i-find-the-file-linenumber-where-a-method-was-defined/383991#383991 0 Answer by David Nehme for Can I find the file/linenumber where a method was defined? David Nehme 2008-12-21T01:46:21Z 2008-12-21T01:46:21Z <p>After the fact, it will be pretty tough, but you can use a hook method to observe the line numbers where a method is defined.</p> <pre><code>class X &lt; Object def X.method_added(symbol) puts "adding method #{symbol} to class X from #{caller(0)" end end class X def a_method end end </code></pre> http://stackoverflow.com/questions/335063/whats-the-easiest-way-to-learn-programming/335071#335071 4 Answer by David Nehme for What's the Easiest Way to Learn Programming? David Nehme 2008-12-02T19:07:42Z 2008-12-02T19:12:45Z <p>Get <a href="http://www.pragprog.com/titles/fr_ltp/learn-to-program" rel="nofollow">Learn to Program</a>, and <a href="http://en.wikipedia.org/wiki/Why_the_lucky_stiff" rel="nofollow">Why</a>'s free <a href="http://poignantguide.net/ruby/" rel="nofollow">Poignant Guide</a> to Ruby. Download <a href="http://www.ruby-lang.org/en/" rel="nofollow">Ruby</a>. Start coding. See if you like it at all.</p> <p>Also see this <a href="http://stackoverflow.com/questions/146840/which-language-should-students-start-with">question</a>.</p> http://stackoverflow.com/questions/324346/how-to-restrain-ones-self-from-the-overwhelming-urge-to-rewrite-everything/324615#324615 2 Answer by David Nehme for How to restrain one's self from the overwhelming urge to rewrite everything? David Nehme 2008-11-27T20:37:54Z 2008-11-27T20:37:54Z <p>If it's some code you've inherited, start making the code your own. Write unit-tests, then refactor.</p> http://stackoverflow.com/questions/318551/defining-structures-globally-in-c/318558#318558 6 Answer by David Nehme for defining structures globally in c++ David Nehme 2008-11-25T19:21:31Z 2008-11-25T19:27:02Z <p>It's called a header file.</p> <p>in your header file (call it foo.h)</p> <pre><code>#ifndef FOO_H #define FOO_H class X { }; #endif </code></pre> <p>Then, in any C files you have</p> <pre><code>#include "foo.h" X x; </code></pre> <p>For C++ it's more common/preferred to use class, but you can use struct as well. The extern keyword generally refers to variables, not class/struct declarations. You would make a global variable extern in a header file (then declare it not-extern) in one of your .cpp files.</p> http://stackoverflow.com/questions/318405/can-this-build-system-be-sped-up/318427#318427 4 Answer by David Nehme for Can this build system be sped up? David Nehme 2008-11-25T18:34:37Z 2008-11-25T18:42:37Z <p>I'm not sure why symlinks are needed in your case. If you are building multiple targets from the same source, you might try putting your intermediate and target files in separate directories.</p> <p>Also, instead of nested <a href="http://aegis.sourceforge.net/auug97.pdf" rel="nofollow">makefiles</a>, you could try to use something like <a href="http://www.perforce.com/jam/jam.html" rel="nofollow">jam</a>. If you have a multiple CPUs, you can try <code>make -j</code> <em>n</em>, where <em>n</em> is the number of CPUs + 1.</p> http://stackoverflow.com/questions/315101/growing-as-a-system-administrator/315140#315140 1 Answer by David Nehme for Growing as a system administrator David Nehme 2008-11-24T19:19:12Z 2008-11-24T19:19:12Z <p>Try reading <a href="http://books.google.com/books?id=umJJXsFGO14C&amp;dq=system+administration+perl&amp;pg=PP1&amp;ots=YibvN4fwKe&amp;source=bn&amp;sig=UqCyfTGJ6gVGD-cnP8F7LLN0kgs&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result" rel="nofollow">Perl for System administrators</a>. It will help you learn more perl, and automate some administration tasks. It might help you get noticed as an especially productive administrator.</p> http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315085#315085 1 Answer by David Nehme for How to study design patterns? David Nehme 2008-11-24T19:00:40Z 2008-11-24T19:00:40Z <p>For books, I would recommend <a href="http://books.google.com/books?id=JPOaP7cyk6wC" rel="nofollow">Design Patterns Explained</a>, and <a href="http://books.google.com/books?id=LjJcCnNf92kC" rel="nofollow">Head First Design patterns</a>. To really learn these patterns, you should look at your existing code. Look for what patterns you are already using. Look at <a href="http://en.wikipedia.org/wiki/Code_smell" rel="nofollow">code smells</a> and what patterns might solve them.</p> http://stackoverflow.com/questions/303053/how-can-i-read-lines-from-the-end-of-file-in-perl/303104#303104 0 Answer by David Nehme for How can I read lines from the end of file in Perl? David Nehme 2008-11-19T19:47:14Z 2008-11-19T20:02:02Z <p>If you know the number of lines in the file, you can do</p> <pre><code>perl -ne "print if ($. &gt; N);" filename.csv </code></pre> <p>where N is $num_lines_in_file - $num_lines_to_print. You can count the lines with</p> <pre><code>perl -e "while (&lt;&gt;) {} print $.;" filename.csv </code></pre> http://stackoverflow.com/questions/302270/what-is-the-best-book-for-learning-about-algorithms/302331#302331 1 Answer by David Nehme for What is the best book for learning about Algorithms? David Nehme 2008-11-19T15:45:28Z 2008-11-19T15:45:28Z <p><a href="http://oreilly.com/catalog/9781565923980/toc.html" rel="nofollow">Mastering Algorithms in Perl</a> is not bad. It's not a python book, but it does a decent job of showing algorithms implemented in a high-level language.</p> http://stackoverflow.com/questions/300746/embedded-sql-in-c/300936#300936 1 Answer by David Nehme for embedded sql in C David Nehme 2008-11-19T03:45:44Z 2008-11-19T03:45:44Z <p>I just started using <a href="http://www.sqlite.org" rel="nofollow">sqllite</a>. Besides the good <a href="http://www.sqlite.org/c3ref/intro.html" rel="nofollow">documentation</a> for C++, SQLlist might be a nice thing to have because you can unit-test your code without being dependent on DB2 and it's really easy add with your code.</p> http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/300805#300805 1 Answer by David Nehme for Variables in ruby method names David Nehme 2008-11-19T02:03:03Z 2008-11-19T02:03:03Z <p>you can also do</p> <pre><code>device.instance_eval(attribute) </code></pre> http://stackoverflow.com/questions/300386/borland-c-ambiguity-with-std/300437#300437 5 Answer by David Nehme for Borland C++: Ambiguity with std David Nehme 2008-11-18T22:46:10Z 2008-11-18T22:46:10Z <p>You probably have </p> <pre><code>#include &lt;cstring&gt; </code></pre> <p>and </p> <pre><code>#include &lt;string.h&gt; </code></pre> <p>and a </p> <pre><code>using namespace std; </code></pre> <p>in your code somewhere. cstring declares std::strcmp, and string.h declares strcmp. That is causing the ambiguity. If you could avoid doing all 3 of these things, that would probably take care of your problem.</p> http://stackoverflow.com/questions/297035/sorting-algorithm-for-a-non-comparison-based-sort-problem/297079#297079 7 Answer by David Nehme for Sorting algorithm for a non-comparison based sort problem? David Nehme 2008-11-17T21:49:16Z 2008-11-18T06:44:36Z <p>This is actually more than a sorting problem. It's a single-machine scheduling problem with release dates. Depending on what you are trying to do, the problem might be NP-Hard. For example, if you are trying to mimimize the weighted-sum of the completion times (the weight being inversely proportional to the priority), the the problem is <a href="http://www.lix.polytechnique.fr/~durr/query/search.php?a1=1&amp;a2=%3B&amp;a4=%3B&amp;a3=&amp;b1=r_i&amp;b3=&amp;b7=&amp;b4=&amp;b5=&amp;b6=&amp;b8=&amp;c=sum+w_iC_i&amp;problem=1|r_i|sum+w_iC_i" rel="nofollow">categorized</a> as</p> <pre><code>1|ri;pmtn|Σ wiCi </code></pre> <p>and is NP-hard. There are numerous <a href="http://www-math.mit.edu/~goemans/GoemansQSSW-2002-SingleMachineSchedulingWithReleaseDates.pdf" rel="nofollow">papers</a> on this topic, but it might be more than what you need.</p> <p>In your case, you never want a solution with gaps, so what you might just need to do is a simple discrete-event simulation ( O(n log(n)) ) time. You need to store released_jobs as a priority queue.</p> <pre><code>unreleased_jobs = jobs // sorted list of jobs, by release date released_jobs = {} // priority queue of jobs, by priority scheduled_jobs = {} // simple list while (!unreleased_jobs.empty() || !released_jobs.empty()) { while (unreleased_jobs.top().earliestTime &lt;= t) { released_jobs.push(unreleased_jobs.pop()) } if (!released_jobs.empty()) { next_job = released_jobs.pop(); scheduled_jobs.push_back(next_job) t = t + next_job.duration } else { // we have a gap t = unreleased_jobs.top().earliestTime } } </code></pre> <p>One problem is that you might have a low-priority job with a release time just before a short, high-priority job, but it will produce a schedule with the property that there are no gaps (if a schedule with no gaps is possible).</p> http://stackoverflow.com/questions/297834/recruitment-most-important-perks-to-lure-you-away/297881#297881 0 Answer by David Nehme for Recruitment: most important perks to lure you away? David Nehme 2008-11-18T04:45:51Z 2008-11-18T04:45:51Z <p>I had tool a job for a major US airline. They usually have flight benefits: you can fly on any flight as long as there was space on the plane after all the paying passengers were on. Pretty sweet at the time (spent a few weekends in Europe). It was actually a pretty fun job too.</p> http://stackoverflow.com/questions/1142763/looking-joining-c-c-qt-projects Comment by David Nehme on looking joining c++ / c / Qt projects David Nehme 2009-07-17T12:24:31Z 2009-07-17T12:24:31Z Exact dup, <a href="http://stackoverflow.com/questions/1106082/open-source-project-for-c-developer/1106176#1106176" rel="nofollow" title="open source project for c developer">stackoverflow.com/questions/1106082/&hellip;</a> http://stackoverflow.com/questions/1106082/open-source-project-for-c-developer/1106176#1106176 Comment by David Nehme on Open source project for c++ developer? David Nehme 2009-07-16T13:30:46Z 2009-07-16T13:30:46Z Can you tell us something about Qt Creator and why it's a good one to try to start with? http://stackoverflow.com/questions/1038055/what-algorithm-can-i-apply-to-this-dag Comment by David Nehme on What algorithm can I apply to this DAG? David Nehme 2009-06-24T12:50:59Z 2009-06-24T12:50:59Z why is a depth-first-search &quot;horribly inefficient? http://stackoverflow.com/questions/997141/template-functor-error-in-g Comment by David Nehme on Template functor error in g++ David Nehme 2009-06-15T17:41:52Z 2009-06-15T17:41:52Z do you have the exact include files and version of gcc you used? http://stackoverflow.com/questions/383728/can-i-reduce-the-computational-complexity-of-this Comment by David Nehme on Can I reduce the computational complexity of this? David Nehme 2008-12-20T20:55:33Z 2008-12-20T20:55:33Z You are calling this numerous times: for a lot of different values of n? Is their a pattern for the values of n? http://stackoverflow.com/questions/362928/open-source-c-library-for-vector-mathematics/362963#362963 Comment by David Nehme on Open source C++ library for vector mathematics David Nehme 2008-12-12T15:05:26Z 2008-12-12T15:05:26Z Besides being generally weak, the code in Numerical Recipes also has an odd license attached to its use. http://stackoverflow.com/questions/356090/how-to-compute-the-nth-root-of-a-very-big-integer-in-python Comment by David Nehme on How to compute the nth root of a very big integer in python David Nehme 2008-12-10T13:56:21Z 2008-12-10T13:56:21Z Do you mean pow(x, 1/n) ? http://stackoverflow.com/questions/318405/can-this-build-system-be-sped-up Comment by David Nehme on Can this build system be sped up? David Nehme 2008-11-25T18:36:20Z 2008-11-25T18:36:20Z Can you try to show us the directory tree you are using now? http://stackoverflow.com/questions/310000/cfront-for-c Comment by David Nehme on cfront for C++ David Nehme 2008-11-21T20:15:57Z 2008-11-21T20:15:57Z Are you asking is there any compiler that writes C code? http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308559#308559 Comment by David Nehme on Explaining computational complexity theory David Nehme 2008-11-21T16:54:26Z 2008-11-21T16:54:26Z There are better ways of exactly-solving many NP-Hard problems than the trial-and-error approach you describe. P != NP, only implies that there are no polynomial-time algorithms. http://stackoverflow.com/questions/298210/choosing-a-language-for-an-open-source-application Comment by David Nehme on Choosing a language for an Open Source application David Nehme 2008-11-18T15:12:31Z 2008-11-18T15:12:31Z you really need to say something about the program you are writing. For example, What's its domain? Are there performance criteria? Is this a desktop GUI application, server app, web app? http://stackoverflow.com/questions/297035/sorting-algorithm-for-a-non-comparison-based-sort-problem Comment by David Nehme on Sorting algorithm for a non-comparison based sort problem? David Nehme 2008-11-18T01:35:36Z 2008-11-18T01:35:36Z # There cannot be any gaps. (There are no holes to try and back fill.) Are you guaranteed that this is possible? For example, just these two events. Event a = new Event { duration = 4.0, earliestTime = 0.0 }; Event b = new Event {duration = 5.0, earliestTime = 6.0 }; http://stackoverflow.com/questions/297035/sorting-algorithm-for-a-non-comparison-based-sort-problem Comment by David Nehme on Sorting algorithm for a non-comparison based sort problem? David Nehme 2008-11-18T01:29:44Z 2008-11-18T01:29:44Z # There is a maximum duration the sum of all events that can fit in a list. &gt;&gt; what does this mean. Some of the events won't be scheduled? http://stackoverflow.com/questions/297035/sorting-algorithm-for-a-non-comparison-based-sort-problem/297079#297079 Comment by David Nehme on Sorting algorithm for a non-comparison based sort problem? David Nehme 2008-11-17T21:58:53Z 2008-11-17T21:58:53Z I mean this is akin to scheduling jobs on a single processor. I'm not referring to the code you will write to solve this. http://stackoverflow.com/questions/288217/forcing-something-to-be-destructed-last-in-c Comment by David Nehme on Forcing something to be destructed last in C++ David Nehme 2008-11-13T20:54:03Z 2008-11-13T20:54:03Z by &quot;3rd party kind of library&quot; do you mean you don't write &quot;main&quot;?