User theschmitzer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:25:57Zhttp://stackoverflow.com/feeds/user/4240http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1312390/what-server-performance-issues-do-low-bandwidh-clients-cause0What server performance issues do low-bandwidh clients cause?theschmitzer2009-08-21T14:44:54Z2009-11-26T00:00:03Z
<p>Hi</p>
<p>I have a project to distribute large files to clients, some of which certainly will have low bandwidth (ISDN or DSL class).</p>
<p>The system is interactive, with clients pulling data from the server.</p>
<p>Just curious what kind of performance issues I can expect will be imposed by these lower bandwidth connections when compared to a client with a fatter pipe.</p>
<p>TIA</p>
<p>jeff</p>
http://stackoverflow.com/questions/241634/how-do-i-detect-how-to-escape-spaces-in-a-path0How do I detect how to escape spaces in a paththeschmitzer2008-10-27T22:43:21Z2009-10-17T11:49:52Z
<p>In Cygwin a space in a path has to be escaped with a backslash
Not true in Windows, put the whole path in a quote</p>
<p>Is there a way to convert to this automatically in Ruby?</p>
<p>Otherwise, how in Ruby do I detect if I am running with Windows or Cygwin?</p>
http://stackoverflow.com/questions/294256/favorite-non-obvious-feature-of-svn/1488120#14881203Answer by theschmitzer for Favorite non obvious feature of svn?theschmitzer2009-09-28T16:48:50Z2009-09-28T16:48:50Z<p>svn blame of course. Got to know who's fault it is.</p>
http://stackoverflow.com/questions/1145217/why-should-hash-functions-use-a-prime-number-modulus15Why should hash functions use a prime number modulus?theschmitzer2009-07-17T19:30:04Z2009-09-23T06:58:18Z
<p>A long time ago, I bought a data structures book off the bargain table for $1.25. In it, the explanation for a hashing function said that it should ultimately mod by a prime number because of "the nature of math".</p>
<p>What do you expect from a $1.25 book?</p>
<p>Anyway, I've had years to think about the nature of math, and still can't figure it out.</p>
<p>Is the distribution of numbers truly more even when there are a prime number of buckets? Or is this an old programmers tale that everyone excepts because, everybody <em>else</em> accepts it?</p>
http://stackoverflow.com/questions/60653/is-global-memory-initialized-in-c4Is Global Memory Initialized in C++theschmitzer2008-09-13T16:13:29Z2009-08-31T22:39:06Z
<p>And if so, how?</p>
<p>(Second) Clarification:</p>
<p>When a program starts up, what is in the memory space which will become global memory, prior to primitives being initialized. I'm trying to understand if it is zeroed out, or garbage for example.</p>
<p>The situation is can a singleton reference be set - via an instance() call, prior to its initialization:</p>
<p>MySingleton* MySingleton::_instance = NULL;</p>
<p>and get 2 singleton instances as a result?</p>
<p>See my C++ quiz on on multiple instances of a singleton...</p>
http://stackoverflow.com/questions/518437/what-causes-umdh-to-fail-to-give-stack-traces1What causes UMDH to fail to give stack tracestheschmitzer2009-02-05T23:17:46Z2009-07-08T15:36:27Z
<p>I've used UMDH a dozen times before, never with any problem.</p>
<p>Suddenly I don't get a function names in the stack traces in my dump files - just a series of addresses.</p>
<p>I've got ust enabled:</p>
<p>gflags exe_name +ust</p>
<p>I start exe_name, then I do </p>
<p>umdh -p:pid one.txt
umdh -p:pid two.txt</p>
<p>I look at one.txt and two.txt and they have no indications of where these are coming from. When I do the diff</p>
<p>umdh one.txt two.txt > diff.txt</p>
<p>the result is not useful.</p>
<p>Help, I love this tool.</p>
http://stackoverflow.com/questions/409792/deciding-on-a-revenue-model-for-a-web-application2Deciding on a Revenue Model for a Web Applicationtheschmitzer2009-01-03T20:42:44Z2009-05-24T19:35:57Z
<p>When building a commercial web application, what are the factors that go into the decision of a revenue model?</p>
<p>How many users are necessary for an advertising-supported application? What demographic factors of the user base makes them more attractive to advertisers?</p>
<p>Conversely, when deciding on a subscription price, what factors go into setting a price.</p>
<p>This seems like a decision we would want to get correct!</p>
http://stackoverflow.com/questions/369986/quiz-when-is-a-comment-not-a-comment-1Quiz: When is a Comment Not A Comment?theschmitzer2008-12-15T22:55:01Z2009-05-24T19:30:22Z
<p>Quick Quiz?</p>
<p>What language has comments with side effects? In essence, comments which are <strong>not</strong> comments...</p>
http://stackoverflow.com/questions/827020/what-is-the-best-way-to-deserialize-a-null-terminated-string-in-net0What is the Best way to deserialize a null-terminated string in .NET?theschmitzer2009-05-05T21:41:02Z2009-05-05T22:16:19Z
<p>I am reading a message from my network connection which is serialized as a series of null-terminated strings (and other binary data)</p>
<p>I could read a char at a time using a BinaryReader, until I find a NULL.</p>
<p>Is there a more efficient way that is still simple? I'm expecting strings less than 64 chars in length, but they could be longer.</p>
<p>Thanks</p>
<p>jeff</p>
http://stackoverflow.com/questions/691047/batch-file-variables-initialized-in-a-for-loop0Batch file variables initialized in a for looptheschmitzer2009-03-27T18:52:11Z2009-04-19T04:51:16Z
<p>I have a batch file which initializes variables via SET inside a for loop, for a set of files on disk:</p>
<pre><code>for %%f in (%MYTARGETDIR%\*config.xml) do (
SET TMPFILE=%%F.tmp
echo In loop %TMPFILE%
)
echo End loop %TMPFILE%
</code></pre>
<p>when I run this in a brand new command shell (without TMPFILE defined) the In loop echo is empty, but the end loop echo is not.</p>
<p>When I run a second time, its already set, and outputs its value, ignoring the set until the loop closes.</p>
<p>Ideas why this is, and what the workaround is?</p>
http://stackoverflow.com/questions/691047/batch-file-variables-initialized-in-a-for-loop/691118#6911180Answer by theschmitzer for Batch file variables initialized in a for looptheschmitzer2009-03-27T19:14:41Z2009-03-27T19:14:41Z<p>on for the record, corrected script looks like this:</p>
<p>setlocal ENABLEDELAYEDEXPANSION</p>
<p>for %%f in (%MYTARGETDIR%*config.xml) do (
SET TMPFILE=%%F.tmp</p>
<p>echo In loop !TMPFILE!
)</p>
<p>echo End loop %TMPFILE%</p>
<p>Thanks chris for your help</p>
http://stackoverflow.com/questions/686377/windows-command-line-javascript2windows command line javascripttheschmitzer2009-03-26T15:55:31Z2009-03-26T16:06:51Z
<p>I'm <em>trying</em> to run javascript from a windows command line via script</p>
<p>cscript //NoLogo test.js</p>
<p>However, I can't find any predefined objects which are available. I'm totally at a loss - Can't get hello world to work:</p>
<p>System.print("Hello, World!")</p>
<p>results in "System" is undefined</p>
<p>Is there another way I should be running this - like through .NET runtime?</p>
<p>Thanks</p>
<p>jeff</p>
http://stackoverflow.com/questions/663810/how-do-you-make-configuration-specific-c-build-events-in-vs20080How do you make configuration-specific C# build events in VS2008theschmitzer2009-03-19T19:59:55Z2009-03-19T20:16:22Z
<p>In vs2008, C# build events are configuration-specific. </p>
<p>Looking for ideas on how to make my build event run only when doing a Release build.</p>
<p>Ideas?</p>
http://stackoverflow.com/questions/663810/how-do-you-make-configuration-specific-c-build-events-in-vs2008/663876#6638762Answer by theschmitzer for How do you make configuration-specific C# build events in VS2008theschmitzer2009-03-19T20:16:22Z2009-03-19T20:16:22Z<p>ok, along Brian's line, I'm doing this:</p>
<pre><code>if "$(ConfigurationName)" == "Release" do_something
</code></pre>
<p>and it appears to work</p>
http://stackoverflow.com/questions/160894/rails-request-initialization0Rails Request Initializationtheschmitzer2008-10-02T04:36:32Z2009-03-03T22:51:07Z
<p>We all hear a lot about scaling issues in Rails.</p>
<p>I was just curious what the actual costs in handling a HTTP request is in the Rails framework. Meaning, what has to happen for each and every request which comes in? Is there class parsing? Configuration? Database Connection establishment?</p>
http://stackoverflow.com/questions/53472/best-way-to-convert-a-ruby-string-range-to-a-range-object/54647#546472Answer by theschmitzer for Best way to convert a Ruby string range to a Range objecttheschmitzer2008-09-10T16:47:45Z2009-02-05T23:01:04Z<p>Inject with no args works well for two element arrays:</p>
<pre><code>rng='20080201..20080229'.split('..').inject { |s,e| s.to_i..e.to_i }
</code></pre>
<p>Of course, this can be made generic</p>
<pre><code>class Range
def self.from_ary(a)
a.inject{|s,e| [s..e]}
end
end
rng = Range.from_ary('20080201..20080229'.split('..').map{|s| s.to_i})
</code></pre>
http://stackoverflow.com/questions/60658/rails-model-view-controller-and-helper-what-goes-where29Rails Model, View, Controller, and Helper: what goes where?theschmitzer2008-09-13T16:18:01Z2009-02-03T07:39:38Z
<p>In Ruby on Rails Development (or MVC in general), what quick rule should I follow as to where to put logic.</p>
<p>Please answer in the affirmative - With <em>Do put this here</em>, rather than <em>Don't put that there</em>.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409781#40978159Answer by theschmitzer for What's your most controversial programming opinion?theschmitzer2009-01-03T20:36:46Z2009-01-09T15:44:44Z<p><strong>Don't use inheritance unless you can explain why you need it.</strong></p>
http://stackoverflow.com/questions/409765/does-a-strings-length-equal-the-byte-size/409803#4098031Answer by theschmitzer for Does a strings length equal the byte size?theschmitzer2009-01-03T20:47:00Z2009-01-03T20:47:00Z<p>You are correct. If you encode as ASCII, there is one byte per character. Otherwise, it is one or more bytes per character.</p>
<p>In particular, it is important to know how this effects substring operations. If you don't have one byte per character, does s[n] get the nth byte or nth char? Getting the nth char will be inefficient for large n instead of constant, as it is with a one byte per character.</p>
http://stackoverflow.com/questions/369986/quiz-when-is-a-comment-not-a-comment/394249#3942492Answer by theschmitzer for Quiz: When is a Comment Not A Comment?theschmitzer2008-12-26T20:44:16Z2008-12-26T20:44:16Z<p>DOS Batch Shell programming</p>
<p>The REM (Remark) allows you to put in a comment. But it has the side-effect of modifying the ERRORLEVEL variable to 0.</p>
<p>In a sense, it makes last operation a success.</p>
<p>I don't know how a comment can fail, but if it does, you are covered.</p>
http://stackoverflow.com/questions/385912/ruby-object-toa-replacement/386582#3865821Answer by theschmitzer for Ruby: Object.to_a replacementtheschmitzer2008-12-22T15:55:17Z2008-12-22T15:55:17Z<p>I'm not sure if this helps, but what I often need is not that the arg be an array, but that the arg responds to each.</p>
<pre><code>arg = [arg] unless arg.respond_to? :each
</code></pre>
http://stackoverflow.com/questions/386115/to-use-self-or-not-in-rails/386537#3865370Answer by theschmitzer for To use self. or not.. in Railstheschmitzer2008-12-22T15:35:27Z2008-12-22T15:35:27Z<p>self is <strong>always</strong> the current object</p>
<p>When you see self here</p>
<p>def self.method_name
end</p>
<p>You are not in an instance method, so self is the current <em>Class</em> object.</p>
http://stackoverflow.com/questions/357116/what-causes-visual-studio-2005-out-of-order-command-line-builds1What causes Visual Studio 2005 Out-Of-Order Command Line Builds?theschmitzer2008-12-10T18:47:02Z2008-12-15T19:25:04Z
<p>In Visual Studio 2005, I have a solution with explicit dependencies specified via the Project Dependencies dialog.</p>
<p>When I build via devenv /rebuild Release for example, the projects are built in a different order than when loading up the IDE. This is an order not allowed by my specified dependencies.</p>
<p>In some cases, devenv crashes :(</p>
<p>The log shows a number before each line showing an order, which I believe is the dependency-induced order:</p>
<p>11>MyExeProject - 1 error(s), 0 warning(s)</p>
<p>However, the builds appear to be <strong>started</strong> in that order, <strong>interrupted</strong> and continue in another order - which does not work. So 8 may finish its build before 11. If 11 links in 8, there is a problem.</p>
<p>A similar reordering happens in the IDE, but the build order still maintains integrity.</p>
<p>Need to build by command line, any ideas why this is or what the cause is?</p>
http://stackoverflow.com/questions/357116/what-causes-visual-studio-2005-out-of-order-command-line-builds/369433#3694332Answer by theschmitzer for What causes Visual Studio 2005 Out-Of-Order Command Line Builds?theschmitzer2008-12-15T19:25:04Z2008-12-15T19:25:04Z<p>Ok, here is the real answer, I believe.</p>
<p>Multiprocessor Builds are enabled. The dependency order is still enforced in the IDE, but not via command line, at least in VS 2005.</p>
<p>Turning it off is through Tools/Options/Build and Run. Set maximum to 1.</p>
http://stackoverflow.com/questions/357116/what-causes-visual-studio-2005-out-of-order-command-line-builds/360147#3601470Answer by theschmitzer for What causes Visual Studio 2005 Out-Of-Order Command Line Builds?theschmitzer2008-12-11T17:14:17Z2008-12-11T17:14:17Z<p>I tried recreating the solution and the problem reappeared???</p>
<p>However, I further investigated the crashed solution and found that one of the projects (Setup) ended up without a name.</p>
<p>Interesting... Especially because this problem appeared long after the last modification to Setup.</p>
<p>I removed Setup, it fixed the build order and crash.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/350893#3508938Answer by theschmitzer for What is the best comment in source code you have ever encountered?theschmitzer2008-12-08T21:07:14Z2008-12-08T21:07:14Z<p>Back when I worked for Reuters there was a comment in one of our feed handlers that made some people think the Almighty was helping us out...</p>
<pre><code>// Jesus told me to skip to the end of the message here
</code></pre>
<p>We found out later that there was a Latin-American contact named <strong>Jesus</strong> (HeyZus).</p>
http://stackoverflow.com/questions/350753/how-can-i-limit-git-log-or-svn-log-to-revisions-that-regard-one-particular-file/350783#3507834Answer by theschmitzer for How can I limit git log (or svn log) to revisions that regard one particular file?theschmitzer2008-12-08T20:32:18Z2008-12-08T20:32:18Z<p>svn log filename</p>
<p>or </p>
<p>svn log url</p>
<p>I also recommend adding --limit N to show only recent entries</p>
<p>svn log main.cpp --limit 4</p>
<p>These can be applied to a file or project, btw.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/61286#6128618Answer by theschmitzer for Great programming quotestheschmitzer2008-09-14T11:45:35Z2008-11-28T07:37:45Z<p>Stroustrup:</p>
<blockquote>
<p>In C, its easy to shoot yourself in
the foot. C++ makes it more
difficult, but when you do, you'll
blow your whole leg off.</p>
</blockquote>
http://stackoverflow.com/questions/319171/what-arguments-are-you-supposed-to-give-to-the-windows-api-call-verqueryvalue2What Arguments are you supposed to give to the Windows API call VerQueryValuetheschmitzer2008-11-25T22:48:57Z2008-11-28T01:13:28Z
<p>I understand the first argument must be the result of GetFileVersionInfo().</p>
<p>The third and forth are target buffer and size</p>
<p>What is the second argument, lpSubBlock?</p>
<p>Thanks In Advance</p>
http://stackoverflow.com/questions/299647/ever-hear-of-developers-getting-paid-per-line-of-code/299678#2996780Answer by theschmitzer for Ever hear of developers getting paid per line of code?theschmitzer2008-11-18T18:31:22Z2008-11-18T18:31:22Z<p>Not exactly, but I HAVE heard of monitoring of keystrokes as a measure of productivity.</p>
<p>Word is, the developers wrote scripts to simulate keystrokes and up their score!</p>
http://stackoverflow.com/questions/773061/jquery-ui-dialog-asp-net-textboxes-focus/816445#816445Comment by theschmitzer on jQuery UI Dialog + ASP.NET textboxes + focustheschmitzer2009-11-16T04:40:44Z2009-11-16T04:40:44ZWorked, but had to up my timeout to 500. Thxhttp://stackoverflow.com/questions/1145217/why-should-hash-functions-use-a-prime-number-modulus/1145236#1145236Comment by theschmitzer on Why should hash functions use a prime number modulus?theschmitzer2009-07-17T20:20:02Z2009-07-17T20:20:02ZThe article does not explain why, but says "Researchers found that using a prime of 31 gives a better distribution to the keys, and lesser no of collisions. No one knows why..." Funny, asking the same question as me in effect.http://stackoverflow.com/questions/691047/batch-file-variables-initialized-in-a-for-loop/691074#691074Comment by theschmitzer on Batch file variables initialized in a for looptheschmitzer2009-03-27T19:04:28Z2009-03-27T19:04:28ZThanks, I just saw setlocal ENABLEDELAYED EXPANSIONhttp://stackoverflow.com/questions/663810/how-do-you-make-configuration-specific-c-build-events-in-vs2008/663837#663837Comment by theschmitzer on How do you make configuration-specific C# build events in VS2008theschmitzer2009-03-19T20:11:21Z2009-03-19T20:11:21ZThanks, have modified title, description and tags of the question.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409781#409781Comment by theschmitzer on What's your most controversial programming opinion?theschmitzer2009-01-09T15:47:02Z2009-01-09T15:47:02ZMost uses of inheritance as a form of reuse, overriding whatever is needed to change. They generally don't know/care if they violate LSP, and can achieve what they need with composition.http://stackoverflow.com/questions/357116/what-causes-visual-studio-2005-out-of-order-command-line-builds/358131#358131Comment by theschmitzer on What causes Visual Studio 2005 Out-Of-Order Command Line Builds?theschmitzer2008-12-11T17:11:07Z2008-12-11T17:11:07ZIts interesting you say that, I see in task manager, multiple copies of cl.exe running at times.http://stackoverflow.com/questions/11127/in-c-windows-how-do-i-get-the-network-name-of-the-computer-im-onComment by theschmitzer on In C++/Windows how do I get the network name of the computer I'm on?theschmitzer2008-12-08T20:17:58Z2008-12-08T20:17:58Z+1 to you. First time my google result was a Stack Overflow post.
Thanks all.http://stackoverflow.com/questions/60331/c-quiz-singletonsComment by theschmitzer on C++ Quiz - Singletonstheschmitzer2008-09-24T04:41:10Z2008-09-24T04:41:10ZThe post is up. Thanks.http://stackoverflow.com/questions/60331/c-quiz-singletons/60355#60355Comment by theschmitzer on C++ Quiz - Singletonstheschmitzer2008-09-13T18:39:44Z2008-09-13T18:39:44ZSo the question then is what does global memory look like prior to initialization of global data members...http://stackoverflow.com/questions/60331/c-quiz-singletonsComment by theschmitzer on C++ Quiz - Singletonstheschmitzer2008-09-13T17:59:10Z2008-09-13T17:59:10ZI felt it was full disclosure, as I'd like to use info in this post in my post. Sorry, felt kind of funny doing it, but it remains an interesting question, does it not?http://stackoverflow.com/questions/60331/c-quiz-singletons/60355#60355Comment by theschmitzer on C++ Quiz - Singletonstheschmitzer2008-09-13T16:03:28Z2008-09-13T16:03:28ZSo what you are saying is the global memory used by _instance is initialized to NULL, one other global variable calls instance() allocating instance #1, then the explicit _instance initializer executes, setting it back to NULL, and the next call to instance() allocates a second time?