User Sparr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:05:21Z http://stackoverflow.com/feeds/user/13675 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1759746/php-regular-expression-to-filter-out-junk/1759871#1759871 1 Answer by Sparr for php regular expression to filter out junk Sparr 2009-11-18T23:29:39Z 2009-11-18T23:29:39Z <p>As stated, the problem is unsolvable. If the garbage can contain "plain old normal characters" characters, and the garbage can fall at the end of the string, then you cannot know whether the target string from this sample is "ABCDEFGH" or "BCDEFGHI":</p> <pre><code>__http:/____/somewe___bsite.co____m/something=__ABCDEFGHI__ </code></pre> http://stackoverflow.com/questions/1019953/n-grams-for-sequence-correction/1020091#1020091 1 Answer by Sparr for N-Grams for sequence correction Sparr 2009-06-19T21:25:34Z 2009-06-19T21:25:34Z <p>Assign known replacements a score, based on the length of the replacement and the number of occurrences. Naively, I would suggest making this score proportional to the square of the length (longer matches being rarer, in most scenarios I can think of) and the square root of the number of occurrences, such that a 4-item sequence has as much weight as a 2-item sequence that occurs 16 times as often. This would need to be adjusted based on your actual situation.</p> <p>Given a sequence of length M, there are N substrings of lengths 1 to M, where N=M*(M+1)/2, so if the strings are reasonably short then you could iterate over every substring and look up possible replacements. The number of ways to compose the whole string out of these substrings is also proportional to M^2, I think.</p> <p>For every possible composition of the original string by substrings, add up the total score of the best (highest score) replacement for each substring.</p> <p>The composition with the highest total score will be (potentially, given my assumptions about the process) the "best" post-replacement result.</p> http://stackoverflow.com/questions/1004758/transparency-in-png-recognized-in-some-apps-but-not-others/1004785#1004785 1 Answer by Sparr for Transparency in PNG recognized in some apps but not others Sparr 2009-06-17T02:22:42Z 2009-06-17T02:22:42Z <p>GD requires one of various options (either directly or in the image type when you create a new image) in order to output transparent pixels.</p> http://stackoverflow.com/questions/997866/is-on-demand-elasticity-the-only-major-feature-of-cloud-computing-that-cannot-be/997882#997882 2 Answer by Sparr for Is on-demand elasticity the only major feature of cloud computing that cannot be easily found with traditional hosting? Sparr 2009-06-15T19:20:01Z 2009-06-15T19:20:00Z <p>Not only do you have elasticity, but you have, in theory at least, a greater total amount of resources available than you could have with any static hosting solution.</p> <p>Also, a side effect of elasticity is decreased electricity usage, which may or may not be a factor for you.</p> http://stackoverflow.com/questions/988434/could-this-tile-blitter-get-any-faster/988456#988456 1 Answer by Sparr for Could this tile blitter get any faster? Sparr 2009-06-12T19:04:41Z 2009-06-12T19:04:41Z <p>Software blitting seems like a severe bottleneck. I would seriously suggest looking into hardware accelerated drawing for a task like this.</p> http://stackoverflow.com/questions/936329/java-problems-rounding-numbers/936369#936369 1 Answer by Sparr for Java - Problems Rounding Numbers Sparr 2009-06-01T19:33:23Z 2009-06-01T19:33:23Z <p>697573698804632150000000000000000000000000000 <br/>and <br/>697573698804632158498861826956272125244140625 <br/>are not the same number. You are losing precision in Java by having such a large number, where Ruby has arbitrary precision integer arithmetic. Applying arithmetic operations to numbers that large in Java will result in [pseudo-]unpredictable results.</p> http://stackoverflow.com/questions/922911/what-is-a-good-piece-of-low-cost-electronic-kit-for-programming/922945#922945 3 Answer by Sparr for What is a good piece of low cost electronic kit for programming? Sparr 2009-05-28T20:20:34Z 2009-05-28T20:20:34Z <p>Many of the kits available from <a href="http://adafruit.com/" rel="nofollow">Adafruit Industries</a> are based on 8-bit AVR microcontrollers, excellent for electronics and programming tinkering.</p> http://stackoverflow.com/questions/885597/string-to-byte-array-in-php/885676#885676 1 Answer by Sparr for String to byte array in php Sparr 2009-05-20T00:29:26Z 2009-05-20T00:29:26Z <pre><code>print_r(unpack("H*","The quick fox jumped over the lazy brown dog")) Array ( [1] =&gt; 54686520717569636b20666f78206a756d706564206f76657220746865206c617a792062726f776e20646f67 ) </code></pre> <p>T = 0x54, h = 0x68, ...</p> <p>You can split the result into two-hex-character chunks if necessary.</p> http://stackoverflow.com/questions/885546/how-do-you-calculate-the-greatest-number-of-repetitions-in-a-list/885566#885566 2 Answer by Sparr for How do you calculate the greatest number of repetitions in a list? Sparr 2009-05-19T23:37:19Z 2009-05-19T23:37:19Z <p>Loop through the list, keep track of the current number, how many times it has been repeated, and compare that to the most times youve seen that number repeated.</p> <pre><code>Counts={} Current=0 Current_Count=0 LIST = [1, 2, 2, 2, 2, 1, 1, 1, 2, 2, 1, 1] for i in LIST: if Current == i: Current_Count++ else: Current_Count=1 Current=i if Current_Count&gt;Counts[i]: Counts[i]=Current_Count print Counts </code></pre> http://stackoverflow.com/questions/884512/how-to-cap-and-round-number-in-ruby/884560#884560 1 Answer by Sparr for How to cap and round number in ruby Sparr 2009-05-19T19:21:25Z 2009-05-19T19:21:25Z <p><a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/ref%5Fc%5Ffloat.html" rel="nofollow">float.ceil</a> is what you want for positive numbers. Be sure to consider the behavior for negative numbers. That is, do you want -1.5 to "cap" to -1 or -2?</p> http://stackoverflow.com/questions/884472/top-algorithms-to-learn/884484#884484 2 Answer by Sparr for Top Algorithms To Learn Sparr 2009-05-19T19:06:05Z 2009-05-19T19:06:05Z <p><a href="http://en.wikipedia.org/wiki/Dijkstra%27s%5Falgorithm" rel="nofollow">Dijkstra's algorithm</a> and <a href="http://en.wikipedia.org/wiki/A%2A%5Fsearch%5Falgorithm" rel="nofollow">A*</a> are two graph traversal algorithms that you should be familiar with.</p> http://stackoverflow.com/questions/871388/why-are-ssl-certs-self-signed-if-they-have-no-real-signature/871426#871426 1 Answer by Sparr for Why are SSL certs self-signed if they have no real signature Sparr 2009-05-16T01:23:44Z 2009-05-16T01:23:44Z <p>You need to understand how RSA encryption works. The signer generates two encryption keys, one private and one public. They give you the public key, and encrypt data with the private key. Having the public key, you are able to verify that the data was encrypted by the correct person, because no one else has their private key. In the case of a signed certificate, there is a web of trust, in which you can verify the identity of relatively few individuals (the certificate authorities), and you trust them with regard to the verification of third parties. Every certificate must be signed, by the very nature of how the system works. A certificate can be signed by anyone, and "self-signed" certificates are the simplest approach when you don't care about the verifiability of the signer.</p> http://stackoverflow.com/questions/870757/should-we-care-if-a-prospective-hire-understand-big-o-notation/870815#870815 1 Answer by Sparr for Should we care if a prospective hire understand Big O notation? Sparr 2009-05-15T20:52:00Z 2009-05-15T20:52:00Z <p>You fail to make a distinction between understanding Big Oh notation (or time complexity in general) and having memorized the time complexity of a bubble sort. I can give you a very thorough explanation of the former, and could not remember the latter to save my life. Of course, if you sat me down in front of (pseudo)code for a bubble sort I could tell you the time complexity of it.</p> http://stackoverflow.com/questions/866427/why-do-language-converters-suck/866450#866450 0 Answer by Sparr for Why do language converters suck? Sparr 2009-05-14T23:55:45Z 2009-05-14T23:56:07Z <p>You consider only the simplest case. A complete interpreter has to handle much more complicated cases, involving things like type promotion, GOTO, classes, etc...</p> http://stackoverflow.com/questions/859270/algorithm-for-base-10-numeric-display-minimum-changes-per-refresh/865612#865612 1 Answer by Sparr for Algorithm for base-10 numeric display - minimum changes per refresh Sparr 2009-05-14T20:36:21Z 2009-05-14T20:36:21Z <p>If you do not need the data expressed by the 4th digit, and are strictly bound to a 4 digit display, have you considered using the 4th digit as an increase/decrease indicator? Flash some portion of the top or bottom of the zero at 2Hz* to indicate that the next change of the gauge will be an increase or decrease.</p> <p>I think you could also do well to make a good model of the response of your device, whatever it is, to adjustments, and use that model to extrapolate the target number based on the first half second of the two second stabilization process.</p> <p>*this assumes that you have the two updates per second you posited. Most 4 digit displays are multiplexed, so you could probably flash it at a much higher frequency with a little driver tweaking.</p> http://stackoverflow.com/questions/865335/when-why-is-it-a-bad-idea-to-use-the-fscanf-function/865379#865379 1 Answer by Sparr for When/why is it a bad idea to use the fscanf() function? Sparr 2009-05-14T19:57:35Z 2009-05-14T19:57:35Z <p>When fscanf() fails, due to an input failure or a matching failure, the file pointer (that is, the position in the file from which the next byte will be read) is left in a position other than where it would be had the fscanf() succeeded. This is typically undesirable in sequential file reads. Reading one line at a time results in the file input being predictable, while single line failures can be handled individually.</p> http://stackoverflow.com/questions/826531/how-do-you-change-a-text-variable-to-an-int-in-php/826542#826542 8 Answer by Sparr for How do you change a text variable to an int in PHP? Sparr 2009-05-05T19:29:31Z 2009-05-05T19:29:31Z <p>It likely doesn't work because you misspelled length twice, instead of zero or three times.</p> http://stackoverflow.com/questions/691506/project-euler-for-programmers/691584#691584 0 Answer by Sparr for Project Euler for programmers? Sparr 2009-03-27T21:45:50Z 2009-03-27T21:45:50Z <p>There is rarely a single "best" solution to a problem like this. Code golf sites will let you find the shortest-source-code solution. Many other sites (ACM, UVA, etc) score based on the efficiency of your solution for known or unknown test cases. Very few sites score for readability, maintainability, robustness, etc.</p> http://stackoverflow.com/questions/688164/regex-for-replacing-and-adding-attributes-to-an-html-tag/688185#688185 1 Answer by Sparr for RegEx for replacing and adding attributes to an HTML tag Sparr 2009-03-27T01:25:57Z 2009-03-27T01:25:57Z <p>With appropriate escaping (that I can never remember without trial and error), and something to increment the img_number, you want to replace something like this:</p> <p>(&lt;img .*?)(?:id=".*")?(.*?/>)</p> <p>with something like this this:</p> <p>\1 id="img_$i"\2</p> http://stackoverflow.com/questions/678829/some-random-c-questions-ascii-magic-and-bitwise-operators/678884#678884 0 Answer by Sparr for Some random C questions (ascii magic and bitwise operators) Sparr 2009-03-24T19:28:30Z 2009-03-24T19:28:30Z <p>1) A char is really just a 8-bit integer. '0' == 48, and all that that implies.</p> <p>2) (~(pointer->intX) &amp; (1 &lt;&lt; i)) evalutates whether the 'i'th bit (from the right) in the intX member of whatever pointer points to is not set. The ~ inverts the bits, so all the 0s become 1s and vice versa, then the 1 &lt;&lt; i puts a single 1 in the desired location, &amp; combines the two values so that only the desired bit is kept, and the whole thing evalutes to true if that bit was 0 to begin with.</p> <p>3) | is bitwise or. It takes each bit in both operands and performs a logical OR, producing a result where each bit is set if either operand had that bit set. 0b11000000 | 0b00000011 == 0b11000011. |= is an assignment operator, in the same way that a+=b means a=a+b, a|=b means a=a|b.</p> <p>Not using bitwise operators CAN make things easier to read in some cases, but it will usually also make your code significantly slower without strong compiler optimization.</p> http://stackoverflow.com/questions/675471/screenshot-of-a-windows-application-running-under-wine-linux/675636#675636 0 Answer by Sparr for Screenshot of a windows application running under wine (linux) Sparr 2009-03-23T23:37:00Z 2009-03-23T23:37:00Z <p>You could duplicate the functionality of ImageMagick's import command using MagickWand (C API) or Magick++ (C++ API), but calling import directly via system() as suggested by justinhj is likely the simplest approach if you don't mind distributing import with your software.</p> http://stackoverflow.com/questions/675493/have-you-ever-turned-down-morally-questionable-or-unethical-web-work/675508#675508 0 Answer by Sparr for Have you ever turned-down morally questionable or unethical web work? Sparr 2009-03-23T22:41:55Z 2009-03-23T22:41:55Z <p>I have no qualms about "morally questionable", but I do not do work that crosses my non-moral principles. That is, I have rejected potential work for domain squatters and a debt collection company. I would not accept any work, web-related or not, from sources such as those.</p> http://stackoverflow.com/questions/675477/last-few-html-tags-not-rendering/675496#675496 1 Answer by Sparr for Last few html tags not rendering? Sparr 2009-03-23T22:37:00Z 2009-03-23T22:37:00Z <p>If 'View Source' does not show you the tags then it is not a rendering problem, but a server or network problem, as the content is not being delivered to the browser.</p> http://stackoverflow.com/questions/667802/what-is-the-algorithm-to-convert-an-excel-column-letter-into-its-number/667847#667847 1 Answer by Sparr for What is the algorithm to convert an Excel Column Letter into its Number? Sparr 2009-03-20T20:27:03Z 2009-03-20T20:44:08Z <p>Loop through the characters from last to first. Multiply the value of each letter (A=1, Z=26) times 26**N, add to a running total. My string manipulation skill in C# is nonexistent, so here is some very mixed pseudo-code:</p> <pre><code>sum=0; len=length(letters); for(i=0;i&lt;len;i++) sum += ((letters[len-i-1])-'A'+1) * pow(26,i); </code></pre> http://stackoverflow.com/questions/574463/running-ie6-ie7-and-ie8-on-the-same-machine/663813#663813 0 Answer by Sparr for Running IE6, IE7, and IE8 on the same machine Sparr 2009-03-19T20:00:33Z 2009-03-19T20:00:33Z <p>Somewhat related, you should consider running your site past <a href="http://browsershots.org/" rel="nofollow">BrowserShots</a> when it is almost done, see how it looks in dozens of browsers on hundreds of configurations.</p> http://stackoverflow.com/questions/660329/prevent-back-button-from-showing-post-confirmation-alert/660346#660346 2 Answer by Sparr for Prevent Back button from showing POST confirmation alert Sparr 2009-03-18T22:27:36Z 2009-03-18T22:27:36Z <p>One way to avoid that warning/behavior is to do the POST via AJAX, then send the user to another page (or not) separately.</p> http://stackoverflow.com/questions/644359/should-a-dropdown-list-be-used-to-enter-your-state-abbreviation/644430#644430 1 Answer by Sparr for Should a dropdown list be used to enter your state abbreviation? Sparr 2009-03-13T20:10:35Z 2009-03-13T20:10:35Z <p>I was going to post NYSystemsAnalyst's answer, but he beat me. I will instead add a caveat... If you use a dropdown list, it must be complete. Do not forget the obvious DC, or the less common but plausible PR or AE/AA/AP, or the rather improbable but still valid AS, FM, MH, MP, PW, and VI.</p> <p><a href="http://www.usps.com/ncsc/lookups/usps%5Fabbreviations.html" rel="nofollow">The official list</a></p> http://stackoverflow.com/questions/641282/regex-on-ip-numeric-value-in-mysql/641341#641341 1 Answer by Sparr for Regex on IP numeric value in MySQL? Sparr 2009-03-13T03:10:16Z 2009-03-13T20:00:37Z <p>You are comparing ip to the result of INET_ATON, which implies that ip is a 32-bit integer. Your operation should be simply...</p> <pre><code>SELECT * FROM transactions WHERE (longip &amp; 0xFF000000) = (0x7F000000) </code></pre> <p>This will be far faster than applying a regex to a dotted IP in a string, and faster than the LIKE '127.%' solution.</p> http://stackoverflow.com/questions/640021/whats-the-comma-for-in-this-code-example/640171#640171 0 Answer by Sparr for What's the comma for in this code example? Sparr 2009-03-12T19:41:23Z 2009-03-12T19:41:23Z <p>The full context is as follows:</p> <blockquote> <p>Also, like if, you can use while as a statement modifier, at the end of a statement:</p> <pre><code>cash = 100_000.00 sum = 0 cash += 1.00, sum while cash &lt; 1_000_000.00 # underscores ignored </code></pre> <p>So cash just keeps adding up until it equals $1,000,000.00. I like that!</p> </blockquote> <p>There is obviously at least one mistake here. My guess is that the author accidentally used a perl or C style comma operator, then removed only part of the offending statement.</p> http://stackoverflow.com/questions/632568/large-items-in-the-notification-area-aka-system-tray/632595#632595 2 Answer by Sparr for Large items in the notification area (AKA system tray)? Sparr 2009-03-10T22:50:19Z 2009-03-10T22:50:19Z <p>I believe that the only thing that can go in the system tray that is larger than an icon is the clock. There are dozens of applications that replace the standard clock, including at least one open source option from which you may be able to take some relevant code.</p> <p><a href="http://sourceforge.net/projects/wincalendartime/" rel="nofollow">WinCalendartime</a></p> http://stackoverflow.com/questions/445893/create-window-larger-than-desktop-display-resolution/445949#445949 Comment by Sparr on Create Window larger than desktop (display resolution) Sparr 2009-11-03T06:40:46Z 2009-11-03T06:40:46Z Same instructions, but move the window left and drag the right edge. Now you have a window wider than your screen. http://stackoverflow.com/questions/1019953/n-grams-for-sequence-correction Comment by Sparr on N-Grams for sequence correction Sparr 2009-06-19T21:05:58Z 2009-06-19T21:05:58Z should 2,3=&gt;7,4,3 be 2,,3=&gt;7,4,3 in your last two examples? Also, does the null &quot;,,&quot; entry have any different significance than the other items? http://stackoverflow.com/questions/922911/what-is-a-good-piece-of-low-cost-electronic-kit-for-programming/922935#922935 Comment by Sparr on What is a good piece of low cost electronic kit for programming? Sparr 2009-06-01T19:18:36Z 2009-06-01T19:18:36Z There are thousands of small LCD options. You can get a 20x2 character (7x5) LCD including a serial driver for a few dollars. If you want graphics, a 160x120 12-bit RGB LCD will run you maybe $20 at QTY=1 http://stackoverflow.com/questions/885546/how-do-you-calculate-the-greatest-number-of-repetitions-in-a-list/885551#885551 Comment by Sparr on How do you calculate the greatest number of repetitions in a list? Sparr 2009-05-19T23:44:10Z 2009-05-19T23:44:10Z -1 to counter George's +1 on an incorrect answer http://stackoverflow.com/questions/885546/how-do-you-calculate-the-greatest-number-of-repetitions-in-a-list Comment by Sparr on How do you calculate the greatest number of repetitions in a list? Sparr 2009-05-19T23:43:39Z 2009-05-19T23:43:39Z Specifically the longest run of each number http://stackoverflow.com/questions/885066/improve-my-function-generate-seo-friendly-title Comment by Sparr on Improve my function: generate SEO friendly title Sparr 2009-05-19T21:38:42Z 2009-05-19T21:38:42Z What are you basing your assumptions here on? Why are spaces in titles not &quot;SEO friendly&quot;? What is the purpose of using sequential numbers to differentiate the titles? http://stackoverflow.com/questions/445425/what-algorithms-should-every-developer-know/445554#445554 Comment by Sparr on What algorithms should every developer know? Sparr 2009-05-19T20:58:21Z 2009-05-19T20:58:21Z I took a few pseudocode shortcuts and my syntax is rusty, but forgiving those faults... how would this solution fare in your interview? I spent about 5 minutes on it, and it would take about 10 more to make it runnable. (forgive the lack of formatting in a comment) map { $oh=$oh*2+($_&gt;0) } @arr; map { $ex=$ex*2+($_&lt;0) } @arr; @win = { 0b111000000, 0b000111000, 0b000000111, 0b100100100, 0b010010010, 0b001001001, 0b100010001, 0b001010100 }; map { if($oh&amp;$_==$_){return 1} } @win; map { if($ex&amp;$_==$_){return -1} } @win; return 0; http://stackoverflow.com/questions/880330/bash-check-if-user-mount-fails/880343#880343 Comment by Sparr on bash check if user mount fails Sparr 2009-05-19T00:08:30Z 2009-05-19T00:08:30Z I would point out that this is how you check the success of pretty much any well behaved application on most platforms. http://stackoverflow.com/questions/871388/why-are-ssl-certs-self-signed-if-they-have-no-real-signature/871426#871426 Comment by Sparr on Why are SSL certs self-signed if they have no real signature Sparr 2009-05-18T21:15:36Z 2009-05-18T21:15:36Z Because most software only accepts keys in the form of certificates. You can't feed popular browsers (without addons) simple known keyring data and do anything useful with it, while the same data in the form of certificates allows all sorts of things http://stackoverflow.com/questions/870757/should-we-care-if-a-prospective-hire-understand-big-o-notation Comment by Sparr on Should we care if a prospective hire understand Big O notation? Sparr 2009-05-16T00:51:28Z 2009-05-16T00:51:28Z Tell us where they are giving phone interviews to such unqualified candidates? I need a new position. http://stackoverflow.com/questions/865335/when-why-is-it-a-bad-idea-to-use-the-fscanf-function/865374#865374 Comment by Sparr on When/why is it a bad idea to use the fscanf() function? Sparr 2009-05-14T20:13:09Z 2009-05-14T20:13:09Z I take &quot;expand on why&quot; to mean that your answer should be based on the premise already presented, that being the file pointer issue. If he wanted OTHER reasons he would not have linked to the origin of the question, or quoted the relevant part of it. http://stackoverflow.com/questions/865335/when-why-is-it-a-bad-idea-to-use-the-fscanf-function/865374#865374 Comment by Sparr on When/why is it a bad idea to use the fscanf() function? Sparr 2009-05-14T20:00:27Z 2009-05-14T20:00:27Z while buffer overflows are one problem with the scanf() family of functions, they are unrelated to the problem asked about here. -1 http://stackoverflow.com/questions/865335/when-why-is-it-a-bad-idea-to-use-the-fscanf-function/865364#865364 Comment by Sparr on When/why is it a bad idea to use the fscanf() function? Sparr 2009-05-14T19:58:42Z 2009-05-14T19:58:42Z while buffer overflows are one problem with the scanf() family of functions, they are unrelated to the problem asked about here. -1 http://stackoverflow.com/questions/826473/what-is-the-most-recent-version-of-safari-for-iphone Comment by Sparr on What is the most recent version of Safari for iPhone? Sparr 2009-05-05T19:31:13Z 2009-05-05T19:31:13Z You realize that some people don't install software updates, so they could be running historical versions? There are people today using IE5 and IE6, Firefox 1.5 and Firefox 2, Opera 8 and 9. Assuming everyone uses the newest version is just as bad as assuming they use a particular browser. http://stackoverflow.com/questions/823030/elegant-pythonic-solution-for-forcing-all-keys-and-values-to-lower-case-in-neste Comment by Sparr on Elegant, pythonic solution for forcing all keys and values to lower case in nested dictionaries of Unicode strings? Sparr 2009-05-05T02:41:22Z 2009-05-05T02:41:22Z -1 for not saying anything useful about your problem in the title