User theschmitzer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:25:57Z http://stackoverflow.com/feeds/user/4240 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1312390/what-server-performance-issues-do-low-bandwidh-clients-cause 0 What server performance issues do low-bandwidh clients cause? theschmitzer 2009-08-21T14:44:54Z 2009-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-path 0 How do I detect how to escape spaces in a path theschmitzer 2008-10-27T22:43:21Z 2009-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#1488120 3 Answer by theschmitzer for Favorite non obvious feature of svn? theschmitzer 2009-09-28T16:48:50Z 2009-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-modulus 15 Why should hash functions use a prime number modulus? theschmitzer 2009-07-17T19:30:04Z 2009-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-c 4 Is Global Memory Initialized in C++ theschmitzer 2008-09-13T16:13:29Z 2009-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-traces 1 What causes UMDH to fail to give stack traces theschmitzer 2009-02-05T23:17:46Z 2009-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-application 2 Deciding on a Revenue Model for a Web Application theschmitzer 2009-01-03T20:42:44Z 2009-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 -1 Quiz: When is a Comment Not A Comment? theschmitzer 2008-12-15T22:55:01Z 2009-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-net 0 What is the Best way to deserialize a null-terminated string in .NET? theschmitzer 2009-05-05T21:41:02Z 2009-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-loop 0 Batch file variables initialized in a for loop theschmitzer 2009-03-27T18:52:11Z 2009-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#691118 0 Answer by theschmitzer for Batch file variables initialized in a for loop theschmitzer 2009-03-27T19:14:41Z 2009-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-javascript 2 windows command line javascript theschmitzer 2009-03-26T15:55:31Z 2009-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-vs2008 0 How do you make configuration-specific C# build events in VS2008 theschmitzer 2009-03-19T19:59:55Z 2009-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#663876 2 Answer by theschmitzer for How do you make configuration-specific C# build events in VS2008 theschmitzer 2009-03-19T20:16:22Z 2009-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-initialization 0 Rails Request Initialization theschmitzer 2008-10-02T04:36:32Z 2009-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#54647 2 Answer by theschmitzer for Best way to convert a Ruby string range to a Range object theschmitzer 2008-09-10T16:47:45Z 2009-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-where 29 Rails Model, View, Controller, and Helper: what goes where? theschmitzer 2008-09-13T16:18:01Z 2009-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#409781 59 Answer by theschmitzer for What's your most controversial programming opinion? theschmitzer 2009-01-03T20:36:46Z 2009-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#409803 1 Answer by theschmitzer for Does a strings length equal the byte size? theschmitzer 2009-01-03T20:47:00Z 2009-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#394249 2 Answer by theschmitzer for Quiz: When is a Comment Not A Comment? theschmitzer 2008-12-26T20:44:16Z 2008-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#386582 1 Answer by theschmitzer for Ruby: Object.to_a replacement theschmitzer 2008-12-22T15:55:17Z 2008-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#386537 0 Answer by theschmitzer for To use self. or not.. in Rails theschmitzer 2008-12-22T15:35:27Z 2008-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-builds 1 What causes Visual Studio 2005 Out-Of-Order Command Line Builds? theschmitzer 2008-12-10T18:47:02Z 2008-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#369433 2 Answer by theschmitzer for What causes Visual Studio 2005 Out-Of-Order Command Line Builds? theschmitzer 2008-12-15T19:25:04Z 2008-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#360147 0 Answer by theschmitzer for What causes Visual Studio 2005 Out-Of-Order Command Line Builds? theschmitzer 2008-12-11T17:14:17Z 2008-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#350893 8 Answer by theschmitzer for What is the best comment in source code you have ever encountered? theschmitzer 2008-12-08T21:07:14Z 2008-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#350783 4 Answer by theschmitzer for How can I limit git log (or svn log) to revisions that regard one particular file? theschmitzer 2008-12-08T20:32:18Z 2008-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#61286 18 Answer by theschmitzer for Great programming quotes theschmitzer 2008-09-14T11:45:35Z 2008-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-verqueryvalue 2 What Arguments are you supposed to give to the Windows API call VerQueryValue theschmitzer 2008-11-25T22:48:57Z 2008-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#299678 0 Answer by theschmitzer for Ever hear of developers getting paid per line of code? theschmitzer 2008-11-18T18:31:22Z 2008-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#816445 Comment by theschmitzer on jQuery UI Dialog + ASP.NET textboxes + focus theschmitzer 2009-11-16T04:40:44Z 2009-11-16T04:40:44Z Worked, but had to up my timeout to 500. Thx http://stackoverflow.com/questions/1145217/why-should-hash-functions-use-a-prime-number-modulus/1145236#1145236 Comment by theschmitzer on Why should hash functions use a prime number modulus? theschmitzer 2009-07-17T20:20:02Z 2009-07-17T20:20:02Z The article does not explain why, but says &quot;Researchers found that using a prime of 31 gives a better distribution to the keys, and lesser no of collisions. No one knows why...&quot; Funny, asking the same question as me in effect. http://stackoverflow.com/questions/691047/batch-file-variables-initialized-in-a-for-loop/691074#691074 Comment by theschmitzer on Batch file variables initialized in a for loop theschmitzer 2009-03-27T19:04:28Z 2009-03-27T19:04:28Z Thanks, I just saw setlocal ENABLEDELAYED EXPANSION http://stackoverflow.com/questions/663810/how-do-you-make-configuration-specific-c-build-events-in-vs2008/663837#663837 Comment by theschmitzer on How do you make configuration-specific C# build events in VS2008 theschmitzer 2009-03-19T20:11:21Z 2009-03-19T20:11:21Z Thanks, have modified title, description and tags of the question. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409781#409781 Comment by theschmitzer on What's your most controversial programming opinion? theschmitzer 2009-01-09T15:47:02Z 2009-01-09T15:47:02Z Most 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#358131 Comment by theschmitzer on What causes Visual Studio 2005 Out-Of-Order Command Line Builds? theschmitzer 2008-12-11T17:11:07Z 2008-12-11T17:11:07Z Its 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-on Comment by theschmitzer on In C++/Windows how do I get the network name of the computer I'm on? theschmitzer 2008-12-08T20:17:58Z 2008-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-singletons Comment by theschmitzer on C++ Quiz - Singletons theschmitzer 2008-09-24T04:41:10Z 2008-09-24T04:41:10Z The post is up. Thanks. http://stackoverflow.com/questions/60331/c-quiz-singletons/60355#60355 Comment by theschmitzer on C++ Quiz - Singletons theschmitzer 2008-09-13T18:39:44Z 2008-09-13T18:39:44Z So the question then is what does global memory look like prior to initialization of global data members... http://stackoverflow.com/questions/60331/c-quiz-singletons Comment by theschmitzer on C++ Quiz - Singletons theschmitzer 2008-09-13T17:59:10Z 2008-09-13T17:59:10Z I 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#60355 Comment by theschmitzer on C++ Quiz - Singletons theschmitzer 2008-09-13T16:03:28Z 2008-09-13T16:03:28Z So 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?