User Corey Trager - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:11:04Z http://stackoverflow.com/feeds/user/9328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812645/where-do-i-put-code-in-sinatra-ruby-web-framework-that-i-just-want-to-execute-o 0 Where do I put code in Sinatra (ruby web framework) that I just want to execute once? Corey Trager 2009-11-28T14:35:36Z 2009-12-01T14:29:42Z <p>I don't know if this is a ruby question or a Sinatra question, because I'm new to both. The following code does not work, and I understand why, because the first my_variable is local to its block. I just don't know the syntax for getting it right.</p> <pre><code>require 'rubygems' require 'sinatra' configure do my_variable = "world" end get '/' do "Hello " + my_variable end </code></pre> <p>EDIT1 - the following works, but then I guess I'm confused about the proper purpose of the configure block.</p> <pre><code>require 'rubygems' require 'sinatra' my_variable = "world" get '/' do "Hello " + my_variable end </code></pre> http://stackoverflow.com/questions/1772143/using-sinatra-and-mongodb-whats-the-recommended-way-to-keep-alive-the-mongod 3 Using Sinatra and MongoDB - what's the recommended way to "keep alive" the mongodb connection between http requests? Corey Trager 2009-11-20T17:43:19Z 2009-11-30T19:54:33Z <p>I've used ASP.NET and now I'm working on a Sinatra/MongoDB app. With ASP.NET architecture, the connection to the database a given request uses comes from a pool of connections that the ADO.NET manages. The connections are kept alive in the pool between requests so that the cost of building and tearing down the connection isn't paid for each http request.</p> <p>Is there a similar mechanism in a Sinatra MongoDB app, or will I need to connect/disconnect with each request? If there is a mechanism, what does the code look like?</p> <p>EDIT1: The following does NOT work. Each HTTP request that the browser sends hits the new.db line, including requests for css, js, jpeg files.</p> <pre><code>require 'mongo' include Mongo db = Mongo::Connection.new.db("MyDb") class MyApp &lt; Sinatra::Base get '/' do etc </code></pre> http://stackoverflow.com/questions/198707/what-if-any-printable-character-did-a-user-type-based-on-the-values-in-a-given 1 What, if any, printable character did a user type based on the values in a given System.Windows.Forms.KeyEventArgs? Corey Trager 2008-10-13T19:17:59Z 2009-11-26T02:40:39Z <p>As a workaround for a problem, I think I have to handle KeyDown events to get the printable character the user actually typed.</p> <p>KeyDown supplies me with a KeyEventArgs object with the properities KeyCode, KeyData, KeyValue, Modifiers, Alt, Shift, Control.</p> <p>My first attempt was just to consider the KeyCode to be the ascii code, but KeyCode on my keyboard is 46, a period ("."), so I end up printing a period when the user types the delete key. So, I know my logic is inadequate.</p> <p>(For those who are curious, the problem is that I have my own combobox in a DataGridView's control collection and somehow SOME characters I type don't produce the KeyPress and TextChanged ComboBox events. These letters include Q, $, %....</p> <p>This code will reproduce the problem. Generate a Form App and replace the ctor with this code. Run it, and try typing the letter Q into the two comboxes.</p> <pre><code>public partial class Form1 : Form { ComboBox cmbInGrid; ComboBox cmbNotInGrid; DataGridView grid; public Form1() { InitializeComponent(); grid = new DataGridView(); cmbInGrid = new ComboBox(); cmbNotInGrid = new ComboBox(); cmbInGrid.Items.Add("a"); cmbInGrid.Items.Add("b"); cmbNotInGrid.Items.Add("c"); cmbNotInGrid.Items.Add("d"); this.Controls.Add(cmbNotInGrid); this.Controls.Add(grid); grid.Location = new Point(0, 100); this.grid.Controls.Add(cmbInGrid); } </code></pre> http://stackoverflow.com/questions/117755/is-there-a-faster-way-of-getting-a-char-from-a-variantt-than-const-charbs 3 Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t) Corey Trager 2008-09-22T21:28:08Z 2009-11-25T13:27:18Z <p>Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?</p> <pre><code> _variant_t var = pRs-&gt;Fields-&gt;GetItem(i)-&gt;GetValue(); if (V_VT(&amp;var) == VT_BSTR) { char* p = (const char*) (_bstr_t) var; </code></pre> http://stackoverflow.com/questions/1776099/how-can-my-ruby-time-now-timings-be-so-low-when-my-ping-timings-are-so-high 0 How can my Ruby "Time.now" timings be so low when my "ping" timings are so high? Corey Trager 2009-11-21T17:20:42Z 2009-11-22T04:44:37Z <p>I'm using MongoDB for the first time and trying to time its performance. I'm running ruby on a VirtualBox Ubuntu 9.10 guest with a Windows 7 64-bit host. MongoDB is on a remote host, not on my lan buit somewhere in the internet cloud.</p> <p>Here's my code:</p> <pre><code>time1 = Time.now rows = coll.find(some_criteria) puts ((Time.now - time1) * 1000).to_s </code></pre> <p>The problem is, the time is so small, I don't believe what I'm seeing. I'm seeing times around 50, 100, 200 <strong>MICRO</strong>seconds, while ping times between my computer and the remote mongo computer are around 40 <strong>MILLI</strong>seconds. Am I misunderstanding the units? How can my timings be so low when the ping is so high?</p> http://stackoverflow.com/questions/1371715/how-to-cancel-radiobutton-or-checkbox-checked-change/1719522#1719522 0 Answer by Corey Trager for How to cancel RadioButton or CheckBox checked change Corey Trager 2009-11-12T02:31:23Z 2009-11-12T02:31:23Z <p>Code demo's AutoCheck, adds a confirmation prompt to Click event.</p> <blockquote> <pre><code>public partial class Form1 : Form { public Form1() { InitializeComponent(); this.checkBox1.AutoCheck = false; this.checkBox1.Click += new System.EventHandler(this.checkBox1_Click); } private void checkBox1_Click(object sender, EventArgs e) { CheckBox checkBox = (CheckBox)sender; if (!checkBox.Checked) { DialogResult dialogResult = MessageBox.Show( "Are you sure?", "my caption", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { checkBox.Checked = true; } } else { checkBox.Checked = false; } } } </code></pre> </blockquote> http://stackoverflow.com/questions/1694184/what-do-you-look-for-in-a-bug-tracker/1694811#1694811 0 Answer by Corey Trager for What do you look for in a bug tracker? Corey Trager 2009-11-07T23:32:42Z 2009-11-07T23:32:42Z <p>(Copy/Pasted from "Lasse V. Karlsen"'s answer)</p> <p>You want inhouse developers and testers to take any and all things they notice in the software and plug it into the tool, even if they're currently working on something else. For this to happen, the tool must be so easy to use that it stays out of the way and just takes your data. The worst bugs are those you don't know about.</p> <p>(End of Copy/Paste)</p> <p>Even good, conscientious testers, if they are focused on testing component A but happened to stumble on a bug in component B, might not actually enter that bug if there is a lot of friction in the bug tracker. Friction means, required fields. It's not that the testers are bad or lazy - it's just how the human mind works. We focus. We don't see the guy in the <a href="http://www.telegraph.co.uk/science/science-news/3322642/Did-you-see-the-gorilla.html" rel="nofollow">gorilla suit</a>.</p> <p>The Joel/FogBugz philosophy of NO required fields is the right one (Also the philosophy of my own BugTracker.NET). You almost always can gather the details later - what os, what version, what browser, etc.</p> <p>Also, take a look at "<a href="http://bugshooting.com/web/" rel="nofollow">Bug Shooting</a>", if your app has a GUI. You want to make it as easy as possible for the testers to take a screenshot and get it into the bug tracker, and that's a great tool for it. Pick a tracker that works with Bug Shooting or has its own dedicated screen shot tool.</p> http://stackoverflow.com/questions/1681500/what-infrastructure-tools-do-you-recommend-for-helping-an-open-source-user-commun 0 What infrastructure tools do you recommend for helping an open source user community share non-mainline code with each other? Corey Trager 2009-11-05T15:58:03Z 2009-11-05T16:21:36Z <p>I wrote an open source app (BugTracker.NET) and I host it at Sourceforge. It doesn't have a plugin architecture per se, but there are ways to tweak and extend it. For example, a prettier css file, or a useful SQL snippet. People ask me, "How can I share this with other BugTracker.NET users?" and so far I've just been telling them to put it in the Sourceforge RFE tracker. Not that useful.</p> <p>So, I want to set something up, maybe like a wiki, maybe, but with the ability to upload files? Something that can function without too much of my involvement, but that I can still moderate to get rid of spam, I guess?</p> <p>I'm not talking about bug fixes that I want to apply to the mainline. I'm talking about things I would <em>NOT</em> merge into the mainline, but that I would still want to make available to others.</p> http://stackoverflow.com/questions/1650378/what-are-the-real-steps-for-installing-sql-server-express-2008-and-management-stu -1 What are the REAL steps for installing SQL Server Express 2008 and Management Studio Express? Corey Trager 2009-10-30T15:09:13Z 2009-10-30T20:47:31Z <p>On a clean windows machine I installed Web Dev Express 2008. That also installs SQL Server Express 2008. I just wanted to add SQL Server Management Studio Express (SSMSE) 2008. I had problems, and I'm not the only one:<br /> <a href="http://msdn.microsoft.com/en-us/library/ms365247.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms365247.aspx</a></p> <p>The msdn page has a lot of suggestions and a lot of people who say the suggestions don't work, but as Jeff and Joel would say, the forum format doesn't work well at pointing at the definitive answer, so I am hoping the StackOverflow wiki/voting format will be better at having the real solution bubble up to the top.</p> <p>BTW, what I ended up doing was uninstalling all the 2008 stuff that Web Dev installed, and then I downloaded the 2005 file and that went easy. Possibly, after uninstalling what Web Dev installed I could have been successful with the 2008 stuff too, but i didn't try. </p> <p>This was all on Windows 7 pro, but the way, but I had a similar traumatic experience on XP. </p> <p>EDIT1 - Somebody <em>DOWN</em> voted this? But... why? This is a real programming issue that many of struggled with and there is no canonical answer. This is THE place for community vetted/voted canonical answers!</p> <p>Some quotes from comments at the MSDN download page: </p> <p>"Thoroghly confusing and no clear Final Answers? Someone needs to summarize the results of the previous postings on this page and put an authoritative stamp on some of the findings and declarations"</p> <p>"Like everyone else posting here, I have gone through this entire cycle and it is hugely frustrating". </p> <p>"you have taken something that was working well and had NO need to be this complex and managed to completely confuse everyone that is using it and make it a general PITA"</p> http://stackoverflow.com/questions/19883/is-there-a-bug-issue-tracking-system-which-integrates-with-mercurial/1619708#1619708 1 Answer by Corey Trager for Is there a bug/issue tracking system which integrates with Mercurial? Corey Trager 2009-10-25T01:39:51Z 2009-10-25T01:39:51Z <p><a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">BugTracker.NET</a> now supports Mercurial integration in the same way it supports Subversion and git. BugTracker.NET is a free, open source, ASP.NET <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">bug tracking</a> system.</p> <p>Other free, open source bug trackers that support Mercurial: </p> <ul> <li>Trac - <a href="http://trac.edgewall.org/wiki/TracMercurial" rel="nofollow">http://trac.edgewall.org/wiki/TracMercurial</a></li> <li>Redmine - <a href="http://www.redmine.org/wiki/1/RedmineRepositories" rel="nofollow">http://www.redmine.org/wiki/1/RedmineRepositories</a></li> <li>Roundup - <a href="http://mercurial.selenic.com/wiki/Hook" rel="nofollow">http://mercurial.selenic.com/wiki/Hook</a>. The Mercurial development team themselves use Roundup.</li> </ul> http://stackoverflow.com/questions/1619236/mercurial-hg-syntax-equivalent-of-gits-meaning-the-commit-prior-to-the-sp 1 mercurial (hg) syntax equivalent of git's "^", meaning the commit PRIOR to the specified commit. Corey Trager 2009-10-24T21:45:59Z 2009-10-24T23:10:55Z <p>In git, for a given commit X, X^ means the commit prior to X.</p> <p>Is there an hg equivalent?</p> http://stackoverflow.com/questions/1604865/why-does-mercurial-hg-log-style-paper-give-me-permission-denied-error 2 Why does mercurial "hg log --style paper" give me "permission denied" error? Corey Trager 2009-10-22T03:24:22Z 2009-10-22T04:24:38Z <p>hg log works.<br /> hg log --style does not work. </p> <pre> C:\temp\myhg><b>"c:\program files\mercurial\hg" log</b> changeset: 0:9c62e300d833 user: Administrator@biostar date: Wed Oct 21 04:57:41 2009 -0500 summary: 124 my first commit C:\temp\myhg><b>"c:\program files\mercurial\hg" log --style paper</b> abort: Permission denied: c:\program files\mercurial\templates\paper </pre> <p>As long as you're reading, here's the big picture: I want to get log format in an easy-to-parse format. If I use a --template {files} with the the log command, and if there are spaces in the filenames, the output isn't friendly to parsing. So, according to the docs, I need to use a "style". But, I can't even get as far as using the styles that install with Mercurial.</p> <p>I did a vanilla install of Mercurial on Windows XP and have been able to run the init, add, commit, and log commands with no problems.</p> http://stackoverflow.com/questions/229303/are-there-any-good-issue-tracking-systems-that-can-track-git-commits-branches/1584048#1584048 2 Answer by Corey Trager for Are there any good Issue Tracking systems that can track git commits/branches Corey Trager 2009-10-18T04:56:14Z 2009-10-18T13:44:17Z <p>Pretty much every bug tracker that currently has subversion integration already has or will soon have git integration. Git is too important to be ignored, and the work to adapt code that handles subversion integration to git isn't that hard.</p> <ul> <li><a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">BugTracker.NET</a> is a free, open-source, web-based <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">bug tracking</a> system that has git integration (I'm the author). The git integration looks pretty much like the subversion integration, documented <a href="http://ifdefined.com/doc%5Fbug%5Ftracker%5Fsubversion.html" rel="nofollow">here</a>.</li> </ul> <p>You can read more about the philosophy that guided BugTracker.NET/Git integration in this Stackoverflow question: <a href="http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows">http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows</a></p> <p>Other good, free, open-source bug trackers with git integration:</p> <ul> <li><p><a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> is very popular and also integrates with git:<br /> <a href="http://trac-hacks.org/wiki/TracGitPlugin" rel="nofollow">http://trac-hacks.org/wiki/TracGitPlugin</a></p></li> <li><p><a href="http://www.redmine.org/" rel="nofollow">Redmine</a> is similar to Trac, but written in Rails and with multiple project support out of the box:<br /> <a href="http://www.redmine.org/boards/2/topics/2821" rel="nofollow">http://www.redmine.org/boards/2/topics/2821</a></p></li> <li><p><a href="http://www.mantisbt.org/" rel="nofollow">Mantis</a> - unlike BugTracker.NET, Trac, and Redmine, the Mantis coders themselves are using git as <a href="http://www.mantisbt.org/development.php" rel="nofollow">their official vcs</a>:<br /> <a href="http://leetcode.net/blog/2009/01/integrating-git-svn-with-mantisbt/" rel="nofollow">http://leetcode.net/blog/2009/01/integrating-git-svn-with-mantisbt/</a><br /> (But I can't personally recommend Mantis. It's the one bug tracker I actively dislike, because its UI is so busy with <a href="http://www.mantisbt.org/demo/view.php?id=7007" rel="nofollow">so many fields</a>).</p></li> </ul> <p>I don't have any experience with the following, but rather than centralized bug trackers adapted to work with git, these trackers were written with the git paradigm in mind from the start. All free, open-source:</p> <ul> <li><p><a href="http://code.google.com/p/gerrit/" rel="nofollow">gerrit</a> is "Web based code review and project management for Git based projects." from the Google Android team. It's extremely git-centric and coder-centric.</p></li> <li><p><a href="http://ditz.rubyforge.org/" rel="nofollow">ditz</a>, <a href="http://www.stackfoundry.com/dbug/" rel="nofollow">dbug</a>, <a href="http://wiki.github.com/jwiegley/git-issues" rel="nofollow">git-issues</a> are all "distributed bug trackers". </p></li> </ul> http://stackoverflow.com/questions/40495/bug-tracker-setup-with-git-integration/1584034#1584034 0 Answer by Corey Trager for Bug tracker setup with Git integration? Corey Trager 2009-10-18T04:46:49Z 2009-10-18T05:36:53Z <p><a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">BugTracker.NET</a> is a web-based <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">bug tracking</a> system that has git integration. The web pages for the git integration look pretty much like the ones for the subversion integration, documented <a href="http://ifdefined.com/doc%5Fbug%5Ftracker%5Fsubversion.html" rel="nofollow">here</a>.</p> <p>You can read more about the philosophy that guided BugTracker.NET/Git integration in this Stackoverflow question: <a href="http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows">http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows</a></p> <p>See also this question: <a href="http://stackoverflow.com/questions/229303/are-there-any-good-issue-tracking-systems-that-can-track-git-commits-branches">http://stackoverflow.com/questions/229303/are-there-any-good-issue-tracking-systems-that-can-track-git-commits-branches</a></p> http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows 7 How does bug tracker/version control integration work with typical git workflows? Corey Trager 2009-09-27T18:43:15Z 2009-10-18T04:52:42Z <p>Here's are examples of git workflows: </p> <ul> <li><a href="http://wiki.github.com/bard/sameplace/typical-git-workflow" rel="nofollow">http://wiki.github.com/bard/sameplace/typical-git-workflow</a></li> <li><a href="http://www.nabble.com/Git-workflow-overview-td16340337.html" rel="nofollow">http://www.nabble.com/Git-workflow-overview-td16340337.html</a></li> <li><a href="http://osteele.com/archives/2008/05/my-git-workflow" rel="nofollow">http://osteele.com/archives/2008/05/my-git-workflow</a></li> </ul> <p>Let's say you wanted to take advantage of bug tracker integration with your version control system. Where/how would that fit into these workflows. What would you actually see in the tracker?</p> <p>I'm the author of BugTracker.NET which like many other bug trackers (Trac, Redmine, FogBugz) integrates with svn. We all do it more or less the same way. But with git, I have trouble imagining what integration with git would look like.</p> <p>EDIT: I've taken a look at one attempt at <a href="http://github.com/johnreilly/github-fogbugz" rel="nofollow">github-fogbugz</a> integration, but even the author of that says "It's fairly obvious that FogBugz was written for a more traditional CVS/SVN SCM system in mind. As such, the commit list display doesn't really jive with git".</p> <p>EDIT2: A thread about <a href="http://www.redmine.org/boards/1/topics/1702" rel="nofollow">Redmine/git workflow</a>: It seems that the most typical setup is that Redmine works with a local clone of whatever is considered to be the "central" repository, so it sees changes when they make it to this clone. Triggers or scheduled jobs automate the pushing to Redmine's clone.</p> <p>EDIT3: Seems even with linux and Linus, there ultimately IS a main git repository that could be considered the benevolent dictator repository: See <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=summary" rel="nofollow">http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=summary</a></p> <p>EPILOGUE: Thanks everybody. My <a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">BugTracker.NET</a> now includes git integration, according to the guidance you folks gave me.</p> http://stackoverflow.com/questions/1581158/what-is-git-syntax-for-getting-just-the-unified-diff-of-how-a-single-commit-x-c 1 What is "git" syntax for getting just the unified diff of how a single commit X changed a single file Y? Corey Trager 2009-10-17T01:35:13Z 2009-10-17T16:32:34Z <p>I'm writing code to programmatically run git commands and learning git at the same time. Am I mis-reading the man pages or is what I want to do not doable? </p> <p>The following will tell me how MYFILE changed between the two commits: </p> <blockquote> <p>git diff COMMIT1..COMMIT2 -- MYFILE</p> </blockquote> <p>Good.</p> <p>But, let's say I just want to ask how COMMITX changed the file, without specifying the prior commit. In my imagination the syntax would be something like this:</p> <pre><code>git diff COMMITX -- MYFILE </code></pre> <p>or this:</p> <pre><code>git diff COMMITX^..COMMITX -- MYFILE </code></pre> <p>But the above commands don't work (for me).</p> <p>The following works in the sense that it gives me the unified diff showing how that COMMITX changed MYFILE, but it also includes other stuff I have to strip out - like author, date, the checkin msg. Stripping out the extra stuff is easy, but it feels like it's something I shouldn't have to be doing. Does the command exist? Am I misunderstanding something simple?</p> <blockquote> <pre><code>git show COMMITX -- MYFILE </code></pre> </blockquote> <p>EDIT1: I'm showing here the actual output from my "git bash" window. I changed the "show" to "diff", and got no output.</p> <pre> $ <b>git show 789e9 -- dir1/file3.txt</b> commit 789e948bce733dab9605bf8eb51584e3b9a2eba3 Author: corey Date: Sun Oct 11 21:54:14 2009 -0500 my msg diff --git a/dir1/file3.txt b/dir1/file3.txt index a351259..cf2bd35 100644 --- a/dir1/file3.txt +++ b/dir1/file3.txt @@ -4,5 +4,7 @@ c ddd e f +a new line +another new line g h Administrator@BIOSTAR /c/temp/mygit (master) $ <b>git diff 789e9 -- dir1/file3.txt</b> Administrator@BIOSTAR /c/temp/mygit (master) </pre> http://stackoverflow.com/questions/1511290/in-an-isapi-filter-what-is-a-good-approach-for-a-common-logfile-for-multiple-pro/1581034#1581034 1 Answer by Corey Trager for In an ISAPI filter, what is a good approach for a common logfile for multiple processes? Corey Trager 2009-10-17T00:31:46Z 2009-10-17T13:09:09Z <p>At first I was going to say that I like your current approach best, because each process shares nothing, and then I realized, that, well, they are probably all sharing the same hard drive underneath. So, there's still a bottleneck where contention occurs. Or maybe the OS and hard drive controllers are really smart about handling that?</p> <p>I think what you want to do is have the writing of the log not slow down the threads that are doing the real work. </p> <p>So, run another process on the same machine (lower priority?) which actually writes the log messages to disk. Communicate to the other process using not UDP as suggested, but rather memory that the processes share. Also known, confusingly, as a memory mapped file. More about <a href="http://msdn.microsoft.com/en-us/library/ms810613.aspx" rel="nofollow">memory mapped files</a>. At my company, we have found memory mapped files to be much faster than loopback TCP/IP for communication on the same box, so I'm assuming it would be faster than UDP too.</p> <p>What you actually have in your shared memory could be, for starters, an std::queue where the pushs and pops are protected using a mutex. Your ISAPI threads would grab the mutex to put things into the queue. The logging process would grab the mutex to pull things off of the queue, release the mutex, and then write the entries to disk. The mutex is only protected the updating of shared memory, not the updating of the file, so it seems in theory that the mutex would be held for a briefer time, creating less of a bottleneck.</p> <p>The logging process could even re-arrange the order of what it's writing to get the timestamps in order.</p> <p>Here's another variation: Contine to have a separate log for each process, but have a logger thread within each process so that the main time-critical thread doesn't have to wait for the logging to occur in order to proceed with its work.</p> <p>The problem with everything I've written here is that the whole system - hardware, os, the way multicore CPU L1/L2 cache works, your software - is too complex to be easily predictable by a just thinking it thru. Code up some simple proof-of-concept apps, instrument them with some timings, and try them out on the real hardware.</p> http://stackoverflow.com/questions/1536205/running-another-program-in-windows-bat-file-and-not-create-child-process/1569941#1569941 3 Answer by Corey Trager for Running another program in Windows bat file and not create child process. Corey Trager 2009-10-15T02:00:58Z 2009-10-16T16:41:59Z <p>Synchronous. The second notepad won't launch until you close the first.</p> <pre><code>notepad.exe c:\temp\a.txt notepad.exe c:\temp\b.txt </code></pre> <p>Asynchronous: The second notepad will launch even if you haven't closed the first.</p> <pre><code>start notepad.exe c:\temp\a.txt start notepad.exe c:\temp\b.txt </code></pre> <p>More info about the start command:<br /> <a href="http://www.robvanderwoude.com/ntstart.php" rel="nofollow">http://www.robvanderwoude.com/ntstart.php</a></p> <p><strong>EDIT</strong>: The following comment was made elsewhere by @zhongshu, the original poster. I'm only copying it here: </p> <blockquote> <p>start cmd /c doesn't work because SVN post-commit hook will wait for the hook and the child process created by the hook exit. It's the design of SVN. I have found a solution, Please refer: <a href="http://svn.haxx.se/users/archive-2008-11/0301.shtml" rel="nofollow">http://svn.haxx.se/users/archive-2008-11/0301.shtml</a></p> </blockquote> <p><strong>Assuming that he knows what he's talking about, I'm wrong and...undeserving.</strong></p> http://stackoverflow.com/questions/1543107/what-is-the-cleverest-ui-feature-you-have-seen-in-a-website/1569910#1569910 4 Answer by Corey Trager for What is the cleverest UI feature you have seen in a website? Corey Trager 2009-10-15T01:48:33Z 2009-10-15T01:48:33Z <p><a href="http://pandora.com" rel="nofollow">Pandora</a>. Of course, I was wowed by uncannily it could pick unfamiliar music I would like, but the overall beauty and smoothness of the interface also made the whole first time experience a memorable pleasure. And it was easy, too, of course.</p> <p>One of the features I specifically remember - and it's still there - is the way the title card of the next song to be played peeks out a little bit from the right edge of the window. A subtle tease that there's more to come.</p> <p>(This whole description sounded a bit more sexual than I meant it to...)</p> <p><img src="http://img99.imageshack.us/img99/2669/pandorab.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1504152/how-to-evaluate-a-search-engine/1556602#1556602 0 Answer by Corey Trager for How to evaluate a search engine? Corey Trager 2009-10-12T20:11:28Z 2009-10-12T20:11:28Z <p>I have had to test a search engine professionally. This is what I did.</p> <p>The search included fuzzy logic. The user would type into a web page "Kari Trigger", and the search engine would retrieve entries like "Gary Trager", "Trager, C", "Corey Trager", etc, each with a score from 0->100 so that I could rank them from most likely to least likely. </p> <p>First, I re-architected the code so that it could be executed removed from the web page, in a batch mode using a big file of search queries as input. For each line in the input file, the batch mode would write out the top search result and its score. I harvested thousands of actual search queries from our production system and ran them thru the batch setup in order to establish a baseline.</p> <p>From then on, each time I modified the search logic, I would run the batch again and then diff the new results against the baseline. I also wrote tools to make it easier to see the interesting parts of the diff. For example, I didn't really care if the old logic returned "Corey Trager" as an 82 and the new logic returned it as an 83, so my tools would filter those out.</p> <p>I could not have accomplished as much by hand-crafting test cases. I just wouldn't have had the imagination and insight to have created good test data. The real world data was so much richer. </p> <p>So, to recap: </p> <p>1) Create a mechanism that lets you diff the results of running new logic versus the results of prior logic. 2) Test with lots of realistic data.<br /> 3) Create tools that help you work with the diff, filtering out the noise, enhancing the signal.</p> http://stackoverflow.com/questions/1552041/how-can-i-shell-out-of-an-asp-net-page-and-execute-a-git-command 0 How can I shell out of an ASP.NET page and execute a git command? Corey Trager 2009-10-11T23:05:07Z 2009-10-12T00:54:11Z <p>I want my ASP.NET page to shell out and execute git commands. I put the commands in a bat file which works:</p> <pre><code>REM cd to the git repo folder cd c:\temp\mygitrepo "c:\Program Files\Git\Bin\git.exe" show c090dc4b8b1b3512c1b5363c371e21d810d02f54 -- myfile.txt </code></pre> <p>If I run my .bat file from a cmd prompt, no problem. If I run it using System.Diagnostics.Process.Start, I get this error:<br /> RUNTIME_PREFIX requested, but prefix computation failed. Using static fallback</p> <p>The error is coming from this git file: <a href="http://github.com/git/git/blob/master/exec%5Fcmd.c" rel="nofollow">http://github.com/git/git/blob/master/exec%5Fcmd.c</a></p> <p>I use exactly the same technique to run svn.exe commands, no problem.</p> <p>EDIT 1: From the <a href="http://www.mail-archive.com/msysgit@googlegroups.com/msg01231.html" rel="nofollow">thread here</a> I've learned that msysgit installs some files in a location associated with the current user, me, instead of all users. The IIS web server is running under another user account. I tried copying some of the git files that caught my eye, like .gitconfig, to other users (in Documents and Settings). No luck. So, I have switched my focus to getting IIS to impersonate me when it launches the git command.</p> http://stackoverflow.com/questions/1547005/how-can-i-get-my-git-msysgit-on-windows-post-commit-script-to-invoke-my-python 1 How can I get my git (msysgit on windows) post-commit script to invoke my python script as python rather than bash? Corey Trager 2009-10-10T03:55:52Z 2009-10-10T06:49:29Z <p>I wrote a post commit script in python, "c:\myfolder\myscript.py". I want to invoke it from the post-commit script. This doesn't find it: </p> <pre><code>#!/bin/sh c:\myfolder\myscript.py </code></pre> <p>bash thinks the command c:myfoldermyscript.py - the slashes get dropped.</p> <p>So, I tried forward slashes: </p> <pre><code>#!/bin/sh c:/myfolder/myscript.py </code></pre> <p>But then it seems like bash thinks my .py file is itself a bash script, and so I get bash errors as it mistakenly tries to interpret it.</p> http://stackoverflow.com/questions/1547005/how-can-i-get-my-git-msysgit-on-windows-post-commit-script-to-invoke-my-python/1547019#1547019 0 Answer by Corey Trager for How can I get my git (msysgit on windows) post-commit script to invoke my python script as python rather than bash? Corey Trager 2009-10-10T04:03:14Z 2009-10-10T04:03:14Z <p>Adding the following, the path to my python interpreter, as the first line of my python script worked: </p> <pre> #!C:/apps/Python25/python </pre> <p>Are there better ways?</p> http://stackoverflow.com/questions/1525827/setting-up-bugtracker-net-complete-noob/1529262#1529262 0 Answer by Corey Trager for Setting up BugTracker.NET complete noob Corey Trager 2009-10-07T02:52:57Z 2009-10-07T02:52:57Z <p>The <a href="http://ifdefined.com/README.html#connection" rel="nofollow">BugTracker.NET documentation</a> includes this section on connection strings:</p> <p>The hardest part ...for most people is getting the ConnectionString to work.</p> <p>For help, see these links, the "SqlConnection (.NET)" sections<br /> <a href="http://www.connectionstrings.com/?carrier=sqlserver2005" rel="nofollow">http://www.connectionstrings.com/?carrier=sqlserver2005</a><br /> <a href="http://www.sqlstrings.com/SQL-Server-connection-strings.htm" rel="nofollow">http://www.sqlstrings.com/SQL-Server-connection-strings.htm</a><br /> <a href="http://articles.techrepublic.com.com/5100-3513%5F11-6084879.html" rel="nofollow">http://articles.techrepublic.com.com/5100-3513%5F11-6084879.html</a> </p> <p>Another thing you might try to get the connection string right is the following:</p> <ol> <li><p>Create a new blank file and name it test.udl.</p></li> <li><p>Double click on it, and a "Data Link Properties" dialog should appear.</p></li> <li><p>On "Providers" tab, select "Microsoft OLE DB Provider for SQL Server" or "SQL Native Client"</p></li> <li><p>On "Connections" tab, try various settings and use the "Test Connection" button to test them. Click "Ok" when it works.</p></li> <li><p>Open the test.udl file in Notepad and copy the line that starts with "Provider=" into your Web.config "ConnectionString" value, BUT delete the little part that says "Provider=SQLNCLI.1;" </p></li> </ol> http://stackoverflow.com/questions/1521599/how-to-submit-bugs-to-bugtracker-net-from-c-application/1525280#1525280 1 Answer by Corey Trager for How to submit bugs to BugTracker.NET from C# application? Corey Trager 2009-10-06T12:23:03Z 2009-10-06T12:23:03Z <p>Below is the code from BugTracker.NET's service which reads emails from a pop3 server and then submits them as bugs to the insert_bug.aspx page. But it doesn't have to be this complicated.</p> <p>Just invoking this URL will also work: </p> <pre> http:\\YOUR-HOST\insert_bug.aspx?username=YOU&password=YOUR-PASSWORD&short_desc=This+is+a+bug </pre> <p>The more complicated code:</p> <pre> string post_data = "username=" + HttpUtility.UrlEncode(ServiceUsername) + "&password=" + HttpUtility.UrlEncode(ServicePassword) + "&projectid=" + Convert.ToString(projectid) + "&from=" + HttpUtility.UrlEncode(from) + "&short_desc=" + HttpUtility.UrlEncode(subject) + "&message=" + HttpUtility.UrlEncode(message); byte[] bytes = Encoding.UTF8.GetBytes(post_data); // send request to web server HttpWebResponse res = null; try { HttpWebRequest req = (HttpWebRequest) System.Net.WebRequest.Create(Url); req.Credentials = CredentialCache.DefaultCredentials; req.PreAuthenticate = true; //req.Timeout = 200; // maybe? //req.KeepAlive = false; // maybe? req.Method = "POST"; req.ContentType= "application/x-www-form-urlencoded"; req.ContentLength=bytes.Length; Stream request_stream = req.GetRequestStream(); request_stream.Write(bytes,0,bytes.Length); request_stream.Close(); res = (HttpWebResponse) req.GetResponse(); } catch (Exception e) { write_line("HttpWebRequest error url=" + Url); write_line(e); } // examine response if (res != null) { int http_status = (int) res.StatusCode; write_line (Convert.ToString(http_status)); string http_response_header = res.Headers["BTNET"]; res.Close(); if (http_response_header != null) { write_line (http_response_header); // only delete message from pop3 server if we // know we stored in on the web server ok if (MessageInputFile == "" && http_status == 200 && DeleteMessagesOnServer == "1" && http_response_header.IndexOf("OK") == 0) { write_line ("sending POP3 command DELE"); write_line (client.DELE (message_number)); } } else { write_line("BTNET HTTP header not found. Skipping the delete of the email from the server."); write_line("Incrementing total error count"); total_error_count++; } } else { write_line("No response from web server. Skipping the delete of the email from the server."); write_line("Incrementing total error count"); total_error_count++; } </pre> http://stackoverflow.com/questions/1482739/batch-script-to-get-specific-installed-software-along-with-version/1482752#1482752 1 Answer by Corey Trager for Batch script to get specific installed software along with version Corey Trager 2009-09-27T03:51:33Z 2009-09-27T12:47:55Z <p><strong>[Shamelessly copy/pasted @Helen's answer starts here]</strong></p> <p>If the software you're interested in is installed by the Windows Installer, you can get info about that software (such as the name, vendor, version etc) by querying the WMI Win32_Product class. In batch files, this can be done using the WMI command-line utility wmic. Here're some examples:</p> <pre><code>* Print the names and versions of installed software: wmic product get Name, Version * List all installed Microsoft products: wmic product where "Vendor like '%Microsoft%'" get Name, Version * List installed products that have Office in their names: wmic product where "Name like '%Office%'" get Name, Version </code></pre> <p>To save the wmic output to a file, you can use the /output and/or /format parameters, e.g.:</p> <p>wmic /output:software.txt product get Name, Version wmic /output:software.htm product get Name, Version /format:htable</p> <p>For more information about the wmic syntax, see wmic /?</p> <p><strong>[End of shamelessly copy/pasted answer from @Helen ends here.]</strong></p> <p>If the software wasnt' installed by Windows Installer, rather than look in the registry, you could look in the exes themselves. You need something beyond a mere .bat file. You need something that can open the exes and extract the version info.</p> <p>I would take a look at <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">PowerShell</a>, which is windows successor to .bat files. Use System.Diagnostics.FileVersionInfo.GetVersionInfo to get the version.</p> http://stackoverflow.com/questions/1482783/c-locking-a-resource-when-obtained-from-dictionary/1482807#1482807 1 Answer by Corey Trager for C# - Locking a resource when obtained from dictionary Corey Trager 2009-09-27T04:39:23Z 2009-09-27T04:39:23Z <p>If you are adding or removing items from the dictionary, lock the dictionary. </p> <p>When you put an object in the dictionary, you are putting a REFERENCE to that object in the dictionary. To prevent that object from being changed by a second thread while the first thread is in the process of changing it, lock the object, not the dictionary.</p> http://stackoverflow.com/questions/1482749/how-much-do-i-need-to-know-java-before-i-begin-jsp/1482767#1482767 0 Answer by Corey Trager for how much do I need to know Java before I begin JSP? Corey Trager 2009-09-27T03:59:20Z 2009-09-27T03:59:20Z <p>If you wanted to use JSP as if it were old-school PHP, you'd be up to speed after a day or two.</p> <p>If you want to buy into something "enterpise"-like JBoss, etc, you'll need a long time. (I think I just threw up in my mouth...)</p> <p>What's your motivation from "jumping to" JSP. (I'm not sure it's a jump in the right direction...).</p> http://stackoverflow.com/questions/1403891/pros-and-cons-of-building-apps-with-proprietary-database-systems/1482726#1482726 -1 Answer by Corey Trager for Pros and cons of building apps with proprietary database systems Corey Trager 2009-09-27T03:31:53Z 2009-09-27T03:31:53Z <p>I don't have any experiences with the proprietary database products you listed: 4D, Pervasive, FilemakerPro. </p> <p>I'd be interested in knowing what those products offer that make them more attractive to you than the open source alternatives, you listed: MySQL and PostgreSQL. </p> <p>I'd be interested in what makes those more attractive to you than the much more popular proprietary alternatives: Oracle, SQL Server, DB2, etc.</p> <p>Without you providing more specifics, it's hard to advise you.</p> <p>I personally feel safer using a widely used open source solution than a narrowly used closed source solution. The more widely used, the more battle-tested it's likely to be. The more open, the more control over my own destiny I have in case I do encounter some bug.</p> <p>I have reported bugs to open source projects and gotten a quick fix. I have reported bugs to companies that make for-profit proprietary software and have gotten nothing.</p> http://stackoverflow.com/questions/1411228/which-windows-c-screen-capture-libraries-fit-my-requirements/1482705#1482705 0 Answer by Corey Trager for Which Windows (C++) screen capture libraries fit my requirements? Corey Trager 2009-09-27T03:12:44Z 2009-09-27T03:12:44Z <p>I don't know of a library that would do what you want. </p> <p>If I had to code your requirements, I would probably use the source code of the TightVNC server as my starting point. I think it has the technology to do everything on your list EXCEPT....</p> <p>I'm not sure that technically there's ANYTHING that can do a screen capture of somebody's Remote Desktop session. Think about it: There can be multiple remote desktop sessions (the csrss.exe process) occuring using the same physical remote desktop server. If you were sitting in front of the machine looking at the video monitor, you wouldn't see anything happening at all. So what woould you expect to capture. VNC is only going to capture what's happening with the "real" video (the non-remote csrss.exe).</p> http://stackoverflow.com/questions/1812645/where-do-i-put-code-in-sinatra-ruby-web-framework-that-i-just-want-to-execute-o/1812671#1812671 Comment by Corey Trager on Where do I put code in Sinatra (ruby web framework) that I just want to execute once? Corey Trager 2009-11-28T15:02:53Z 2009-11-28T15:02:53Z I guess, I'm confused about the purpose of a Sinatra config block versus doing something outside of a block. http://stackoverflow.com/questions/198707/what-if-any-printable-character-did-a-user-type-based-on-the-values-in-a-given/1801116#1801116 Comment by Corey Trager on What, if any, printable character did a user type based on the values in a given System.Windows.Forms.KeyEventArgs? Corey Trager 2009-11-26T02:41:06Z 2009-11-26T02:41:06Z Pedery - see the code I just posted in the question itself. http://stackoverflow.com/questions/198707/what-if-any-printable-character-did-a-user-type-based-on-the-values-in-a-given/1801116#1801116 Comment by Corey Trager on What, if any, printable character did a user type based on the values in a given System.Windows.Forms.KeyEventArgs? Corey Trager 2009-11-26T02:27:14Z 2009-11-26T02:27:14Z The logic did not work for me. http://stackoverflow.com/questions/1776099/how-can-my-ruby-time-now-timings-be-so-low-when-my-ping-timings-are-so-high/1777837#1777837 Comment by Corey Trager on How can my Ruby "Time.now" timings be so low when my "ping" timings are so high? Corey Trager 2009-11-22T14:15:18Z 2009-11-22T14:15:18Z I'm ssh'ed into the remote host to, watching MongoDB's verbose output, and from that output I <i>KNOW</i> there is a network round trip going on. So, I'm just baffled by the difference in ping time versus the time that ruby measures. http://stackoverflow.com/questions/1776099/how-can-my-ruby-time-now-timings-be-so-low-when-my-ping-timings-are-so-high/1776114#1776114 Comment by Corey Trager on How can my Ruby "Time.now" timings be so low when my "ping" timings are so high? Corey Trager 2009-11-21T22:35:43Z 2009-11-21T22:35:43Z I think my question is confusing. Yes, I know my answer is in milliseconds because of the multiplication. The text I see is &quot;0.200&quot;, or &quot;0.050&quot;, etc. So, zero-point-something MILLISECONDS, right? Whereas ping shows me &quot;40ms&quot;. 40 milliseconds, right? How can the round trip to the remote mongo be so fast? http://stackoverflow.com/questions/1772143/using-sinatra-and-mongodb-whats-the-recommended-way-to-keep-alive-the-mongod/1773767#1773767 Comment by Corey Trager on Using Sinatra and MongoDB - what's the recommended way to "keep alive" the mongodb connection between http requests? Corey Trager 2009-11-21T05:29:05Z 2009-11-21T05:29:05Z See &quot;EDIT1&quot; in my question as an example of what is NOT working. http://stackoverflow.com/questions/1772143/using-sinatra-and-mongodb-whats-the-recommended-way-to-keep-alive-the-mongod/1773767#1773767 Comment by Corey Trager on Using Sinatra and MongoDB - what's the recommended way to "keep alive" the mongodb connection between http requests? Corey Trager 2009-11-21T05:17:34Z 2009-11-21T05:17:34Z I think I'm doing what you suggest, but it's not behaving as you say. http://stackoverflow.com/questions/1772143/using-sinatra-and-mongodb-whats-the-recommended-way-to-keep-alive-the-mongod/1773732#1773732 Comment by Corey Trager on Using Sinatra and MongoDB - what's the recommended way to "keep alive" the mongodb connection between http requests? Corey Trager 2009-11-21T05:15:56Z 2009-11-21T05:15:56Z When I do what you do and look at the output of mongod, I see connections being made for each HTTP request, including requests for css, js files. http://stackoverflow.com/questions/201883/how-can-you-get-a-combobox-child-of-a-datagridview-to-process-all-keys-including/454773#454773 Comment by Corey Trager on How can you get a ComboBox child of a DataGridView to process all keys, including "."? Corey Trager 2009-11-09T21:06:54Z 2009-11-09T21:06:54Z I have not solved the problem. I've tried your solution and that's not working for me, and after thinking about it, I'm not surprised. I'm using the combobox in the header, not a regular cell. I don't think my grid knows enough about my combobox to discover and use its IDataGridViewEditingControl interface. I mean, I think I have more problems than just this problem. I'm going to mark your answer as the accepted one anyway. http://stackoverflow.com/questions/1694184/what-do-you-look-for-in-a-bug-tracker/1694811#1694811 Comment by Corey Trager on What do you look for in a bug tracker? Corey Trager 2009-11-09T02:41:43Z 2009-11-09T02:41:43Z Ha - at work we have a &quot;component&quot; drop down that is global to all the software at the company.... http://stackoverflow.com/questions/1681500/what-infrastructure-tools-do-you-recommend-for-helping-an-open-source-user-commun/1681730#1681730 Comment by Corey Trager on What infrastructure tools do you recommend for helping an open source user community share non-mainline code with each other? Corey Trager 2009-11-05T16:31:44Z 2009-11-05T16:31:44Z Just one project, and not TOO much work for me. http://stackoverflow.com/questions/1681500/what-infrastructure-tools-do-you-recommend-for-helping-an-open-source-user-commun/1681682#1681682 Comment by Corey Trager on What infrastructure tools do you recommend for helping an open source user community share non-mainline code with each other? Corey Trager 2009-11-05T16:18:22Z 2009-11-05T16:18:22Z No, I don't mean patches that I would want to merge into the mainline code. I mean extras, variants, customizations that. And an issue tracker (the sourceforge RFE) is the scheme I'm using now, but things just get lost there. http://stackoverflow.com/questions/1681500/what-infrastructure-tools-do-you-recommend-for-helping-an-open-source-user-commun/1681642#1681642 Comment by Corey Trager on What infrastructure tools do you recommend for helping an open source user community share non-mainline code with each other? Corey Trager 2009-11-05T16:15:48Z 2009-11-05T16:15:48Z Take a look at this regarding google groups: <a href="http://ejohn.org/blog/google-groups-is-dead/" rel="nofollow">ejohn.org/blog/google-groups-is-dead</a> http://stackoverflow.com/questions/1650378/what-are-the-real-steps-for-installing-sql-server-express-2008-and-management-stu/1650410#1650410 Comment by Corey Trager on What are the REAL steps for installing SQL Server Express 2008 and Management Studio Express? Corey Trager 2009-10-30T17:22:35Z 2009-10-30T17:22:35Z Please comment, theorize, about the user comments at msdn.microsoft.com/en-us/library/…? I did download your link, and I experienced frustration similar to the folks there. Was there any version of SQL Server 2005 or 2008 on your machine when you installed the 2008 stuff? http://stackoverflow.com/questions/1650378/what-are-the-real-steps-for-installing-sql-server-express-2008-and-management-stu/1650421#1650421 Comment by Corey Trager on What are the REAL steps for installing SQL Server Express 2008 and Management Studio Express? Corey Trager 2009-10-30T16:33:02Z 2009-10-30T16:33:02Z Please comment, theorize, about the user comments at <a href="http://msdn.microsoft.com/en-us/library/ms365247.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>? I did download your link, and I experienced frustration similar to the folks there. Was there any version of SQL Server 2005 or 2008 on your machine when you installed the 2008 stuff?