User TokenMacGuy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T16:33:20Zhttp://stackoverflow.com/feeds/user/65696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823692/finding-the-joy-of-javascript-or-searching-for-another-ui-focused-languages/1823714#18237140Answer by TokenMacGuy for Finding the joy of Javascript or searching for another UI-focused languages?TokenMacGuy2009-12-01T02:57:59Z2009-12-01T02:57:59Z<p>You might want to take a look at Tcl/Tk. Although the language is sort of arcane, and the library is at least in principle available in other languages, notably python and perl, the toolkit in its native language is really very clear and concise. </p>
http://stackoverflow.com/questions/1817064/get-object-doc-as-raw-string/1817077#18170772Answer by TokenMacGuy for get `object.__doc__` as raw stringTokenMacGuy2009-11-29T23:00:31Z2009-11-29T23:00:31Z<p>the difference between a raw string and otherwise is just a matter of source code literal syntax. once parsed, there is no 'raw' string object. the result of <code>repr(object.__doc__)</code> will always be such that you can copy and paste the result into a python source script and get the original string. </p>
<p>consider:</p>
<pre><code>>>> def foo():
... 'foo\nbar'
... pass
...
>>> foo.__doc__
'foo\nbar'
>>> print foo.__doc__
foo
bar
>>>
</code></pre>
http://stackoverflow.com/questions/1788693/move-c-program-to-foreground/1788724#17887242Answer by TokenMacGuy for move c++ program to foregroundTokenMacGuy2009-11-24T08:41:35Z2009-11-24T08:41:35Z<p>what daemon does is to close the standard io channels. There is no way to 'reopen' them. A standard practice is to arrange for some other IPC mechanism, such as a socket, and interact with the daemonized process with another program. </p>
http://stackoverflow.com/questions/1780457/ever-had-to-dumb-down-for-a-job/1780515#17805150Answer by TokenMacGuy for Ever had to "dumb down" for a job?TokenMacGuy2009-11-23T00:12:50Z2009-11-23T00:12:50Z<p>An important part of the decision, when the job doesn't pass the Joel test, is to accept that whatever they are doing probably does work for them. It might not work as well as it could, but at least they have found a way to get some work done despite their tools. The real question would be, are they actually getting work done? If not, then don't take the job. If they are getting things done, then if the work they do interests you, (even if the tools they use don't meet your ideals), then you should consider taking the job. </p>
<p>They're getting work done because they are flexible enough to work within the constraints they have. Maybe they can continue to improve. Maybe</p>
http://stackoverflow.com/questions/1778025/expand-users-table-with-django/1778096#17780962Answer by TokenMacGuy for expand users table with djangoTokenMacGuy2009-11-22T07:24:20Z2009-11-22T07:24:20Z<p><a href="http://stackoverflow.com/questions/576345/django-project-structure-recommended-structure-to-share-an-extended-auth-user/576362#576362">Please see my (and others) answer to this question:</a> </p>
http://stackoverflow.com/questions/1746608/google-maps-not-rendering-completely-on-page/1778075#17780751Answer by TokenMacGuy for Google Maps not rendering completely on page?TokenMacGuy2009-11-22T07:14:03Z2009-11-22T07:14:03Z<p>I'm not able to reproduce the issue you are having, but it looks similar to another issue I've seen with google maps.</p>
<p>It looks like you might be running afoul of the way google maps determines which tiles are in view. It calculates this only once, when the map is loaded into the div the first time, and if the div grows, then not enough map will be drawn. Fortunately, this is easy to deal with. any time the container may have resized, use the <code>checkResize()</code> method on the map instance, and the clipping area will be recomputed from the container's current size.</p>
http://stackoverflow.com/questions/1705217/python-form-processing-alternatives1Python Form Processing alternativesTokenMacGuy2009-11-10T02:02:14Z2009-11-18T15:37:56Z
<p><code>django.forms</code> is very nice, and does almost exactly what I want to do on my current project, but unfortunately, Google App Engine makes most of the rest of Django unusable, and so packing it along with the app seems kind of silly. </p>
<p>I've also discovered FormAlchemy, which is an SQLAlchemy analog to Django forms, and I intend to explore that fully, but it's relationship with SQLAlchemy suggests that it may also give me some trouble.</p>
<p>Is there any HTML Forms processing library for python that I haven't considered?</p>
http://stackoverflow.com/questions/1217189/dfa-based-regular-expression-matching-how-to-get-all-matches/1217263#12172635Answer by TokenMacGuy for DFA based regular expression matching - how to get all matches!TokenMacGuy2009-08-01T19:13:45Z2009-11-16T21:31:33Z<h1>Assumptions</h1>
<p>Based on your question and later comments you want a general method for splitting a sentence into non-overlapping, matching substrings, with non-matching parts of the sentence discarded. You also seem to want optimal run-time performance. Also I assume you have an existing algorithm to transform a regular expression into DFA form already. I further assume that you are doing this by the usual method of first constructing an NFA and converting it by subset construction to DFA, since I'm not aware of any other way of accomplishing this.</p>
<p>Before you go chasing after shadows, make sure your trying to apply the right tool for the job. Any discussion of regular expressions is almost always muddied by the fact that folks use regular expressions for a lot more things than they are really optimal for. If you want to receive the benefits of regular expressions, be sure you're using a regular expression, and not something broader. If what you want to do can't be somewhat coded into a regular expression itself, then you can't benefit from the advantages of regular expression algorithms (fully)</p>
<p>An obvious example is that no amount of cleverness will allow a FSM, or any algorithm, to predict the future. For instance, an expression like <code>(a*b)|(a)</code>, when matched against the string <code>aaa</code>... where the ellipsis is the portion of the expression not yet scanned <em>because the user has not typed them yet</em>, cannot give you every possible right subgroup. </p>
<p>For a more detailed discussion of Regular expression implementations, and specifically Thompson NFA's please check <a href="http://swtch.com/~rsc/regexp/regexp1.html" rel="nofollow">this link</a>, which describes a simple C implementation with some clever optimizations.</p>
<h1>Limitations of Regular Languages</h1>
<p>The O(n) and Space(O(1)) guarantees of regular expression algorithms is a fairly narrow claim. Specifically, a regular language is the set of all languages that <em>can be recognized in constant space</em>. This distinction is important. Any kind of enhancement to the algorithm that does something more sophisticated than accepting or rejecting a sentence is likely to operate on a larger set of languages than regular. On top of that, if you can show that some enhancement requires greater than constant space to implement, then you are also outside of the performance guarantee. That being said, we can still do an awful lot if we are very careful to keep our algorithm within these narrow constraints. </p>
<p>Obviously that eliminates anything we might want to do with recursive backtracking. A stack does not have constant space. Even maintaining pointers into the sentence would be verboten, since we don't know how long the sentence might be. A long enough sentence would overflow any integer pointer. We can't create new states for the automaton as we go to get around this. All possible states (and a few impossible ones) must be predictable before exposing the recognizer to any input, and that quantity must be bounded by some constant, which may vary for the specific language we want to match, but by no other variable.</p>
<p>This still allows some room for adding additonal behavior. The usual way of getting more mileage is to add some extra annotations for where certain events in processing occur, such as when a subexpression started or stopped matching. Since we are only allowed to have constant space processing, that limits the number of subexpression matches we can process. This usually means the latest instance of that subexpression. This is why, when you ask for the subgrouped matched by <code>(a|)*</code>, you always get an empty string, because any sequence of <code>a</code>'s is implicitly followed by infinitely many empty strings.</p>
<p>The other common enhancement is to do some clever thing between states. For example, in perl regex, <code>\b</code> matches the empty string, but only if the previous character is a word character and the next is not, or visa versa. Many simple assertions fit this, including the common line anchor operators, <code>^</code> and <code>$</code>. Lookahead and lookbehind assertions are also possible, but much more difficult.</p>
<p>When discussing the differences between various regular language recognizers, it's worth clarifying if we're talking about match recognition or search recognition, the former being an accept only if the entire sentence is in the language, and the latter accepts if any substring in the sentence is in the language. These are equivalent in the sense that if some expression <strong><em><code>E</code></em></strong> is accepted by the search method, then <code>.*</code><strong><em><code>(E)</code></em></strong><code>.*</code> is accepted in the match method. </p>
<p>This is important because we might want to make it clear whether an expression like <code>a*b|a</code> accepts <code>aa</code> or not. In the search method, it does. Either token will match the right side of the disjunction. It doesn't match, though, because you could never get that sentence by stepping through the expression and generating tokens from the transitions, at least in a single pass. For this reason, i'm only going to talk about match semantics. Obviously if you want search semantics, you can modify the expression with <code>.*</code>'s </p>
<p>Note: A language defined by expression <strong><em><code>E</code></em></strong><code>|.*</code> is not really a very manageable language, regardless of the sublanguage of <strong><em><code>E</code></em></strong> because it matches all possible sentences. This represents a real challenge for regular expression recognizers because they are really only suited to recognizing a language or else confirming that a sentence is not in that same language, rather than doing any more specific work. </p>
<h1>Implementation of Regular Language Recognizers</h1>
<p>There are generally three ways to process a regular expression. All three start the same, by transforming the expression into an NFA. This process produces one or two states for each production rule in the original expression. The rules are extemely simple. Here's some crude ascii art: note that <code>a</code> is any single literal character in the language's alphabet, and <code>E1</code> and <code>E2</code> are any regular expression. Epsilon(ε) is a state with inputs and outputs, but ignores the stream of characters, and doesn't consume any input either.</p>
<pre><code>a ::= > a ->
E1 E2 ::= >- E1 ->- E2 ->
/---->
E1* ::= > --ε <-\
\ /
E1
/-E1 ->
E1|E2 ::= > ε
\-E2 ->
</code></pre>
<p><em>And that's it!</em> Common uses such as E+, E?, [abc] are equivalent to EE*, (E|), (a|b|c) respectively. Also note that we add for each production rule a very small number of new states. In fact each rule adds zero or one state (in this presentation). characters, quantifiers and dysjunction all add just one state, and the concatenation doesn't add any. Everything else is done by updating the fragments' end pointers to start pointers of other states or fragments. </p>
<p>The epsilon transition states are important, because they are ambiguous. When encountered, is the machine supposed to change state to once following state or another? should it change state at all or stay put? That's the reason why these automatons are called nondeterministic. The solution is to have the automaton transition to the <em>right</em> state, whichever allows it to match the best. Thus the tricky part is to figure out how to do that.</p>
<p>There are fundamentally two ways of doing this. The first way is to try each one. Follow the first choice, and if that doesn't work, try the next. This is recursive backtracking, appears in a few (and notable) implementations. For well crafted regular expressions, this implementation does very little extra work. If the expression is a bit more convoluted, recursive backtracking is very, very bad, O(2^n).</p>
<p>The other way of doing this is to instead try both options in parallel. At each epsilon transition, add to the <em>set</em> of current states both of the states the epsilon transition suggests. Since you are using a set, you can have the same state come up more than once, but you only need to track it once, either you are in that state or not. If you get to the point that there's no option for a particular state to follow, just ignore it, that path didn't match. If there are no more states, then the entire expression didn't match. as soon as any state reaches the final state, you are done.</p>
<p>Just from that explanation, the amount of work we have to do has gone up a little bit. We've gone from having to keep track of a single state to several. At each iteration, we may have to update on the order of m state pointers, including things like checking for duplicates. Also the amount of storage we needed has gone up, since now it's no longer a single pointer to one possible state in the NFA, but a whole set of them. </p>
<p>However, this isn't anywhere close to as bad as it sounds. First off, the number of states is bounded by the number of productions in the original regular expression. From now on we'll call this value <strong><em>m</em></strong> to distinguish it from the number of symbols in the input, which will be <strong><em>n</em></strong>. If two state pointers end up transitioning to the same new state, you can discard one of them, because no matter what else happens, they will both follow the same path from there on out. This means the number of state pointers you need is bounded by the number of states, so that to is <em>m</em>. </p>
<p>This is a bigger win in the worst case scenario when compared to backtracking. After each character is consumed from the input, you will create, rename, or destroy at most <em>m</em> state pointers. There is no way to craft a regular expression which will cause you to execute more than that many instructions (times some constant factor depending on your exact implementation), or will cause you to allocate more space on the stack or heap. </p>
<p>This NFA, simultaneously in some subset of its <em>m</em> states, may be considered some other state machine who's state represents the set of states the NFA it models could be in. each state of that FSM represents one element from the power set of the states of the NFA. This is exactly the DFA implementation used for matching regular expressions.</p>
<p>Using this alternate representation has an advantage that instead of updating <em>m</em> state pointers, you only have to update one. It also has a downside, since it models the powerset of <em>m</em> states, it actually has up to 2<sup><em>m</em></sup> states. That is an upper limit, because you don't model states that cannot happen, for instance the expression <code>a|b</code> has two possible states after reading the first character, either the one for having seen an <code>a</code>, or the one for having seen a <code>b</code>. No matter what input you give it, it cannot be in both of those states at the same time, so that state-set does not appear in the DFA. In fact, because you are eliminating the redundancy of epsilon transitions, many simple DFA's actually get SMALLER than the NFA they represent, but there is simply no way to guarantee that.</p>
<p>To keep the explosion of states from growing too large, a solution used in a few versions of that algorithm is to only generate the DFA states you actually need, and if you get too many, discard ones you haven't used recently. You can always generate them again. </p>
<h1>From Theory to Practice</h1>
<p>Many practical uses of regular expressions involve tracking the position of the input. This is technically cheating, since the input could be arbitrarily long. Even if you used a 64 bit pointer, the input could possibly be 2<sup>64</sup>+1 symbols long, and you would fail. Your position pointers have to grow with the length of the input, and now your algorithm now requires more than constant space to execute. In practice this isn't relevant, because if your regular expression did end up working its way through that much input, you probably won't notice that it would fail because you'd terminate it long before then.</p>
<p>Of course, we want to do more than just accept or reject inputs as a whole. The most useful variation on this is to extract submatches, to discover which portion of an input was matched by a certain section of the original expression. The simple way to achieve this is to add an epsilon transition for each of the opening and closing braces in the expression. When the FSM simulator encounters one of these states, it annotates the state pointer with information about where in the input it was at the time it encountered that particular transition. If the same pointer returns to that transition a second time, the old annotation is discarded and replaced with a new annotation for the new input position. If two states pointers with disagreeing annotations collapse to the same state, the annotation of a later input position wins again.</p>
<p>If you are sticking to Thompson NFA or DFA implementations, then there's not really any notion of greedy or non-greedy matching. A backtracking algorithm needs to be given a hint about whether it should start by trying to match as much as it can and recursively trying less, or trying as little as it can and recursively trying more, when it fails it first attempt. The Thompson NFA method tries all possible quantities simultaneously. On the other hand, you might still wish to use some greedy/nongreedy hinting. This information would be used to determine if newer or older submatch annotations should be preferred, in order to capture just the right portion of the input.</p>
<p>Another kind of practical enhancement is assertions, productions which do not consume input, but match or reject based on some aspect of the input position. For instance in perl regex, a <code>\b</code> indicates that the input must contain a word boundary at that position, such that the symbol just matched must be a word character, but the next character must not be, or visa versa. Again, we manage this by adding an epsilon transition with special instructions to the simulator. If the assertion passes, then the state pointer continues, otherwise it is discarded.</p>
<p>Lookahead and lookbehind assertions can be achieved with a bit more work. A typical lookbehind assertion <strong><em><code>r0</code></em></strong><code>(?<=</code><strong><em><code>r1</code></em></strong><code>)</code><strong><em><code>r2</code></em></strong> is transformed into two separate expressions, <code>.*</code><strong><em><code>r1</code></em></strong> and <strong><em><code>r0</code></em></strong><code>ε</code><strong><em><code>r2</code></em></strong>. Both expressions are applied to the input. Note that we added a <code>.*</code> to the assertion expression, because we don't actually care where it starts. When the simulator encounters the epsilon in the second generated fragment, it checks up on the state of the first fragment. If that fragment is in a state where it could accept right there, the assertion passes with the state pointer flowing into <strong><em><code>r2</code></em></strong>, but otherwise, it fails, and both fragments continue, with the second discarding the state pointer at the epsilon transition.</p>
<p>Lookahead also works by using an extra regex fragment for the assertion, but is a little more complex, because when we reach the point in the input where the assertion must succeed, none of the corresponding characters have been encountered (in the lookbehind case, they have all been encountered). Instead, when the simulator reaches the assertion, it starts a pointer in the start state of the assertion subexpression and annotates the state pointer in the main part of the simulation so that it knows it is dependent on the subexpression pointer. At each step, the simulation must check to see that the state pointer it depends upon is still matching. If it doesn't find one, then it fails wherever it happens to be. You don't have to keep any more copies of the assertion subexpressions state pointers than you do for the main part, if two state pointers in the assertion land on the same state, then the state pointers each of them depend upon will share the same fate, and can be reannotated to point to the single pointer you keep.</p>
<p>While were adding special instructions to epsilon transitions, it's not a terrible idea to suggest an instruction to make the simulator <em>pause</em> once in a while to let the user see what's going on. Whenever the simulator encounters such a transition, it will wrap up its current state in some kind of package that can be returned to the caller, inspected or altered, and then resumed where it left off. This could be used to match input interactively, so if the user types only a partial match, the simulator can ask for more input, but if the user types something invalid, the simulator is empty, and can complain to the user. Another possibility is to yield every time a subexpression is matched, allowing you to peek at every sub match in the input. This couldn't be used to exclude some submatches, though. For instance, if you tried to match <code>((a)*b)</code> against <code>aaa</code>, you could see three submatches for the a's, even though the whole expression ultimately fails because there is no b, and no submatch for the corresponding b's</p>
<p>Finally, there might be a way to modify this to work with backreferences. Even if it's elegent, it's sure to be inefficient, specifically, regular expressions plus backreferences are in NP-Complete, so I won't even try to think of a way to do this, because we are only interested (here) in (asymptotically) efficient possibilities.</p>
http://stackoverflow.com/questions/1697153/which-database-should-i-use-to-store-records-and-how-should-i-use-it/1697202#16972025Answer by TokenMacGuy for Which database should I use to store records, and how should I use it?TokenMacGuy2009-11-08T17:15:22Z2009-11-08T18:58:29Z<blockquote>
<p>I am seeing two possibilities: sqlite
and BerkeleyDB. As my use case is
clearly not relational, I am tempted
to go with BerkeleyDB, however I don't
really know how I should use it to
store my records, as it only stores
key/value pairs.</p>
</blockquote>
<p>What you are describing is exactly what relational is about, even if you only need one table. <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> will probably make this very easy to do.</p>
<p><em>EDIT:</em> The relational model doesn't have anything to do with relationships between tables. A relation is a subset of the Cartesian product of other sets. For instance, the cartesian product of the Real numbers, Real Numbers, and Real numbers (Yes, all three the same) produce 3d coordinate space, and you could define a relation upon that space with a formula, say <code>x*y = z</code>. each possible set of coordinates <code>(x0,y0,z0)</code> are either in the relation if they satisfy the given formula, or else they are not. </p>
<p>A relational database uses this concept with a few additional requirements. First, and most important, the size of the relation must be finite. The product relation given above doesn't satisfy that requirement, because there are infinitely many 3-tuples that satisfy the formula. There are a number of other considerations that have more to do with what is practical or useful on real computers solving real problems.</p>
<p>A better way of thinking about the problem is to think about where each type of persistence mechanism specifically works better than the other. You already recognize that a relational solution makes sense when you have many separate datasets (tables) that must support relationships between them (foreign key constraints), which is almost impossible to enforce with a key-value store. Another real advantage to relational is the way it makes rich, ad-hoc queries possible with the use of proper indexes. This is a consequence of the database layer actually understanding the data that it is representing. </p>
<p>A key-value store has it's own set of advantages. One of the more important is the way that key-value stores scale out. It is no consequence that <a href="http://memcached.org/" rel="nofollow">memcached</a>, <a href="http://couchdb.apache.org/" rel="nofollow">couchdb</a>, <a href="http://hadoop.apache.org/" rel="nofollow">hadoop</a> all use key-value storage, because it is easy to distribute key-value lookup across multiple servers. Another area that key-value storage works well is when the key or value is opaque, such as when the stored item is encrypted, only to be readable by it's owner.</p>
<p><hr></p>
<p>To drive this point home, that a Relational database works well even when you just don't need more than one table, consider the following (not original)</p>
<pre><code>SELECT t1.actor1
FROM workswith AS t1,
workswith AS t2,
workswith AS t3,
workswith AS t4,
workswith AS t5,
workswith AS t6
WHERE t1.actor2 = t2.actor1 AND
t2.actor2 = t3.actor1 AND
t3.actor2 = t4.actor1 AND
t4.actor2 = t5.actor1 AND
t5.actor2 = t6.actor1 AND
t6.actor2 = "Kevin Bacon";
</code></pre>
<p>Which, obviously uses a single table: <code>workswith</code> to compute every actor with a bacon number of 6</p>
http://stackoverflow.com/questions/1695646/how-to-get-the-webpage-source-code-using-c/1695649#16956494Answer by TokenMacGuy for How to get the webpage source code using C# TokenMacGuy2009-11-08T07:19:47Z2009-11-08T07:19:47Z<p>A standard way of checking the existence of a link is to use a <code>HEAD</code> request, which causes the remote server to send the headers for the requested object, but not the object itself. If you thus requested an object that is not on the server, the server gives you the normal 404 response, but if it does exist, you get a 200 response and no data after the headers. This way very little uninteresting data goes over the wire.</p>
http://stackoverflow.com/questions/1677957/why-byte-b-byte-0xff-is-equals-to-integer-1/1678040#16780402Answer by TokenMacGuy for Why byte b = (byte) 0xFF is equals to integer -1?TokenMacGuy2009-11-05T02:55:07Z2009-11-05T02:55:07Z<p>perhaps your confusion comes from why <code>(byte)0xFF</code> is somehow equal to <code>(int)0xFFFFFFFF</code>. What's happening here is the promotion from smaller to larger signed types causes the smaller value to be <em>sign extended</em>, whereby the most significant bit is copied to all of the new bits of the promoted value. an unsigned type will not become sign-extended, they get zero extended, the new bits will always be zero. </p>
<p>If it helps you to swallow it, think of it this way, every integer of any size also has some 'phantom' bits that are too significant to be represented. they are there, just not stored in the variable. a negative number has those bits nonzero, and positive numbers have all zeros for phantom bits when you promote a smaller value to a larger one, those phantom bits become real bits. </p>
http://stackoverflow.com/questions/1677992/why-use-a-templating-engine-with-a-framework/1678011#16780114Answer by TokenMacGuy for Why use a templating engine with a framework?TokenMacGuy2009-11-05T02:49:08Z2009-11-05T02:49:08Z<p>One big reason why you would want a separate template engine is because raw PHP is a bit too much for the presentation of your site. If it's just you making your site, and you have a good idea about how the site's templates aught to fit together, then this isn't really a downside, but for larger projects, it gets in the way. </p>
<p>If your project has outgrown a single developer, or if you want to add designer even before that, PHP is probably too hard a language to express the presentation in. Purpose built template languages are at the advantage because they are simple, and don't give you so-much rope as to hang yourself.</p>
<p>Larger projects, even when they don't require much input from multiple developers, can make the free-form of plain PHP a bit unwieldy. the purpose built template engine provides (or enforces) a basic structure to how each template fits with the rest.</p>
http://stackoverflow.com/questions/1675943/computing-article-abstracts4Computing article abstractsTokenMacGuy2009-11-04T19:09:01Z2009-11-04T20:48:01Z
<p>I'm looking for a way to automatically produce an abstract, basically the first few sentances/paragraphs of a blog entry, to display in a list of articles (which are written in markdown). Currently, I'm doing something like this:</p>
<pre><code>def abstract(article, paras=3):
return '\n'.join(article.split('\n')[0:paras])
</code></pre>
<p>to just grab the first few lines worth of text, but i'm not totally happy with the results. </p>
<p>What I'm really looking for is to end up with about 1/3 of a screenful of formatted text to display in the list of entries, but using the algorithm above, the amount pulled ends up with wildly varying amounts, as little as a line or two, is frequently mixed with more ideal sized abstracts.</p>
<p>Is there a library that's good at this kind of thing? if not, do you have any suggestions to improve the output?</p>
http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1676051#16760510Answer by TokenMacGuy for algorithm for list identification and parsingTokenMacGuy2009-11-04T19:29:24Z2009-11-04T19:29:24Z<p>I'm not sure what the best answer really is, But if you need to have few false positives, then perhaps what you should do is define a few patterns that are very likely to be lists, and strictly reject every other datum. </p>
<pre><code>patterns = [
re.compile(r'^\s*(\w+)(\s*,\s*(\w+))*\s*$'),
re.compile(r'^\s*(\w+)(\s*\.\s*(\w+))*\s*$'),
re.compile(r'^\s*(\w+)(\s*,\s*(\w+))*\s+and\s+(\w+)\s*^$')
]
acceptSet = [ line for line in candidateSet if
any(pattern.match(line) for pattern in patterns)]
</code></pre>
http://stackoverflow.com/questions/1653828/how-to-prepopulate-id-in-django/1671071#16710710Answer by TokenMacGuy for How to prepopulate ID in DjangoTokenMacGuy2009-11-04T00:42:35Z2009-11-04T00:42:35Z<p>One way to circumvent the double commit is to use something besides an autoincrementing primary key. Django doesn't really care what the primary key is so long as there is one, just one, and it is either a string or an integer. You could use something like a guid, which you can generate on the fly in your models at the time they are initialized, or you can let the database set it for you when you don't care what it is (assuming your database supports guids). </p>
http://stackoverflow.com/questions/1669514/should-i-inherit-from-stdexception/1669538#16695384Answer by TokenMacGuy for Should I inherit from std::exception?TokenMacGuy2009-11-03T19:15:51Z2009-11-03T19:15:51Z<p>The reason why you might want to inherit from <code>std::exception</code> is because it allows you to throw an exception that is caught according to that class, ie:</p>
<pre><code>class myException : public std::exception { ... };
try {
...
throw myException();
}
catch (std::exception &theException) {
...
}
</code></pre>
http://stackoverflow.com/questions/1661986/why-doesnt-pythons-mmap-work-with-large-files/1663603#16636031Answer by TokenMacGuy for Why doesn't Python's mmap work with large files?TokenMacGuy2009-11-02T20:48:42Z2009-11-02T20:48:42Z<p>the mmap module provides all the tools you need to poke around in your large file, but due to the limitations other folks have mentioned, you can't map it <strong><em>all at once</em></strong>. You can map a good sized chunk at once, do some processing and then unmap that and map another. the key arguments to the <code>mmap</code> class are <code>length</code> and <code>offset</code>, which do exactly what they sound like, allowing you to map <code>length</code> bytes, starting at byte <code>offset</code> in the mapped file. Any time you wish to read a section of memory that is outside the mapped window, you have to map in a new window.</p>
http://stackoverflow.com/questions/1658587/how-to-get-an-anonymous-function-to-keep-the-scoping-it-had-originally-when-calle/1658625#16586250Answer by TokenMacGuy for how to get an anonymous function to keep the scoping it had originally when called in an event handlerTokenMacGuy2009-11-01T22:36:33Z2009-11-01T22:36:33Z<p>The way I program my way out of this is to make sure that the closure is returned from a function in the scope of the captured variables. Something like so:</p>
<pre><code>function foo(){
var myFoo = 1;
return function (){return function() { myFoo += 1; return myFoo }}()
} // ^^
</code></pre>
http://stackoverflow.com/questions/1655996/variables-as-a-parameters-for-templates-in-c/1656035#16560350Answer by TokenMacGuy for Variables as a parameters for templates in C++TokenMacGuy2009-11-01T00:34:03Z2009-11-01T00:34:03Z<p>Many dynamic languages (and a few fancy compiled languages, like c++0x!) have something called closures, which are like functions, but also are first class objects in the sense that they wrap up some local state where they are used. </p>
<p>Regular C++ doesn't have this. Fortunately C++ doesn't care if template arguments are real functions or some other odd thing that works when you try to use <code>operator()</code> on it. broadly, these are known as <em>functors</em>, which is what you need here. </p>
<pre><code>struct calculate {
multimap<string, double> arr;
void operator()(string key) {
}
};
</code></pre>
<p>Using it is quite similar. </p>
<pre><code>multimap<string, double> arr;
vector<string> keys;
calculate Calc;
Calc.arr = arr;
// ...
for_each(keys.begin(), keys.end(), Calc);
</code></pre>
http://stackoverflow.com/questions/1655970/unit-tests-for-3rd-party-libraries/1655995#16559952Answer by TokenMacGuy for Unit tests for 3rd-party librariesTokenMacGuy2009-11-01T00:07:42Z2009-11-01T00:07:42Z<p>It is not the normal practice to unit test some other party's code. Normally, you would trust your upstream dependencies to work correctly. </p>
<p>But that's assuming you actually do trust them. There are all sorts of reasons this should break down. </p>
<p>For one thing, you are stuck with a dependency that is approximately abandoned, with a decent smattering of bugs. As you discover the bugs, write tests that exercise the bugs and exercise workarounds for the bugs. </p>
<p>Another reason might be because the third party keeps changing every damn thing. As you can make time, it's reasonable to add tests for dusty corners that you actually use, because those are the most likely to change on you in a new version. </p>
<p>Obviously either of these cases are really a huge waste of your precious time you could be spending making your app better rather than dealing with something outside your control. If you find you are in need of this kind of testing, you should really be looking for a more trustworthy alternative to that particular dependency.</p>
http://stackoverflow.com/questions/1655542/controller-must-have-access-to-model-and-view-model-must-have-access-to-controll/1655758#16557581Answer by TokenMacGuy for Controller must have access to model and view. Model must have access to controller and view. View must have access to controller and model. Look what happens!TokenMacGuy2009-10-31T22:12:36Z2009-10-31T22:12:36Z<p>Why should your models be able to access views or controllers? The whole idea of a model is that it abstractly represents some real-life thing or action, without actually doing anything related to, say, HTML presentation.</p>
<p>Why should your views have any more access than the models? The views are only concerned with showing what it <em>looks like</em>, or what action it should take when a particular request is made by a user. It has no business with why it looks the way it does or how the actions take place.</p>
<p>All of that interaction is the purview of the controller layer. </p>
<p>You can approach the problem by working on the models only. Interact with them by writing detailed unit tests, that verify they have sane behavior with a compact API. </p>
<p>Next you can build up a bit of your controller layer, with stub views that show little more than object ID's or whatever.</p>
<p>Add views for each kind of interaction you need for your application, and modify the controller to tie the new views to the models.</p>
http://stackoverflow.com/questions/1654947/list-implemented-using-an-inorder-binary-tree/1655230#16552301Answer by TokenMacGuy for List implemented using an inorder binary treeTokenMacGuy2009-10-31T18:43:18Z2009-10-31T18:43:18Z<p>I don't think you want to store the index, rather just the size of each subtree. For insance, if you wanted to look up the 10th element in the list, and the left and right subrees had 7 elements each, you would know that the root is the eight element (since it's in-order binary), and the first element of the right subree is 9th. armed with this knowledge, you would recurse into the right subree, looking for the 2nd element.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1652654/adding-64-bit-numbers-using-32-bit-arithmetic/1653030#16530301Answer by TokenMacGuy for Adding 64 bit numbers using 32 bit arithmeticTokenMacGuy2009-10-31T01:01:01Z2009-10-31T01:01:01Z<p>it looks something like this</p>
<pre><code>/* break up the 64bit number into smaller, 16bit chunks */
struct longint {
uint16 word0;
uint16 word1;
uint16 word2;
uint16 word3;
};
uint16 add(longint *result, longint *a, longint *b)
{
/* use an intermediate large enough to hold the result
of adding two 16 bit numbers together. */
uint32 partial;
/* add the chunks together, least significant bit first */
partial = a->word0 + b->word0;
/* extract thie low 16 bits of the sum and store it */
result->word0 = partial & 0x0000FFFF;
/* add the overflow to the next chunk of 16 */
partial = partial >> 16 + a->word1 + b->word1;
/* keep doing this for the remaining bits */
result->word1 = partial & 0x0000FFFF;
partial = partial >> 16 + a->word2 + b->word2;
result->word2 = partial & 0x0000FFFF;
partial = partial >> 16 + a->word3 + b->word3;
result->word3 = partial & 0x0000FFFF;
/* if the result overflowed, return nonzero */
return partial >> 16;
}
</code></pre>
<p>Actual hardware doesn't use 32 bits to add 16 bits at a time, only one extra bit of carry is ever needed for addition, and almost all CPU's have a carry status flag for when an addition operation overflowed, so if you are using a 32 bit cpu, you can add 64 bit operands in two, 32 bit operations.</p>
http://stackoverflow.com/questions/1652923/how-can-i-optimize-a-multiple-matrix-switch-case-algorithm/1652987#16529870Answer by TokenMacGuy for How can I optimize a multiple (matrix) switch / case algorithm?TokenMacGuy2009-10-31T00:44:12Z2009-10-31T00:44:12Z<p>Perhaps what you want is code generation?</p>
<pre><code>#! /usr/bin/python
first = [1, 2, 3]
second = ['a', 'b', 'c']
def emit(first, second):
result = "switch (var)\n{\n"
for f in first:
result += " case {0}:\n switch (subvar)\n {{\n".format(f)
for s in second:
result += " case {1}:\n process {1}{0};\n".format(f,s)
result += " }\n"
result += "}\n"
return result
print emit(first,second)
#file("autogen.c","w").write(emit(first,second))
</code></pre>
<p>This is pretty hard to read, of course, and you might really want a nicer template language to do your dirty work, but this will ease some parts of your task.</p>
http://stackoverflow.com/questions/1652901/basic-questions-pointers-to-objects-in-unorderedmaps-c/1652926#16529261Answer by TokenMacGuy for Basic questions: Pointers to objects in unordered_maps (C++)TokenMacGuy2009-10-31T00:17:51Z2009-10-31T00:17:51Z<p>if you never <code>delete</code> them, then the pointers are still ok. On the other hand, you might want to keep things a bit tidier and use standard containers for the whole shebang. </p>
<pre><code>typedef std::tr1::unordered_map<std::string, Strain> hmap;
typedef std::tr1::unordered_map<std::string, hmap::iterator> weakhmap;
hmap strainTable;
weakhmap liveStrains;
Strain firstStrain( idCtr, MRCA, NUM_STEPS );
strainTable[MRCA] = firstStrain;
liveStrains[MRCA] = strainTable.find(MRCA);
</code></pre>
http://stackoverflow.com/questions/1650338/calling-types-via-their-name-as-a-string-in-python/1652839#16528392Answer by TokenMacGuy for Calling types via their name as a string in PythonTokenMacGuy2009-10-30T23:49:15Z2009-10-30T23:49:15Z<p>Comments suggest that you are unhappy with the idea of using eval to generate data. looking for a function in <code>__builtins__</code> allows you to find <code>eval</code>. </p>
<p>the most basic solution given looks like this:</p>
<pre><code>import __builtin__
def parseInput(typename, value):
return getattr(__builtins__,typename)(value)
</code></pre>
<p>You would use it like so:</p>
<pre><code>>>> parseInput("int", "123")
123
</code></pre>
<p>cool. works pretty ok. how about this one though?</p>
<pre><code>>>> parseInput("eval", 'eval(compile("print \'Code injection?\'","","single"))')
Code injection?
</code></pre>
<p>does this do what you expect? Unless you explicitly want this, you need to do something to prevent untrustworthy inputs from poking about in your namespace. I'd strongly recommend a simple whitelist, gracefully raising some sort of exception in the case of invalid input, like so:</p>
<pre><code>import __builtin__
def parseInput(typename, value):
return {"int":int, "float":float, "str":str}[typename](value)
</code></pre>
<p>but if you just can't bear that, you can still add just a bit of armor by verifying that the requested function is actually a type:</p>
<pre><code>import __builtin__
def parseInput(typename, value):
typector = getattr(__builtins__,typename)
if type(typector) is type:
return typector(value)
else:
return None
</code></pre>
http://stackoverflow.com/questions/1638870/django-generic-templates/1639317#16393173Answer by TokenMacGuy for django generic templatesTokenMacGuy2009-10-28T18:50:20Z2009-10-30T23:17:40Z<p>If there's a django model for it, you can just stick to <code>django.contrib.admin</code> or <code>django.contrib.databrowse</code>. If not, then you might manage by skipping the django template altogether. example:</p>
<pre><code>from django.http import HttpResponse
import datetime
def current_datetime(request):
now = datetime.datetime.now()
html = "<html><body>It is now %s.</body></html>" % now
return HttpResponse(html)
</code></pre>
<p>But of course you wanted to avoid even writing that much, so instead of doing html, we can use plain text and the <code>pprint</code> module:</p>
<pre><code>from django.http import HttpResponse
import datetime
from pprint import pformat
def current_datetime(request):
now = datetime.datetime.now()
return HttpResponse(pformat(now), mimetype="text/plain")
</code></pre>
<p><em>edit:</em> Hmm... this seems like something a view decorator should handle: </p>
<pre><code>from django.http import HttpResponse
import datetime
import pprint
def prettyprint(fun):
return lambda request:HttpResponse(
pprint.pformat(fun(request)), mimetype="text/plain")
@prettyprint
def current_datetime(request):
return datetime.datetime.now()
</code></pre>
http://stackoverflow.com/questions/1641591/checking-arguments-in-numerical-python-code/1641656#16416560Answer by TokenMacGuy for Checking arguments in numerical python codeTokenMacGuy2009-10-29T04:44:48Z2009-10-29T04:44:48Z<p>I'm not sure if this will answer your question, but it strikes me that checking a lot of arguments at the start of a function isn't very <em>pythonic</em>.</p>
<p>What I mean by this is that it is the assumption of most pythonistas that we are all consenting adults, and we trust each other not to do something stupid. Here's how I'd write your example:</p>
<pre><code>def myfun(a, b):
'''a cannot be < 0'''
return a + b
</code></pre>
<p>This has three distinct advantages. First off, it's concise, there's really no extra code doing anything unrelated to what you're actually trying to get done. Second, it puts the information exactly where it belongs, in <code>help(myfun)</code>, where pythonistas are expected to look for usage notes. Finally, is a non-positive value for <code>a</code> really an error? Although you might think so, unless something definitely will break if a is zero (here it probably wont), then maybe letting it slip through and cause an error up the call stream is wiser. after all, if <code>a + b</code> is in error, it raises an exception which gets passed up the call stack and behavior is still pretty much the same.</p>
http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639221#16392210Answer by TokenMacGuy for Determining which inputs to weigh in an evolutionary algorithmTokenMacGuy2009-10-28T18:33:18Z2009-10-28T18:33:18Z<p>I think I might approach the problem you're describing by feeding more primitive data to a learning algorithm. For instance, a tetris game state may be described by the list of occupied cells. A string of bits describing this information would be a suitable input to that stage of the learning algorithm. actually training on that is still challenging; how do you know whether those are useful results. I suppose you could roll the whole algorithm into a single blob, where the algorithm is fed with the successive states of play and the output would just be the block placements, with higher scoring algorithms selected for future generations.</p>
<p>Another choice might be to use a large corpus of plays from other sources; such as recorded plays from human players or a hand-crafted ai, and select the algorithms who's outputs bear a strong correlation to some interesting fact or another from the future play, such as the score earned over the next 10 moves.</p>
http://stackoverflow.com/questions/1197321/need-help-generating-discrete-random-numbers-from-distribution/1197393#11973931Answer by TokenMacGuy for Need help generating discrete random numbers from distributionTokenMacGuy2009-07-28T23:57:33Z2009-10-26T19:44:12Z<p>The normal distribution is not described by its endpoints. Normally it's described by it's mean (which you have given to be 7) and its standard deviation. An important feature of this is that it is possible to get a value far outside the expected range from this distribution, although that will be vanishingly rare, the further you get from the mean. </p>
<p>The usual means for getting a value from a distribution is to generate a random value from a uniform distribution, which is quite easily done with, for example, <a href="http://linux.die.net/man/3/rand" rel="nofollow"><code>rand()</code></a>, and then use that as an argument to a <a href="http://en.wikipedia.org/wiki/Cumulative%5Fdistribution%5Ffunction" rel="nofollow">cumulative distribution function,</a> which maps probabilities to upper bounds. For the standard distribution, this function is </p>
<pre><code>F(x) = 0.5 - 0.5*erf( (x-μ)/(σ * sqrt(2.0)))
</code></pre>
<p>where <code>erf()</code> is the <a href="http://en.wikipedia.org/wiki/Error%5Ffunction" rel="nofollow">error function</a> which may be described by a taylor series:</p>
<blockquote>
<p>erf(z) = 2.0/sqrt(2.0) * Σ<sup>∞</sup><sub>n=0</sub> ((-1)<sup>n</sup>z<sup>2n + 1</sup>)/(n!(2n + 1))</p>
</blockquote>
<p>I'll leave it as an excercise to translate this into C. </p>
<p>If you prefer not to engage in the exercise, you might consider using the <a href="http://www.gnu.org/software/gsl/manual/html%5Fnode/The-Gaussian-Distribution.html" rel="nofollow">Gnu Scientific Library</a>, which among many other features, has a technique to generate random numbers in one of many common distributions, of which the Gaussian Distribution (hint) is one.</p>
<p>Obviously, all of these functions return floating point values. You will have to use some rounding strategy to convert to a discrete value. A useful (but naive) approach is to simply downcast to integer. </p>
http://stackoverflow.com/questions/1817064/get-object-doc-as-raw-string/1817077#1817077Comment by TokenMacGuy on get `object.__doc__` as raw stringTokenMacGuy2009-11-30T00:39:04Z2009-11-30T00:39:04Z@Mark Byers: <code>'\\d\d'</code> contains an invalid escape sequence. the string python stores is equivalent to <code>r'\d\d'</code>. specifically, when python reads the literal, it transforms the first escape to a single backslash, but the second escape is just kept untransformed. If you want to store the string <code>\\d\d</code> then you need to either use a raw string: <code>r'\\d\d'</code> or escape the string correctly yourself: <code>'\\\\d\\d'</code>http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/109497#109497Comment by TokenMacGuy on Best git repository hosting for commercial project?TokenMacGuy2009-11-29T22:55:19Z2009-11-29T22:55:19ZI like the idea of having a backup repository, but I also think, especially with dvcs, that blessing a single repository as 'mainline' is often valuable. If you want that, then a nicer approach might be to use a lower level backup solution, allowing pulls to happen anywhere, but only one cloned copy is writable. http://stackoverflow.com/questions/1816552/where-does-c-standard-define-the-value-range-of-float-types/1816569#1816569Comment by TokenMacGuy on Where does C++ standard define the value range of float types?TokenMacGuy2009-11-29T20:48:21Z2009-11-29T20:48:21ZI'm not sure I agree with the premise that 32 bit will become 'distasteful' as even now, 8 bit processors see substantial use in the embedded realm. 32 bit will probably stay mainstream in handset devices for a long timehttp://stackoverflow.com/questions/1809799/net-garbage-collection/1809809#1809809Comment by TokenMacGuy on .NET Garbage Collection.TokenMacGuy2009-11-27T18:48:43Z2009-11-27T18:48:43ZThat's not quite an accurate description of generational garbage collection, which the comic depicts. A generational garbage collector will mark objects that have survived some number of collection passes (usually just 1 pass) so that it knows not to waste much time collecting them. Most garbage will always be objects that are allocated, used once and no longer needed, and so any objects that outlast a single collection are simply unlikely to be collectable. The garbage collector will still, occasionally check old objects for collectability, just not as often as new objects.http://stackoverflow.com/questions/1809799/net-garbage-collection/1809841#1809841Comment by TokenMacGuy on .NET Garbage Collection.TokenMacGuy2009-11-27T18:44:17Z2009-11-27T18:44:17ZIs "Fair Game" the technical term for collectible garbage? It should be!http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775847#1775847Comment by TokenMacGuy on What is a programming language?TokenMacGuy2009-11-21T17:44:33Z2009-11-21T17:44:33Zthe distinction between artificial and natural languages is that a natural language evolves organically based on the need of the society that speaks it. An artificial language is purpose built by one or a few people, with intent to use the language in a way that existing languages are unsuited. Mathematical notation is a natural language, having evolved over centuries according to need, and is learned bit by bit as needed. Esperanto is an artificial language, purpose built (by committee!) as a universal spoken human language.http://stackoverflow.com/questions/101268/hidden-features-of-python/109194#109194Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T19:08:31Z2009-11-17T19:08:31Z@recursive: I defy you to produce a list comprehension/generator expression that performs the action of <code>reduce()</code>http://stackoverflow.com/questions/101268/hidden-features-of-python/106868#106868Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T19:06:58Z2009-11-17T19:06:58ZAny langauge that doesn't have first class functions (or at least some good substitute, like C function pointers) it is a misfeature. It is completely unbearable to go without.http://stackoverflow.com/questions/101268/hidden-features-of-python/938602#938602Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T19:05:34Z2009-11-17T19:05:34Z+1 'backslash salad'http://stackoverflow.com/questions/101268/hidden-features-of-python/205889#205889Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T19:04:27Z2009-11-17T19:04:27ZIf this is too ugly for you to cope with, you can write the very same thing as <code>str.join('',list_of_strings)</code> but other pythonistas may scorn you for trying to write java.http://stackoverflow.com/questions/101268/hidden-features-of-python/171767#171767Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T18:57:08Z2009-11-17T18:57:08Z@shylent: Exceptions should be exceptional. For that reason they are optimized for the case that they are not thrown. If you expect the condition to occur in the course of normal processing, you should use another methodhttp://stackoverflow.com/questions/101268/hidden-features-of-python/171767#171767Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T18:55:50Z2009-11-17T18:55:50Z+1 first one I actually did not know about.http://stackoverflow.com/questions/101268/hidden-features-of-python/116580#116580Comment by TokenMacGuy on Hidden features of PythonTokenMacGuy2009-11-17T18:52:02Z2009-11-17T18:52:02Zworth noting that the <code>_</code> is available only in interactive mode. when running scripts from a file, <code>_</code> has no special meaning. http://stackoverflow.com/questions/559629/should-programmers-use-decompilers/559669#559669Comment by TokenMacGuy on Should Programmers Use Decompilers?TokenMacGuy2009-11-12T00:58:48Z2009-11-12T00:58:48Z@reinier: decompiled code is, exactly as you say, disappointing. The answer I tried to give was mostly about what you actually can do with a decompiler.http://stackoverflow.com/questions/1705724/for-c-c-when-is-it-beneficial-not-to-use-object-oriented-programmingComment by TokenMacGuy on For C/C++, When is it beneficial not to use Object Oriented Programming?TokenMacGuy2009-11-10T05:50:07Z2009-11-10T05:50:07ZThe answer to this question is probably not related to the programming language you have tagged it under