User Ambush Commander - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:00:23Zhttp://stackoverflow.com/feeds/user/23845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1753983/help-with-changing-how-jwysiwyg-editor-works/1754187#17541871Answer by Ambush Commander for Help with changing how jWYSIWYG editor worksAmbush Commander2009-11-18T07:17:55Z2009-11-18T07:17:55Z<p>You could search replace <br>s with newlines, and then use %AutoFormat.AutoParagraph</p>
http://stackoverflow.com/questions/1709538/add-an-attribute-to-html-purifier-filter/1709807#17098072Answer by Ambush Commander for Add an attribute to HTML Purifier filter?Ambush Commander2009-11-10T17:41:11Z2009-11-10T18:34:47Z<p><a href="http://htmlpurifier.org/live/configdoc/plain.html#Attr.AllowedRel" rel="nofollow">This configuration directive may be of interest</a> to you. As for your code, it works for me; perhaps you have magic quotes turned on or haven't flushed the cached appropriately? (Try bumping DefinitionRev in that case.)</p>
<p>The other classic error when trying to use rel is that it doesn't work with XHTML Strict; that doctype doesn't define rel, so Attr.AllowedRel doesn't do anything (this should be mentioned in the docs but isn't.) So, you'll have to pick a different doctype if you want to keep your W3C checkmark or use the original code.</p>
http://stackoverflow.com/questions/1569485/parse-error-in-pattern/1569645#15696450Answer by Ambush Commander for Parse Error In PatternAmbush Commander2009-10-15T00:04:53Z2009-10-15T00:04:53Z<p>Compiles fine for me. Is that all of your code?</p>
http://stackoverflow.com/questions/1368809/allow-embed-object-param-html-tags-with-htmlpurifier/1369042#13690420Answer by Ambush Commander for Allow embed/object/param HTML tags with HTMLPurifier?Ambush Commander2009-09-02T17:19:54Z2009-09-02T17:19:54Z<p>The best solution you have is <a href="http://htmlpurifier.org/docs/enduser-youtube.html" rel="nofollow">http://htmlpurifier.org/docs/enduser-youtube.html</a></p>
http://stackoverflow.com/questions/1242925/can-you-prevent-xsrf-by-including-the-session-key-in-the-params-of-all-post-reque/1242942#12429422Answer by Ambush Commander for Can you prevent XSRF by including the session key in the params of all POST requests?Ambush Commander2009-08-07T04:52:23Z2009-08-07T04:52:23Z<p>Assuming that the session key is not leaked (which could happen if your PHP is poorly configured and uses session.use_trans_sid) and you are not vulnerable to session fixation attacks, yes, this is secure. This is because a request forger cannot read your cookies, and thus does not know what the correct value is. </p>
<p>You may be interested in <a href="http://csrf.htmlpurifier.org/" rel="nofollow">CSRF Magic</a>, which claims to allow you to protect your application by including a single file.</p>
http://stackoverflow.com/questions/1207386/which-operating-system-is-the-best-for-php-development-or-development-in-general/1207415#12074153Answer by Ambush Commander for Which Operating System is the best for PHP development or Development in General?Ambush Commander2009-07-30T15:37:29Z2009-07-30T15:37:29Z<p>If you're talking about PHP development, there's pretty robust support in all of the operating systems. Linux really starts shining if you're monkeying with the source code and/or building PHP extensions (it's possible on Windows, but VERY unpleasant).</p>
http://stackoverflow.com/questions/1189708/ncurses-to-external-shell-and-back-messing-with-keys0ncurses to external shell and back messing with keysAmbush Commander2009-07-27T18:07:50Z2009-07-28T14:18:17Z
<p>I have this ncurses application that is doing the standard recipe for
temporarily dropping out of ncurses, running an external
editor/shell/whatever, and then dropping back to ncurses when it's done.</p>
<p>This ~almost works, except that the first few keypresses that ncurses
gets afterwards are obviously bogus; ncurses thinks ^[ and A are seen
respectively if I press the up arrow twice. </p>
<p>Anyone seen this behavior before and know what the magic incant to fix
this is? If it helps any, this is the Ruby ncurses library.</p>
http://stackoverflow.com/questions/1189708/ncurses-to-external-shell-and-back-messing-with-keys/1190069#11900690Answer by Ambush Commander for ncurses to external shell and back messing with keysAmbush Commander2009-07-27T19:18:56Z2009-07-27T19:30:12Z<p>After rootling around a bit, I found a cargo culting solution: explicitly call keypad(1) after getting out the shell on stdscr. I have no idea why this works, but it does. I'll mark someone else's answer as yes if they can explain why. <del>The current working theory is that keypad touches some sort of internal buffer and clears it.</del></p>
<p>Scratch that:</p>
<pre>NCURSES_EXPORT(int)
keypad(WINDOW *win, bool flag)
{
T((T_CALLED("keypad(%p,%d)"), win, flag));
if (win) {
win->_use_keypad = flag;
returnCode(_nc_keypad(SP, flag));
} else
returnCode(ERR);
}</pre>
http://stackoverflow.com/questions/1188817/shut-off-htmlpurifier-upgrade-message/1188916#11889160Answer by Ambush Commander for shut off htmlpurifier upgrade messageAmbush Commander2009-07-27T15:40:52Z2009-07-27T15:40:52Z<p>Did you install both the updated <em>module</em> and the <em>library</em>? The module is <a href="http://drupal.org/project/htmlpurifier" rel="nofollow">here</a> while the library you should download <a href="http://htmlpurifier.org" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1145409/two-concepts-from-xslt-in-other-languages-apply-templates-and-xpath/1145515#11455152Answer by Ambush Commander for Two concepts from XSLT in other languages: apply-templates and xpathAmbush Commander2009-07-17T20:27:57Z2009-07-17T20:27:57Z<p>XPath, while essential to making XSLT work, is independent of it; libraries like libxml give you it for free. The style of template application you describe is a little trickier; that's what you would normally use XSLT for.</p>
<p>Any programming language that does this should be functional. You could try writing your own, less-verbose, XSLT dialect; Perl also may give you enough rope to emulate this feature convincingly (although the performance implications are unclear).</p>
<p>The tough answer, though, is that this doesn't really exist, except as libraries for already existing languages.</p>
http://stackoverflow.com/questions/1139953/haskell-faster-summation-of-primes/1139984#11399848Answer by Ambush Commander for Haskell: faster summation of primesAmbush Commander2009-07-16T20:09:30Z2009-07-16T20:09:30Z<p>It sounds like your problem is not summing the numbers, but generating them. What is your implementation of listOfPrimes?</p>
<p>This paper may be of interest: <a href="http://lambda-the-ultimate.org/node/3127" rel="nofollow">http://lambda-the-ultimate.org/node/3127</a></p>
http://stackoverflow.com/questions/741396/correcting-for-outliers-in-a-running-average2Correcting for outliers in a running averageAmbush Commander2009-04-12T07:24:17Z2009-06-24T12:16:27Z
<p>We have a daemon that reads in data from some sensors, and among the things it calculates (besides simply just reporting the state) is the average time it takes for the sensors to change from one value to another. It keeps a running average of 64 datapoints, and assumes that runtime is fairly constant.</p>
<p>Unfortunately, as demonstrated by the below graph, the input data isn't the most pristine:</p>
<p><img src="http://random-hall.mit.edu/blog/wp-content/uploads/2009/04/graphpng.png" /></p>
<p>(Each line represents a different set of data; the x-axis doesn't really mean anything besides a vague historical time axis).</p>
<p>My obvious solution for dealing with this would be to create a histogram of the data and then pick the mode. However, I was wondering if there were other methods that would yield better performance or would be more suited for operation with a running average. Some quick Wikipedia searches suggest algorithms for detecting outliers may be also suitable. Simplicity is a plus, since the daemon is written in C.</p>
<p><strong>Edit</strong>: I scoped out Wikipedia and came up with these various techniques:</p>
<ul>
<li><p>Chauvenet's criterion: using the mean and standard deviation, calculate the probability a particular datapoint would happen, and then exclude it if the probability is actually that bad is less than 50%. While this seems to be well suited for correcting a running average on the fly, I'm not quite convinced of its efficacy: it seems with large data-sets it would not want to discard datapoints.</p></li>
<li><p>Grubbs' test: Another method that uses difference from the mean to standard deviation, and has some expression for when the hypothesis of "no outliers" is rejected</p></li>
<li><p>Cook's distance: Measures the influence a datapoint has on a least squares regression; our application would probably reject it if it exceeded 1</p></li>
<li><p>Truncated mean: Discard the low end and the high end, and then take the mean as normal</p></li>
</ul>
<p>Anyone have any specific experience and can comment on these statistical techniques?</p>
<p>Also, some comments about the physical situation: we're measuring the average time until completion of a mechanical washing machine, so its runtime should be fairly constant. I'm not sure if it actually has a normal distribution.</p>
<p><strong>Edit 2</strong>: Another interesting question: when the daemon is bootstrapping, as in, doesn't have any previous data to analyze, how should it deal with incoming data? Simply not do any outlier pruning?</p>
<p><strong>Edit 3</strong>: One more thing... if the hardware does change such that the runtimes do become different, is it worth it to make the algorithm sufficiently robust such that it won't discard these new runtimes, I should I just remember to flush the cache when that happens?</p>
http://stackoverflow.com/questions/937583/xslt-cache-problems/962363#9623630Answer by Ambush Commander for XSLT Cache problemsAmbush Commander2009-06-07T17:29:37Z2009-06-07T17:29:37Z<p>It sounds like you haven't loaded the extension in you php.ini file with extension=xslcache.so. If you do have that line in your php.ini file, check your error logs and see if PHP had trouble loading the extension.</p>
http://stackoverflow.com/questions/397250/unicode-regex-invalid-xml-characters2Unicode Regex; Invalid XML charactersAmbush Commander2008-12-29T06:51:44Z2009-06-07T08:30:38Z
<p>The list of valid XML characters is well known, as defined by the spec it's:</p>
<pre><code>#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]
</code></pre>
<p>My question is whether or not it's possible to make a PCRE regular expression for this (or its inverse) without actually hard-coding the codepoints, by using Unicode general categories. An inverse might be something like [\p{Cc}\p{Cs}\p{Cn}], except that improperly covers linefeeds and tabs and misses some other invalid characters.</p>
http://stackoverflow.com/questions/872931/php-5-2-virtual-like-static-methods/872941#8729413Answer by Ambush Commander for PHP 5.2 Virtual-like static methodsAmbush Commander2009-05-16T18:07:33Z2009-05-16T18:07:33Z<p>Not really. That's why LSB was added to 5.3. Instantiation is the way to go, in this place, along with a singleton.</p>
http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function1Find header file that defines a C functionAmbush Commander2009-05-03T04:56:30Z2009-05-03T07:28:25Z
<p>Shouldn't be hard, right? Right?</p>
<p>I am currently trawling the OpenAFS codebase to find the header definition of pioctl. I've thrown everything I've got at it: checked ctags, grepped the source code for pioctl, etc. The closest I've got to a lead is the fact that there's a file pioctl_nt.h that contains the definition, except it's not actually what I want because none of the userspace code directly includes it, and it's Windows specific.</p>
<p>Now, I'm not expecting you to go and download the OpenAFS codebase and find the header file for me. I am curious, though: what are your techniques for finding the header file you need when everything else fails? What are the worst case scenarios that could cause a grep for pioctl in the codebase to not actually come up with anything that looks like a function definition?</p>
<p>I should also note that I have access to two independent userspace programs that have done it properly, so in theory I could do an O(n) search for the function. But none of the header files pop out to me, and n is large...</p>
<p><strong>Edit:</strong> The immediate issue has been resolved: pioctl() is defined implicitly, as shown by this:</p>
<pre><code>AFS.xs:2796: error: implicit declaration of function ‘pioctl’
</code></pre>
http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816418#8164180Answer by Ambush Commander for Find header file that defines a C functionAmbush Commander2009-05-03T05:34:21Z2009-05-03T06:25:06Z<p>The current working theory that we've decided on, after poking at the preprocessor and not finding anything either, is that OpenAFS is letting the compiler infer the prototype of the function, since it returns an integer and takes pointer, integer, pointer, integer as its parameters. I'll be dealing with this by merely defining it myself.</p>
<p><strong>Edit</strong>: Excellent! I've found the smoking gun:</p>
<pre><code>AFS.xs:2796: error: implicit declaration of function ‘pioctl’
</code></pre>
http://stackoverflow.com/questions/783906/git-under-windows-msys-or-cygwin/784361#7843611Answer by Ambush Commander for Git under windows: MSYS or Cygwin?Ambush Commander2009-04-24T02:55:33Z2009-04-24T02:55:33Z<p>Both Cygwin and Msys Git work fairly well for normal use-cases. If you want to use scripts such as git-svn, Cygwin is a better bet. As an old Windows users who finally jumped ship to Linux, I can definitely say that Cygwin is a great boon and worth having in and of itself.</p>
<p>Context is important though; what projects are these? Who are they used by? Etc.</p>
http://stackoverflow.com/questions/779883/how-does-git-decide-what-goes-into-a-blob/779893#7798931Answer by Ambush Commander for How does GIT decide what goes into a blob?Ambush Commander2009-04-23T00:55:25Z2009-04-23T00:55:25Z<p>All files go into a blob, but that doesn't necessarily mean that Git will store a file per a blob (Git has a highly efficient packed format that puts stuff together). If you are interested about the internals about Git's packing format, you're better off asking on their list, or reading their architectural documentation.</p>
http://stackoverflow.com/questions/766316/fielding-support-requests-for-os-project-here2Fielding support requests for OS project hereAmbush Commander2009-04-19T22:59:18Z2009-04-23T00:53:37Z
<p>I run the open-source project, and maintain a support forum to help answer user's questions. This works tolerably well, except that it turns that at a forum is not actually that good at managing user support requests.</p>
<p>So, on the spur of the moment, I thought to myself, "StackOverflow is a perfect place for answering questions! Why don't I just shut down the forum and tell everyone to post their questions here?"</p>
<p>It's not clear to me, however, if I should actually do that. Comments?</p>
<p><strong>Edit:</strong> It's been pointed out that questions could be asked that are not programming related. I should clarify that this particular open-source project is a developer library, so 99% of the questions we see are programming related.</p>
<p><strong>Edit 2:</strong> Decided not to move my operations here. Thanks everyone who replied!</p>
http://stackoverflow.com/questions/779800/a-gentler-introduction-to-functional-programming/779877#7798771Answer by Ambush Commander for A Gentler Introduction to Functional ProgrammingAmbush Commander2009-04-23T00:49:34Z2009-04-23T00:49:34Z<p>I first learned functional programming through Scheme, but I'm not sure I'd recommend the experience to someone else if they don't have teachers and exercises available (if you are set on it, <a href="http://web.mit.edu/alexmv/6.001/" rel="nofollow">you can check out these slides</a>, which were done by students for students, in commemoration of another class that is no longer taught at that university.) Be sure to ask for a lot of help; there's also a nice online tutor linked to on that page which you can do simple exercises on.</p>
<p>Functional programming consists of a lot of parts, and if you don't grasp monads or functors in Haskell, that's OK: you can still the finer parts of recursive and functional thinking without them. If you haven't been learning out of Real World Haskell, I strongly recommend it now. One of the trickier bits is learning both Haskell's type system and functional programming at the same time, which are both fairly novel to programmers.</p>
http://stackoverflow.com/questions/775730/please-confirm-or-correct-my-english-interpretation-of-this-haskell-code-snippe/775766#7757667Answer by Ambush Commander for Please confirm or correct my "English interpretation" of this Haskell code snippetAmbush Commander2009-04-22T05:04:49Z2009-04-22T18:25:35Z<blockquote>
<ul>
<li>The "Cons" value constructor has a single type parameter.</li>
</ul>
</blockquote>
<p>Nope: you've already parametrized it when you declared <code>data List a</code>. One effective property of this is that if I have a Nil :: List Int, I can't interchange it with a Nil :: List Char.</p>
<blockquote>
<ul>
<li>If you use the "Cons" value constructor, there are 2 fields which must be provided. The first required field is an instance of List. The second required field is an instance of a.</li>
</ul>
</blockquote>
<p>You've got it swapped: the first required field is an instance of a, the second field is an instance of List.</p>
<p><a href="http://book.realworldhaskell.org/read/defining-types-streamlining-functions.html" rel="nofollow">This chapter of Real World Haskell</a> may be of interest.</p>
<blockquote>
<p>Thanks. That is the chapter I'm on right now. So ... when the code says "Cons a (List a)", I thought the "Cons a" part of that was stating that the Cons value constructor was parameterised. They haven't yet covered the syntax for parameterised types, so I guessed that the syntax must require re-stating "a" if you intend to use a. But you're saying that's not necessary? And therefore that's not what that "a" means?</p>
</blockquote>
<p>Nope. Once we declare a parameter in our type, we get to reuse it otherwise to say "that type should be used there." It's a little bit like an <code>a -> b -> a</code> type signature: a is parameterizing the type, but then I have to use the same a as the return value.</p>
<blockquote>
<p>OK, but this is confusing. It seems that the first "a" means "the first field is an instance of a",</p>
</blockquote>
<p>Nope, that is <em>not</em> true. It just means that the data type parametrizes over some type a.</p>
<blockquote>
<p>and it ALSO means "the first field has the same value as the value they passed in for a". In other words, it specifies type AND value.</p>
</blockquote>
<p>No, that is also not true.</p>
<p>Here's an instructive example, the syntax of which you may or may not have seen before:</p>
<pre>foo :: Num a => a -> a</pre>
<p>This is a fairly standard signature for a function that takes a number and does something to it and gives you another number. What I actually mean by "a number" in Haskell-speak, though, is some arbitrary type "a" that implements the "Num" class.</p>
<p>Thus, this parses to the English:</p>
<blockquote>
<p>Let a indicate a type implementing the Num typeclass, then the signature of this method is one parameter with the type a, and the return value of the type a</p>
</blockquote>
<p>Something similar happens with data.</p>
<p>It also occurs to me that the instance of List in the specification of Cons is also confusing you: be really careful when parsing that: whereas Cons is specifying a constructor, which is basically a pattern that Haskell is going to wrap the data into, (List a) looks like a constructor but is actually simply a type, like Int or Double. a is a type, NOT a value in any sense of the term.</p>
<p><strong>Edit:</strong> In response to the most recent edit.</p>
<p>I think a dissection is first called for. Then I'll deal with your questions point by point.</p>
<p>Haskell data constructors are a little weird, because you define the constructor signature, and you don't have to make any other scaffolding. Datatypes in Haskell don't have any notion of member variable. (Note: there's an alternate syntax that this way of thinking is more amenable to, but let's ignore that for now).</p>
<p>Another thing is that Haskell code is dense; its type signature are like that to. So expect to see the same symbol reused in different contexts. Type inferencing also plays a big role here.</p>
<p>So, back to your type:</p>
<pre>data List a = Cons a (List a)
| Nil</pre>
<p>I chunk this into several pieces:</p>
<pre>data <b>List a</b></pre>
<p>This defines the name of the type, and any parameterized types that it will have later on. Note that you will only see this show up in other type signatures.</p>
<pre><b>Cons</b> a (List a) |
<b>Nil</b></pre>
<p>This is the name of the data constructor. <b>This IS NOT a type</b>. We can, however, pattern match for it, ala:</p>
<pre>foo :: List a -> Bool
foo Nil = True</pre>
<p>Notice how List a is the type in the signature, and Nil is both the data constructor and the "thing" we pattern match for.</p>
<pre>Cons <b>a (List a)</b></pre>
<p>These are the types of the values we slot into the constructor. Cons has two entries, one is of type a, and one is of type List a.</p>
<blockquote>
<p>So my question is, why does "a" in the first field mean "the type of this field is 'a' and the value of this field is 'a'", while "a" in the second field means only "the type of this field is 'List of a'"?</p>
</blockquote>
<p>Simple: don't think of it as us specifying the type; think of it has Haskell is inferencing the type out of it. So, for our intents and purposes, we're simply sticking a 0 in there, and a Nil in the second section. Then, Haskell looks at our code and thinks:</p>
<ul>
<li>Hmm, I wonder what the type of Cons 0 Nil is</li>
<li>Well, Cons is a data constructor for List a. I wonder what the type of List a is</li>
<li>Well, a is used in the first parameter, so since the first parameter is an Int (another simplification; 0 is actually a weird thing that is typeclassed as Num), so that's mean a is a Num</li>
<li>Hey, well, that also means that the type of Nil is List Int, even though there's nothing there that would actually say that</li>
</ul>
<p>(Note, that's not actually how it's implemented. Haskell can do a lot of weird things while inferencing types, which is partially why the error messages suck.)</p>
http://stackoverflow.com/questions/775726/whats-the-fuss-about-haskell/775759#77575924Answer by Ambush Commander for What's the fuss about Haskell?Ambush Commander2009-04-22T05:01:33Z2009-04-22T05:01:33Z<p>The way it was pitched to me, and what I think is true after having worked on learning on Haskell for a month now, is the fact that functional programming twists your brain in interesting ways: it forces you to think about familiar problems in different ways: instead of loops, think in maps and folds and filters, etc. In general, if you have more than one perspective on a problem, it makes you better enabled to reason about this problem, and switch viewpoints as necessary.</p>
<p>The other really neat thing about Haskell is its type system. It's strictly typed, but the type inference engine makes it feel like a Python program that magically tells you when you've done a stupid type-related mistake. Haskell's error messages in this regard are somewhat lacking, but as you get more acquainted with the language you'll say to yourself: this is what typing is supposed to be!</p>
http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/774847#7748471Answer by Ambush Commander for When do I use the PHP constant "PHP_EOL"?Ambush Commander2009-04-21T22:06:16Z2009-04-21T22:06:16Z<p>The definition of PHP_EOL is that it gives you the newline character of the operating system you're working on.</p>
<p>In practice, you should almost never need this. Consider a few cases:</p>
<ul>
<li><p>When you are outputting to the web, there really isn't any convention except that you should be consistent. Since most servers are Unixy, you'll want to use a "\n" anyway.</p></li>
<li><p>If you're outputting to a file, PHP_EOL might seem like a good idea. However, you can get a similar effect by having a literal newline inside your file, and this will help you out if you're trying to run some CRLF formatted files on Unix without clobbering existing newlines (as a guy with a dual-boot system, I can say that I prefer the latter behavior)</p></li>
</ul>
<p>PHP_EOL is so ridiculously long that it's really not worth using it.</p>
http://stackoverflow.com/questions/774824/explain-python-entry-points/774833#7748330Answer by Ambush Commander for Explain Python entry points?Ambush Commander2009-04-21T22:02:34Z2009-04-21T22:02:34Z<p>What context are you planning on using these Python scripts in? If it's the context of a web application, you want to read about WSGI, the gateway interface that handles moving HTTP calls to Python egg calls.</p>
http://stackoverflow.com/questions/774804/php-regex-remove-useless-paragraph-tags-from-string/774817#7748173Answer by Ambush Commander for php/regex: remove useless paragraph tags from stringAmbush Commander2009-04-21T21:58:31Z2009-04-21T21:58:31Z<pre>$result = preg_replace('#<p[^>]*>(\s|&nbsp;?)*</p>#', '', $input);</pre>
<p>This doesn't catch literal nbsp characters in the output, but that's very rare to see.</p>
<p>Since you're dealing with HTML, if this is user-input I might suggest using HTML Purifier, which will also deal with XSS vulnerabilities. The configuration setting you want there to remove empty p tags is %AutoFormat.RemoveEmpty.</p>
http://stackoverflow.com/questions/774784/is-it-possible-to-overload-operators-in-python/774794#7747945Answer by Ambush Commander for Is it possible to overload ++ operators in Python?Ambush Commander2009-04-21T21:53:05Z2009-04-21T21:53:05Z<p>Well, the ++ operator doesn't exist in Python, so you really can't overload it.</p>
<p>What happens when you do something like:</p>
<pre>1 ++ 2</pre>
<p>is actually</p>
<pre>1 + (+2)</pre>
http://stackoverflow.com/questions/766867/can-invariant-testing-replace-unit-testing1Can invariant testing replace unit testing?Ambush Commander2009-04-20T04:14:35Z2009-04-20T04:24:59Z
<p>As a programmer, I have bought whole-heartedly into the TDD philosophy and take the effort to make extensive unit tests for any nontrivial code I write. Sometimes this road can be painful (behavioral changes causing cascading multiple unit test changes; high amounts of scaffolding necessary), but on the whole I refuse to program without tests that I can run after every change, and my code is much less buggy as a result.</p>
<p>Recently, I've been playing with Haskell, and it's resident testing library, QuickCheck. In a fashion distinctly different from TDD, QuickCheck has an emphasis on testing invariants of the code, that is, certain properties that hold over all (or substantive subsets) of inputs. A quick example: a stable sorting algorithm should give the same answer if we run it twice, should have increasing output, should be a permutation of the input, etc. Then, QuickCheck generates a variety of random data in order to test these invariants.</p>
<p>It seems to me, at least for pure functions (that is, functions without side effects--and if you do mocking correctly you can convert dirty functions into pure ones), that invariant testing could supplant unit testing as a strict superset of those capabilities. Each unit test consists of an input and an output (in imperative programming languages, the "output" is not just the return of the function but also any changed state, but this can be encapsulated). One could conceivably created a random input generator that is good enough to cover all of the unit test inputs that you would have manually created (and then some, because it would it would generate cases that you wouldn't have thought of); if you find a bug in your program due to some boundary condition, you improve your random input generator so that it generates that case too.</p>
<p>The challenge, then, is whether or not it's possible to formulate useful invariants for every problem. I'd say it is: it's a lot simpler once you have an answer to see if it's correct than it is to calculate the answer in the first place. Thinking about invariants also helps clarify the specification of a complex algorithm much better than ad hoc test cases, which encourage a kind of case-by-case thinking of the problem. You could use a previous version of your program as a model implementation, or a version of a program in another language. Etc. Eventually, you could cover all of your former test-cases without having to explicitly code an input or an output.</p>
<p>Have I gone insane, or am I on to something?</p>
http://stackoverflow.com/questions/404118/disable-tap-clicks0Disable tap clicksAmbush Commander2008-12-31T21:54:15Z2009-04-19T23:03:36Z
<p>When on a Tablet PC, touching the screen with your pen is interpreted as a click. The sensitivity is adjusted so that even if your pen slips a little bit, it is still interpreted as a click; you have to move a certain distance before it becomes a drag-n-drop event.</p>
<p>In a notebook style application, however, you never want to "click" inside of the area; the only events that one cares about are mousedown and mouseup.</p>
<p>What I'm finding is that my tablet driver on Windows is batching the mousedown and mouseup together for strokes that are shorter than a certain time; thus, my application only sees a single click and draws a dot, where a short dash should have been.</p>
<p>Now, I know it's possible to turn this off, because that's exactly what Windows Journal has done. I don't know what system level call/flag I would have to use, however, in order to get this working. It would be even better if someone could tell me how to do this in Java, but since it's platform specific I imagine I'll probably need to dynamically call it.</p>
<p><strong>Edit:</strong> I'm no longer interested in the answer to this question, as I am now using Xournal on linux.</p>
http://stackoverflow.com/questions/664315/internet-explorer-8-prototypes-and-xmlhttprequest1Internet Explorer 8 prototypes and XMLHttpRequestAmbush Commander2009-03-19T22:33:38Z2009-03-20T18:27:48Z
<p>This is partially a request for a workaround, and partially an attempt to get the word out that Internet Explorer's prototype implementation is still faulty.</p>
<p>The following code does not work on Internet Explorer.</p>
<pre><code>XMLHttpRequest.prototype.old = XMLHttpRequest.prototype.open;
var x = new XMLHttpRequest();
x.old("POST", "test", false);
</code></pre>
<p>For IE 8 beta, and all previous versions, the XMLHttpRequest.prototype property never existed in the first place. In IE8, it does exist, but you'll get a "Invalid procedure call or argument" error. Internet Explorer doesn't like decoration.</p>
<p>Does anyone know of a workaround for this?</p>
<p><strong>Update</strong>:</p>
<p>It has been pointed that I could override the entirety of XMLHttpRequest with a new function and constructor, and then create a wrapper script ala XMLHttpRequest.js. The prototype method is much shorter, so I would still prefer to use it for non-IE browsers.</p>
http://stackoverflow.com/questions/1639026/how-to-write-numbers-in-lambda-using-ghciComment by Ambush Commander on how to write numbers in lambda using ghciAmbush Commander2009-10-28T19:40:49Z2009-10-28T19:40:49ZCan't reproduce either. What version GHC/post the full transcript.http://stackoverflow.com/questions/1189708/ncurses-to-external-shell-and-back-messing-with-keys/1194411#1194411Comment by Ambush Commander on ncurses to external shell and back messing with keysAmbush Commander2009-07-28T15:39:55Z2009-07-28T15:39:55ZSo, what I don't understand here, though, is why it "fixes" itself after two keystrokes.http://stackoverflow.com/questions/937583/xslt-cache-problems/962363#962363Comment by Ambush Commander on XSLT Cache problemsAmbush Commander2009-06-09T04:09:51Z2009-06-09T04:09:51ZAssuming Linux, and that you're running the script from Apache, check your apache error.log. If you have shell access, try running php directly.http://stackoverflow.com/questions/962344/what-are-the-string-terminators-that-all-server-side-languages-useComment by Ambush Commander on What are the string terminators that all server-side languages use?Ambush Commander2009-06-07T17:28:31Z2009-06-07T17:28:31ZUm, this sounds like something that could be trivially looked up by checking the associated docs...http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816418#816418Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T06:26:39Z2009-05-03T06:26:39ZFound it! See edit.http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816406#816406Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T06:07:44Z2009-05-03T06:07:44ZI have the OpenAFS source tree, and have also been grepping it heavily. I also know where the "real function definition" is (there are, in fact, multiple definitions of it). sys/sys_pioctl.h doesn't exist for me (not in source tree, not in /usr/include). pioctl() used to be ioctl() with some extra code spliced into the kernel at runtime, but then GPL happened and OpenAFS had to stop doing that.http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816418#816418Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T06:05:15Z2009-05-03T06:05:15ZSo... it failed on an incompatible memcpy declaration...http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816406#816406Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T05:30:06Z2009-05-03T05:30:06ZI would imagine that, if I grepped through /usr/include for pioctl and didn't find any mention of pioctl, cscope wouldn't be able to find it either.http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816409#816409Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T05:29:14Z2009-05-03T05:29:14ZManpages? Haha, you make me laugh! OpenAFS has no manpages.http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-function/816387#816387Comment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T05:14:32Z2009-05-03T05:14:32ZWhat stage during the compilation process would be most appropriate for this?http://stackoverflow.com/questions/816366/find-header-file-that-defines-a-c-functionComment by Ambush Commander on Find header file that defines a C functionAmbush Commander2009-05-03T05:02:45Z2009-05-03T05:02:45ZI am! I also have done case-insensitive searches.http://stackoverflow.com/questions/764540/html-sanitization-in-c/764559#764559Comment by Ambush Commander on HTML Sanitization in C++Ambush Commander2009-04-24T03:18:38Z2009-04-24T03:18:38ZThose regular expressions have known vulnerabilities in them. Also, I doubt you'd want to load it into PCRE.http://stackoverflow.com/questions/764540/html-sanitization-in-cComment by Ambush Commander on HTML Sanitization in C++Ambush Commander2009-04-24T02:56:15Z2009-04-24T02:56:15ZWhy are you implementing a web application in C++?http://stackoverflow.com/questions/775730/please-confirm-or-correct-my-english-interpretation-of-this-haskell-code-snippe/775766#775766Comment by Ambush Commander on Please confirm or correct my "English interpretation" of this Haskell code snippetAmbush Commander2009-04-23T02:34:24Z2009-04-23T02:34:24ZGreat! Now you should mark an answer on this question ;-)http://stackoverflow.com/questions/775730/please-confirm-or-correct-my-english-interpretation-of-this-haskell-code-snippe/775766#775766Comment by Ambush Commander on Please confirm or correct my "English interpretation" of this Haskell code snippetAmbush Commander2009-04-22T18:26:26Z2009-04-22T18:26:26ZSee my response. Type inferencing is the answer!