User John W - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T22:55:32Zhttp://stackoverflow.com/feeds/user/13895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net/1877458#18774580Answer by John W for Detecting grayscale images with .NetJohn W2009-12-09T22:45:50Z2009-12-09T22:45:50Z<p>If you're using the Image class, it might be faster to look at what's in Image.Pallette rather than pixel by pixel. If the RGB values are equal to within some threshold, it's black and white.</p>
http://stackoverflow.com/questions/1877244/how-long-should-you-focus-on-a-programming-language/1877319#18773190Answer by John W for How long should you focus on a programming language?John W2009-12-09T22:17:17Z2009-12-09T22:22:36Z<p>You have a lifetime to learn languages if you want. You'll never know everything about a particular language. (Heck, even Jon Skeet doesn't know everything.)</p>
<p>But there is advantage to knowing something about a lot of different languages. It makes you more flexible and helps you to learn new languages more easily in the future.</p>
<p>If you have some web design under your belt, try to get your web sites to do some cool stuff with your new programming knowledge. Having something useful on the web in your late teens / early twenties is a fantastic start. You may never have to work as someone else's employee if you hit the next killer web app early enough.</p>
http://stackoverflow.com/questions/1877240/windows-datagridview-rowcommand/1877258#18772580Answer by John W for Windows DataGridView _RowCommandJohn W2009-12-09T22:07:38Z2009-12-09T22:07:38Z<p>DataGridView.CurrentRow gets the selected row. Is that what you need?</p>
http://stackoverflow.com/questions/1877216/why-is-my-visual-studio-2008-project-read-only/1877236#18772361Answer by John W for Why is my visual studio 2008 project read-onlyJohn W2009-12-09T22:04:11Z2009-12-09T22:04:11Z<ul>
<li>It's open somewhere else?</li>
<li>You saved the solution on a CD and copied the files to your hard drive? (I have to change the attributes manually on my files because the read-only attributes transfer to the copies on the hard drive.)</li>
<li>It's checked in under source control?</li>
</ul>
http://stackoverflow.com/questions/1876708/evaluate-trig-functions-in-degrees-as-opposed-to-radians/1876761#18767610Answer by John W for evaluate trig functions in degrees as opposed to radiansJohn W2009-12-09T20:44:40Z2009-12-09T20:44:40Z<p>Not sure there's any real way around it if you can accept both degrees and radians. There's no way to tell just from the input which units you're using. For example, sin(2) has a valid value for 2 degrees and 2 radians.</p>
<p>You have to do the appropriate conversion before inputting to the functions. (Or, you have to convert the output of the inverse trig functions if they want degrees.)</p>
http://stackoverflow.com/questions/1863230/change-color-of-dates-on-monthcalendar/1863297#18632970Answer by John W for Change color of dates on monthCalendar?John W2009-12-07T22:14:57Z2009-12-08T17:14:02Z<p>If you can get away with bolding the dates, just use AddAnnuallyBoldedDate and then call UpdateBoldedDates.</p>
<p><strong>Update:</strong> <a href="http://www.codeproject.com/KB/selection/MPK%5FCalendar.aspx" rel="nofollow">Found this on CodeProject</a>.</p>
http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic/79051#790512Answer by John W for How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?John W2008-09-17T01:45:44Z2009-12-08T16:19:06Z<p>I've played with the (0 == variable) trick but there is a loss in readability -- you have to switch things mentally to read it as "if variable equals zero."</p>
<p>I second Matt Dillard's recommendation of putting braces around single-line conditionals. (I'd vote it up if I could!)</p>
<p>One other trick I use when performance isn't critical: I'll define</p>
<pre><code>void MyClass::DoNothing()
{
}
</code></pre>
<p>and use it in place of null statements. A bare semicolon is easy to lose. One can add the numbers 1 to 10 (and store it in sum) like this:</p>
<pre><code>for (i = 1; i <= 10; sum += i++)
; //empty loop body
</code></pre>
<p>but this is more readable and self-documenting IMO:</p>
<pre><code>for (i = 1; i <= 10; sum += i++)
{
DoNothing();
}
</code></pre>
http://stackoverflow.com/questions/1843119/are-there-settings-in-crystal-reports-that-modify-sort-order-of-data-sources0Are there settings in Crystal Reports that modify sort order of data sources?John W2009-12-03T21:41:40Z2009-12-05T08:06:27Z
<p>I'm working with Crystal Reports in VB.NET in Visual Studio 2005.</p>
<p>I have a List(Of Stuff) that I've sorted according to one of the object's members.</p>
<p>I've verified in the debugger that the list is sorted correctly.</p>
<p>When I define my list as the data source, as in</p>
<pre><code>rptDetails.Subreports.Item("rptSubReport").SetDataSource(theListOfStuff)
</code></pre>
<p>and view the report, the list is reversed.</p>
<p>So, looking for a workaround, I said, "OK, I'll sort the list backwards before binding it."</p>
<p>The list still appeared backwards in the report.</p>
<p>So something's happening, and I think it's within the report definition, because I don't know where else the sort order could be changed. Any suggestions?</p>
<p>(Oh, forgot to mention that I used the report design facilities within VS to lay out the report.)</p>
<p>Thanks as always.</p>
http://stackoverflow.com/questions/1850877/solve-travelling-salesman-problem-in-linear-time/1850893#18508935Answer by John W for Solve "Travelling salesman problem" in linear timeJohn W2009-12-05T02:19:36Z2009-12-05T02:19:36Z<p>Just explain to him that it can't be done. What else can you do?</p>
<p>I'd just be really, really sure you're correct. (Not saying that you aren't correct, but pride goeth before the fall.)</p>
http://stackoverflow.com/questions/1850471/using-a-single-wiki-table-for-multiple-subject-tables/1850521#18505211Answer by John W for Using a single wiki table for multiple subject tablesJohn W2009-12-05T00:17:34Z2009-12-05T00:17:34Z<p>If you handle houses and architects within the same wiki, I'd think that would be how you'd want to do it.</p>
<p>The way you have it, you can see which houses (and which architects) are associated with a given wiki. Separating things into two wiki tables would indicate that they're not really part of the same wiki, which might indicate that your wiki is too "tightly coupled" to your houses and your architects.</p>
http://stackoverflow.com/questions/1848631/how-do-i-data-bind-a-drop-down-list-in-a-gridview-from-a-database-table-using-vb/1848676#18486760Answer by John W for How do I data bind a drop down list in a gridview from a database table using VB?John W2009-12-04T18:08:40Z2009-12-04T18:08:40Z<p>In the winforms world I pull my objects from the DB into a List(Of Whatever) and use the list as the datasource.</p>
<p>This also lets me add extra "convenience" fields in the object so that I can populate it with stuff from other tables.</p>
<p>I don't know asp.net at all so if you can do something similar, it might help.</p>
http://stackoverflow.com/questions/1845294/crystal-report-vb-net-asp-net/1845304#18453040Answer by John W for Crystal Report,VB.NET,ASP.NETJohn W2009-12-04T06:59:11Z2009-12-04T06:59:11Z<p><a href="http://social.msdn.microsoft.com/forums/en/vscrystalreports/thread/208525b2-94cd-4af6-9c5a-015e243b3092/" rel="nofollow">This link seems helpful.</a></p>
http://stackoverflow.com/questions/1843134/windows-how-big-is-a-bool/1843161#18431612Answer by John W for Windows: How big is a BOOL?John W2009-12-03T21:48:29Z2009-12-03T21:48:29Z<p>It's as big as sizeof(int) says it is?</p>
<p>(That's in bytes so multiply by 8.)</p>
http://stackoverflow.com/questions/1836847/how-can-i-learn-about-compiler-theory-online-free-resources/1836876#18368761Answer by John W for How can I learn about compiler theory - online/free resourcesJohn W2009-12-03T00:27:03Z2009-12-03T00:27:03Z<ul>
<li><a href="http://en.wikipedia.org/wiki/Parsing" rel="nofollow">Parsing on Wikipedia</a></li>
<li><a href="http://en.wikipedia.org/wiki/Extended%5FBackus%E2%80%93Naur%5FForm" rel="nofollow">EBNF on Wikipedia</a></li>
<li><a href="http://en.wikipedia.org/wiki/LALR%5Fparser" rel="nofollow">LALR on Wikipedia</a></li>
</ul>
<p>Start there and dig into the references you find. Each article has external links.</p>
http://stackoverflow.com/questions/1836609/comparing-two-pdf-documents-that-are-digitized-faxes/1836656#18366561Answer by John W for Comparing two PDF documents that are digitized faxesJohn W2009-12-02T23:38:35Z2009-12-02T23:38:35Z<p>If the documents are mostly text, OCR-ing them is a good idea. Comparing the text is straightforward.</p>
<p>Doing a "distance" calculation can be done, I suppose, but what if the fax is sent upside-down the second time? Or they enlarged it to make it more legible?</p>
<p>I'd try to tackle the subset of documents you're likely to encounter rather than applying a general algorithm. You'll get better results because it won't be looking for everything under the sun.</p>
http://stackoverflow.com/questions/1830062/how-feedburner-knows-number-of-subscribers-to-a-rss-feed/1830084#18300840Answer by John W for How Feedburner knows number of subscribers to a RSS Feed?John W2009-12-02T01:15:46Z2009-12-02T01:15:46Z<p>I wonder if it knows anything at all.</p>
<p>--- end sarcasm ---</p>
<p>Seriously, my sub numbers for my blog will jump from about 2k to about 3k at the drop of a hat.</p>
<p>Determining subscriber count is an inexact science at best.</p>
<p>It does rely on reporting from other services, and sometimes these services go down, or they change how they report.</p>
http://stackoverflow.com/questions/1830029/advert-click-validation/1830057#18300570Answer by John W for Advert Click ValidationJohn W2009-12-02T01:07:55Z2009-12-02T01:07:55Z<ol>
<li>Define what constitutes a valid click.</li>
<li>Define what constitutes a valid impression.</li>
<li>Ensure that your code can determine which actions pass these definitions and which don't. </li>
</ol>
http://stackoverflow.com/questions/1829330/solving-a-cubic-equation/1829437#18294373Answer by John W for Solving a cubic equationJohn W2009-12-01T22:37:40Z2009-12-01T22:37:40Z<p>I've looked at the Wikipedia article and your program.</p>
<p>I also solved the equation using <a href="http://www.wolframalpha.com" rel="nofollow">Wolfram Alpha</a> and the results there don't match what you get.</p>
<p>I'd just go through your program at each step, use a lot of print statements, and get each intermediate result. Then go through with a calculator and do it yourself.</p>
<p>I can't find what's happening, but where your hand calculations and the program diverge is a good place to look.</p>
http://stackoverflow.com/questions/1823533/ruby-time-difference-in-percentage/1823541#18235415Answer by John W for Ruby: Time difference in percentage?John W2009-12-01T01:49:37Z2009-12-01T02:05:03Z<p>Convert the times to seconds, calculate the span in seconds, calculate the difference between your desired time and the first time in seconds, calculate the fraction of the whole span, and then multiply by 100%?</p>
<p>Example:</p>
<p>12 AM = 0 seconds (of day)</p>
<p>12 PM = 43200 seconds (of day)</p>
<p>Your desired time = 3 AM = 10800 seconds of day</p>
<p>Total time span = 43200 - 0 = 43200 seconds</p>
<p>Time difference of your desired time from first time = 10800 - 0 = 10800 seconds</p>
<p>Fraction = 10800 / 43200 = 0.25</p>
<p>Percentage = 0.25 * 100% = <strong>25%</strong> </p>
<p>(Sorry don't know Ruby but there's the idea.)</p>
http://stackoverflow.com/questions/1823370/c-overloading-for-polynomial-multiplication/1823403#18234031Answer by John W for C++ overloading * for polynomial multiplicationJohn W2009-12-01T01:00:37Z2009-12-01T01:00:37Z<p>Does</p>
<pre><code>temp.coefficient = new int [count];
</code></pre>
<p>give you an array of zeroes?</p>
<p>Otherwise in your for loop you're adding stuff to garbage.</p>
http://stackoverflow.com/questions/1823191/reduce-jpg-quality-to-a-set-kb-size/1823227#18232270Answer by John W for Reduce JPG quality to a set KB sizeJohn W2009-11-30T23:52:43Z2009-11-30T23:52:43Z<p>How much an image is compressed depends on the image. You compress the image by dividing the magnitudes of the cosine terms and then discarding the trailing zeroes in each 8x8 block. (Broad strokes here.) So you really don't know how much the image will be compressed until you transform it and compress it.</p>
<p>Hence the iterative way would get you closest to the size you wanted.</p>
http://stackoverflow.com/questions/1823191/reduce-jpg-quality-to-a-set-kb-size/1823225#18232250Answer by John W for Reduce JPG quality to a set KB sizeJohn W2009-11-30T23:52:22Z2009-11-30T23:52:22Z<p>How much an image is compressed depends on the image. You compress the image by dividing the magnitudes of the cosine terms and then discarding the trailing zeroes in each 8x8 block. (Broad strokes here.) So you really don't know how much the image will be compressed until you transform it and compress it.</p>
<p>Hence the iterative way would get you closest to the size you wanted.</p>
http://stackoverflow.com/questions/1823059/declaring-arrays-similar-to-c-style-c/1823085#18230851Answer by John W for Declaring arrays similar to C style (C++)John W2009-11-30T23:19:02Z2009-11-30T23:19:02Z<p>Why not just do</p>
<pre><code>unsigned char Fonts[2][8] {
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 31, 0, 31, 0, 31, 0, 31}
};
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/1810393/how-to-read-till-end-of-file-in-matlab/1810406#18104062Answer by John W for How to read till end of file in MATLAB?John W2009-11-27T19:46:26Z2009-11-27T19:46:26Z<p>Read line-by-line <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/import%5Fexport/f5-35378.html" rel="nofollow">until you hit the EOF marker</a>.</p>
http://stackoverflow.com/questions/1810356/how-to-implement-tag-system/1810388#18103882Answer by John W for How to implement tag systemJohn W2009-11-27T19:41:12Z2009-11-27T19:41:12Z<p>Nothing wrong with your three-table solution.</p>
<p>Another option is to limit the number of tags that can be applied to an article (like 5 in SO) and add those directly to your article table.</p>
<p>Normalizing the DB has its benefits and drawbacks, just like hard-wiring things into one table has benefits and drawbacks.</p>
<p>Nothing says you can't do both. It goes against relational DB paradigms to repeat information, but if the goal is performance you may have to break the paradigms.</p>
http://stackoverflow.com/questions/1799887/converting-natural-language-to-haiku/1799898#17998981Answer by John W for converting natural language to haiku?John W2009-11-25T20:59:23Z2009-11-25T20:59:23Z<p>Pig Latin is text substitution. Haiku is poetry.</p>
<p>Find a regular expression to convert prose to poetry and you'll be rich.</p>
http://stackoverflow.com/questions/1799489/overcoming-gps-inaccuracy-for-short-distance/1799523#17995230Answer by John W for Overcoming GPS Inaccuracy for short distanceJohn W2009-11-25T19:51:12Z2009-11-25T19:51:12Z<p>Good luck.</p>
<p>If you have a standalone GPS receiver your positioning error is on the meter level.</p>
<p>If you have surveying-quality equipment, maybe if you stand still for a long time you can get the distance down to 2 cm.</p>
http://stackoverflow.com/questions/1799454/is-there-a-solid-bb-code-parser-for-php-that-doesnt-have-any-dependancies/1799482#17994821Answer by John W for Is there a solid BB code parser for php that doesn't have any dependancies?John W2009-11-25T19:43:29Z2009-11-25T19:43:29Z<p><a href="http://www.hotscripts.com/listing/bbcode-2-html/" rel="nofollow">Here's one on HotScripts.com.</a></p>
http://stackoverflow.com/questions/1798156/how-to-keep-an-audit-history-of-changes-to-the-table/1798202#17982020Answer by John W for How to keep an audit/history of changes to the tableJohn W2009-11-25T16:34:38Z2009-11-25T16:34:38Z<p>I'd log them in another table. Just structure the table to include the information you want.</p>
http://stackoverflow.com/questions/1797194/how-do-you-solve-unstructured-navigation-in-php/1797272#17972720Answer by John W for How do you solve "unstructured" navigation in PHP?John W2009-11-25T14:31:09Z2009-11-25T14:31:09Z<p>As long as you're only needing to backstep once, why not pass in whatever linkback page IDs you want whenever you produce the page you're jumping to?</p>
http://stackoverflow.com/questions/1877197/will-the-following-three-queries-always-produce-exactly-the-same-resultsComment by John W on Will the following three queries ALWAYS produce exactly the same results?John W2009-12-09T22:00:11Z2009-12-09T22:00:11ZDid you try these on test data?http://stackoverflow.com/questions/1843119/are-there-settings-in-crystal-reports-that-modify-sort-order-of-data-sources/1851547#1851547Comment by John W on Are there settings in Crystal Reports that modify sort order of data sources?John W2009-12-07T16:59:33Z2009-12-07T16:59:33ZThat was it. Much appreciated!http://stackoverflow.com/questions/1843119/are-there-settings-in-crystal-reports-that-modify-sort-order-of-data-sources/1851547#1851547Comment by John W on Are there settings in Crystal Reports that modify sort order of data sources?John W2009-12-05T17:34:50Z2009-12-05T17:34:50ZThank you! I'll try that when I'm back at work.http://stackoverflow.com/questions/1845274/auto-refill-using-paypalComment by John W on "Auto-refill" using PaypalJohn W2009-12-04T06:52:57Z2009-12-04T06:52:57Z12% accept rate? Tsk tsk tsk ...http://stackoverflow.com/questions/1842613/why-c-language-and-its-tools-is-so-aesthetically-uglyComment by John W on Why C++ language and its tools is so aesthetically ugly?John W2009-12-03T20:19:15Z2009-12-03T20:19:15ZThis isn't subjective and argumentative in the least ...http://stackoverflow.com/questions/1836891/floating-points-ieee-based-but-non-standard-conversion-of-bit-values-to-binary/1837085#1837085Comment by John W on floating points: IEEE based, but non-standard conversion of bit values to binaryJohn W2009-12-03T01:41:49Z2009-12-03T01:41:49ZThanks! I learned something today. ;)http://stackoverflow.com/questions/1836891/floating-points-ieee-based-but-non-standard-conversion-of-bit-values-to-binary/1836967#1836967Comment by John W on floating points: IEEE based, but non-standard conversion of bit values to binaryJohn W2009-12-03T01:16:19Z2009-12-03T01:16:19ZMy point is that you cannot have a self-consistent definition with those values if your float has those components. It's dead in the water.http://stackoverflow.com/questions/1836891/floating-points-ieee-based-but-non-standard-conversion-of-bit-values-to-binaryComment by John W on floating points: IEEE based, but non-standard conversion of bit values to binaryJohn W2009-12-03T00:43:07Z2009-12-03T00:43:07ZSo those values are what they should be, then?http://stackoverflow.com/questions/1836891/floating-points-ieee-based-but-non-standard-conversion-of-bit-values-to-binaryComment by John W on floating points: IEEE based, but non-standard conversion of bit values to binaryJohn W2009-12-03T00:36:01Z2009-12-03T00:36:01ZSo what are you asking? Given all 32 possibilities what floating-point numbers do they represent?http://stackoverflow.com/questions/1760826/adding-widgets-to-aspx-web-pagesComment by John W on Adding widgets to aspx web pagesJohn W2009-12-02T23:01:40Z2009-12-02T23:01:40ZOh, and you should accept a few more answers to your questions.http://stackoverflow.com/questions/1830311/wtf-is-happening-hereComment by John W on WTF is happening here?!?!John W2009-12-02T02:35:11Z2009-12-02T02:35:11ZIs this a real question?!?!?!?!?http://stackoverflow.com/questions/1830186/what-does-arrows-mean-in-mathComment by John W on What does arrows mean in math?John W2009-12-02T01:56:21Z2009-12-02T01:56:21ZIt probably means "implies"http://stackoverflow.com/questions/1829851/good-programming-language-for-a-rabbitComment by John W on Good programming language for a rabbit?John W2009-12-02T00:33:57Z2009-12-02T00:33:57ZLanguage is unimportant. Motivating the rabbit is crucial. I suggest using a carrot rather than a stick.http://stackoverflow.com/questions/1829330/solving-a-cubic-equation/1829437#1829437Comment by John W on Solving a cubic equationJohn W2009-12-01T22:52:51Z2009-12-01T22:52:51ZSee A. Rex's answer. As they say, "Well, THERE'S your problem!"http://stackoverflow.com/questions/1829330/solving-a-cubic-equation/1829469#1829469Comment by John W on Solving a cubic equationJohn W2009-12-01T22:52:16Z2009-12-01T22:52:16ZThere it is. Can't believe I read through that several times.