User Tom Future - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T03:00:45Zhttp://stackoverflow.com/feeds/user/3691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1386509/how-can-i-find-the-intersecting-point-of-three-planes/1386648#13866483Answer by Tom Future for How can I find the intersecting point of three planes?Tom Future2009-09-06T20:30:14Z2009-09-06T20:30:14Z<p>I go to Wolfram Mathworld whenever I have questions like this. For this problem, try this page:
<a href="http://mathworld.wolfram.com/Plane-PlaneIntersection.html" rel="nofollow">Plane-Plane Intersection</a></p>
<p>Equation 8 on that page gives the intersection of three planes. To use it you first need to find unit normals for the planes. This is easy: given three points <strong>a</strong>, <strong>b</strong>, and <strong>c</strong> on the plane (that's what you've got, right?), take the cross product of (<strong>a</strong>-<strong>b</strong>) and (<strong>a</strong>-<strong>c</strong>) to get a normal, then divide it by its own magnitude to get a unit normal.</p>
http://stackoverflow.com/questions/838030/kr-array-of-character-pointers/838089#8380895Answer by Tom Future for K&R: array of character pointersTom Future2009-05-08T03:21:06Z2009-05-08T03:21:06Z<p>Keep reading! At the very bottom of p. 99</p>
<blockquote>
<p>As formal parameters in a function definition,</p>
<pre><code> char s[];
</code></pre>
<p>and</p>
<pre><code> char *s;
</code></pre>
<p>are equivalent; we prefer the latter because it says more explicitly that the parameter is a pointer.</p>
</blockquote>
<p>I.e. you can never pass an array (which is not a variable) to a function. If you declare a function that looks like it takes an array, it really takes a pointer (which <em>is</em> a variable). This makes sense. It would be odd for a function argument not to be a variable -- it can have a different value every time you call the function so it sure ain't a constant!</p>
http://stackoverflow.com/questions/787803/how-does-a-threading-thread-yield-the-rest-of-its-quantum-in-python4How does a threading.Thread yield the rest of its quantum in Python?Tom Future2009-04-24T22:29:18Z2009-04-26T04:39:41Z
<p>I've got a thread that's polling a piece of hardware.</p>
<pre><code>while not hardware_is_ready():
pass
process_data_from_hardware()
</code></pre>
<p>But there are other threads (and processes!) that might have things to do. If so, I don't want to burn up cpu checking the hardware every other instruction. It's been a while since I've dealt with threading, and when I did it wasn't Python, but I believe most threading libraries have a <code>yield</code> function or something that allows a thread to tell the scheduler "Give the other threads a chance."</p>
<pre><code>while not hardware_is_ready():
threading.yield() # This function doesn't exist.
process_data_from_hardware()
</code></pre>
<p>But I can't find any reference to something like this in the threading documentation. Python does have a <code>yield</code> statement, but I'm pretty sure that's something else entirely (to do with generators).</p>
<p>What's the correct thing to do here?</p>
http://stackoverflow.com/questions/637894/constraint-for-only-one-record-marked-as-default/640722#6407221Answer by Tom Future for Constraint for only one record marked as default.Tom Future2009-03-12T22:18:57Z2009-03-12T22:26:45Z<p>Here's a modification of Damien_The_Unbeliever's solution that allows one default per FormID.</p>
<pre><code>CREATE VIEW form_defaults
AS
SELECT FormID
FROM whatever
WHERE isDefault = 1
GO
CREATE UNIQUE CLUSTERED INDEX ix_form_defaults on is_form_defaults (FormID)
GO
</code></pre>
<p>But the serious relational folks will tell you this information should just be in another table.</p>
<pre><code>CREATE TABLE form
FormID int NOT NULL PRIMARY KEY
DefaultWhateverID int FOREIGN KEY REFERENCES Whatever(ID)
</code></pre>
http://stackoverflow.com/questions/626609/how-do-i-create-a-table-constraint-to-prevent-duplicate-values-across-two-columns/626716#6267162Answer by Tom Future for How do I create a table constraint to prevent duplicate values across two columns?Tom Future2009-03-09T15:35:26Z2009-03-09T15:35:26Z<p>If you're using MSSQL (I think that's what your syntax looks like), Create a view including only the rows with IsActive = 1, then put a unique index on EntityIdNmb in the view.</p>
<p>In PostgreSQL, which I've worked more with recently, you can create a partial index:
<a href="http://www.postgresql.org/docs/8.3/interactive/indexes-partial.html" rel="nofollow">http://www.postgresql.org/docs/8.3/interactive/indexes-partial.html</a></p>
http://stackoverflow.com/questions/609401/determine-old-primary-key-in-a-sql-trigger/612605#6126051Answer by Tom Future for Determine Old primary key in a SQL TriggerTom Future2009-03-04T21:48:19Z2009-03-04T21:48:19Z<p>If you must handle multiple-row inserts/updates, and there's no alternate key that's guaranteed not to change, the only way I can see to do this is to use an INSTEAD OF trigger. For example, in the trigger you could break the original insert/update command into one command per row, grabbing each old id before you insert/update.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/290327#2903271Answer by Tom Future for Coding in Other (Spoken) LanguagesTom Future2008-11-14T14:59:28Z2008-11-14T14:59:28Z<p>Filemaker's scripting language is localized. The scripts (and data!) are stored in a terrible "sorta canonical" form.</p>
<p>So if you write a script in the American version, then open it up in the French version, all the keywords and built-in function names will be in French. But why won't it run?! Aha! The French version uses "," as the decimal point, and therefore to avoid ambiguity uses ";" to separate function arguments -- where the American version uses "." and "," respectively. This conversion you have to do yourself.</p>
<p>So you work through the incredibly bad script editing interface (you can't write scripts as text files) to fix all these things. It runs! Great! The results are all wrong! Oh no! Aha! The Jan-7-2004 date you entered in the American version is being interpreted as July-1-2004 -- apparently dates are not only displayed but <em>stored</em> in locale-dependent order. <em>Am I kidding you</em>? No.</p>
<p>[Note: Filemaker 8 and 9 may be sane -- I only ever worked with 3 - 7.]</p>
http://stackoverflow.com/questions/787803/how-does-a-threading-thread-yield-the-rest-of-its-quantum-in-python/790246#790246Comment by Tom Future on How does a threading.Thread yield the rest of its quantum in Python?Tom Future2009-04-30T01:25:29Z2009-04-30T01:25:29ZWell hidden! Thanks!http://stackoverflow.com/questions/787803/how-does-a-threading-thread-yield-the-rest-of-its-quantum-in-python/790246#790246Comment by Tom Future on How does a threading.Thread yield the rest of its quantum in Python?Tom Future2009-04-27T03:34:17Z2009-04-27T03:34:17ZIs this documented somewhere? I thought this might be true -- I've seen it in other languages -- but I couldn't find a mention of it in the Python docs.http://stackoverflow.com/questions/787803/how-does-a-threading-thread-yield-the-rest-of-its-quantum-in-python/787810#787810Comment by Tom Future on How does a threading.Thread yield the rest of its quantum in Python?Tom Future2009-04-24T22:45:11Z2009-04-24T22:45:11ZI'm no expert, but I've read a bit on the GIL. Could you give me a hint what in particular relates to this question?
I'll go with <code>time.sleep(epsilon)</code> for now, but it's kind of unsatisfying, isn't it? There isn't any particular interval I want to sleep for.http://stackoverflow.com/questions/626609/how-do-i-create-a-table-constraint-to-prevent-duplicate-values-across-two-columns/626716#626716Comment by Tom Future on How do I create a table constraint to prevent duplicate values across two columns?Tom Future2009-03-09T15:59:19Z2009-03-09T15:59:19Z@Lieven, and your answer was first and more detailed! Sorry for the spam.
Belair seems to take your answer to imply that he should then do his SELECTS from the view, not the original table.