User David Nehme - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:54:26Zhttp://stackoverflow.com/feeds/user/14167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/259240/iterator-adapter-to-iterate-just-the-values-in-a-map/259377#2593776Answer by David Nehme for iterator adapter to iterate just the values in a map?David Nehme2008-11-03T17:36:49Z2009-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<typename T1, typename T2> T2& take_second(const std::pair<T1, T2> &a_pair)
{
return a_pair.second;
}
void run_map_value()
{
map<int,string> a_map;
a_map[0] = "zero";
a_map[1] = "one";
a_map[2] = "two";
copy( boost::make_transform_iterator(a_map.begin(), take_second<int, string>),
boost::make_transform_iterator(a_map.end(), take_second<int, string>),
ostream_iterator<string>(cout, "\n")
);
}
</code></pre>
http://stackoverflow.com/questions/252208/is-there-a-good-argument-for-software-patents7Is there a good argument for software patents?David Nehme2008-10-31T00:08:35Z2009-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-database5How do I create a sqllite3 in-memory database?David Nehme2008-11-20T05:16:51Z2009-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#1396983Answer by David Nehme for Merit of screencasts vs text-based documentation?David Nehme2008-09-26T14:03:30Z2009-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-perl4How do I read fixed-length records in Perl?David Nehme2009-01-02T16:57:44Z2009-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 (<FILE>) {
$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-access1ruby and accdb (ms access)David Nehme2009-07-13T15:37:44Z2009-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#11384841Answer by David Nehme for Getting started with Tcl TK?David Nehme2009-07-16T15:37:57Z2009-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-ruby2include guard in rubyDavid Nehme2009-07-13T15:01:05Z2009-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#11223310Answer by David Nehme for How to construct a static global variable in C++David Nehme2009-07-13T22:00:27Z2009-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#7308462Answer by David Nehme for How create file in C++ in a specific place in the PCDavid Nehme2009-04-08T16:43:58Z2009-04-14T16:43:14Z<pre><code>#include <stdio.h>
....
FILE *file;
file = fopen("c:/file.txt", "w");
</code></pre>
http://stackoverflow.com/questions/691994/startup-or-bigco/691998#6919984Answer by David Nehme for Startup or BigCo?David Nehme2009-03-28T01:52:46Z2009-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-liner2sas one-linerDavid Nehme2008-11-06T19:23:41Z2009-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#2622955Answer by David Nehme for Why isn't all government sponsored software open source?David Nehme2008-11-04T16:15:02Z2009-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-comments1Emacs mode multiline commentsDavid Nehme2009-01-31T17:27:06Z2009-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#4991670Answer by David Nehme for Which programming lanuages should I avoid learning because nobody will be using them in 5 years?David Nehme2009-01-31T17:00:30Z2009-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-dev3Subversion Repository on Linux DevDavid Nehme2009-01-04T18:07:49Z2009-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#3839910Answer by David Nehme for Can I find the file/linenumber where a method was defined?David Nehme2008-12-21T01:46:21Z2008-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 < 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#3350714Answer by David Nehme for What's the Easiest Way to Learn Programming?David Nehme2008-12-02T19:07:42Z2008-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#3246152Answer by David Nehme for How to restrain one's self from the overwhelming urge to rewrite everything?David Nehme2008-11-27T20:37:54Z2008-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#3185586Answer by David Nehme for defining structures globally in c++David Nehme2008-11-25T19:21:31Z2008-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#3184274Answer by David Nehme for Can this build system be sped up?David Nehme2008-11-25T18:34:37Z2008-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#3151401Answer by David Nehme for Growing as a system administratorDavid Nehme2008-11-24T19:19:12Z2008-11-24T19:19:12Z<p>Try reading <a href="http://books.google.com/books?id=umJJXsFGO14C&dq=system+administration+perl&pg=PP1&ots=YibvN4fwKe&source=bn&sig=UqCyfTGJ6gVGD-cnP8F7LLN0kgs&hl=en&sa=X&oi=book_result&resnum=4&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#3150851Answer by David Nehme for How to study design patterns?David Nehme2008-11-24T19:00:40Z2008-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#3031040Answer by David Nehme for How can I read lines from the end of file in Perl?David Nehme2008-11-19T19:47:14Z2008-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 ($. > 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 (<>) {} print $.;" filename.csv
</code></pre>
http://stackoverflow.com/questions/302270/what-is-the-best-book-for-learning-about-algorithms/302331#3023311Answer by David Nehme for What is the best book for learning about Algorithms?David Nehme2008-11-19T15:45:28Z2008-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#3009361Answer by David Nehme for embedded sql in CDavid Nehme2008-11-19T03:45:44Z2008-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#3008051Answer by David Nehme for Variables in ruby method namesDavid Nehme2008-11-19T02:03:03Z2008-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#3004375Answer by David Nehme for Borland C++: Ambiguity with stdDavid Nehme2008-11-18T22:46:10Z2008-11-18T22:46:10Z<p>You probably have </p>
<pre><code>#include <cstring>
</code></pre>
<p>and </p>
<pre><code>#include <string.h>
</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#2970797Answer by David Nehme for Sorting algorithm for a non-comparison based sort problem?David Nehme2008-11-17T21:49:16Z2008-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&a2=%3B&a4=%3B&a3=&b1=r_i&b3=&b7=&b4=&b5=&b6=&b8=&c=sum+w_iC_i&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 <= 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#2978810Answer by David Nehme for Recruitment: most important perks to lure you away?David Nehme2008-11-18T04:45:51Z2008-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-projectsComment by David Nehme on looking joining c++ / c / Qt projects David Nehme2009-07-17T12:24:31Z2009-07-17T12:24:31ZExact 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/…</a>http://stackoverflow.com/questions/1106082/open-source-project-for-c-developer/1106176#1106176Comment by David Nehme on Open source project for c++ developer?David Nehme2009-07-16T13:30:46Z2009-07-16T13:30:46ZCan 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-dagComment by David Nehme on What algorithm can I apply to this DAG?David Nehme2009-06-24T12:50:59Z2009-06-24T12:50:59Zwhy is a depth-first-search "horribly inefficient?http://stackoverflow.com/questions/997141/template-functor-error-in-gComment by David Nehme on Template functor error in g++David Nehme2009-06-15T17:41:52Z2009-06-15T17:41:52Zdo you have the exact include files and version of gcc you used?http://stackoverflow.com/questions/383728/can-i-reduce-the-computational-complexity-of-thisComment by David Nehme on Can I reduce the computational complexity of this?David Nehme2008-12-20T20:55:33Z2008-12-20T20:55:33ZYou 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#362963Comment by David Nehme on Open source C++ library for vector mathematicsDavid Nehme2008-12-12T15:05:26Z2008-12-12T15:05:26ZBesides 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-pythonComment by David Nehme on How to compute the nth root of a very big integer in pythonDavid Nehme2008-12-10T13:56:21Z2008-12-10T13:56:21ZDo you mean pow(x, 1/n) ? http://stackoverflow.com/questions/318405/can-this-build-system-be-sped-upComment by David Nehme on Can this build system be sped up?David Nehme2008-11-25T18:36:20Z2008-11-25T18:36:20ZCan you try to show us the directory tree you are using now?http://stackoverflow.com/questions/310000/cfront-for-cComment by David Nehme on cfront for C++David Nehme2008-11-21T20:15:57Z2008-11-21T20:15:57ZAre you asking is there any compiler that writes C code?http://stackoverflow.com/questions/308213/explaining-computational-complexity-theory/308559#308559Comment by David Nehme on Explaining computational complexity theoryDavid Nehme2008-11-21T16:54:26Z2008-11-21T16:54:26ZThere 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-applicationComment by David Nehme on Choosing a language for an Open Source applicationDavid Nehme2008-11-18T15:12:31Z2008-11-18T15:12:31Zyou 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-problemComment by David Nehme on Sorting algorithm for a non-comparison based sort problem?David Nehme2008-11-18T01:35:36Z2008-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-problemComment by David Nehme on Sorting algorithm for a non-comparison based sort problem?David Nehme2008-11-18T01:29:44Z2008-11-18T01:29:44Z# There is a maximum duration the sum of all events that can fit in a list. >> 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#297079Comment by David Nehme on Sorting algorithm for a non-comparison based sort problem?David Nehme2008-11-17T21:58:53Z2008-11-17T21:58:53ZI 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-cComment by David Nehme on Forcing something to be destructed last in C++David Nehme2008-11-13T20:54:03Z2008-11-13T20:54:03Zby "3rd party kind of library" do you mean you don't write "main"?