User Theran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T05:38:59Zhttp://stackoverflow.com/feeds/user/40180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1748923/how-to-detect-whether-two-files-are-identical-in-python/1749047#17490470Answer by Theran for How to detect whether two files are identical in PythonTheran2009-11-17T13:53:08Z2009-11-17T13:53:08Z<p>If there is nobody maliciously trying to create collisions, then you would have to compare about 2<sup>64</sup> files before you would expect to see a <a href="http://en.wikipedia.org/wiki/Birthday%5Fproblem" rel="nofollow">collision by random chance</a>. However, it is possible for someone to carefully construct two files with the same MD5 sum due to <a href="http://eprint.iacr.org/2006/105" rel="nofollow">cryptographic weaknesses in MD5</a>. Whether the cryptographic weaknesses of MD5 matter or not depends on your application, where the files come from, and what an attacker could stand to gain if he tricked your program into thinking two different files were identical. MD5 is still a very good checksum, just not so great as a cryptographic hash. </p>
http://stackoverflow.com/questions/1687077/converting-vector-contoured-regions-borders-to-a-raster-map-pixel-grid/1699059#16990591Answer by Theran for Converting vector-contoured regions (borders) to a raster map (pixel grid)Theran2009-11-09T04:13:24Z2009-11-11T04:52:45Z<p>The general case for processing this sort of geometry in vector form can be quite difficult, especially since nothing about the structure you describe requires the geometry to be consistent. However, since you just want to rasterize it, then treating the problem as a Voronoi diagram of line segments can be more robust.</p>
<p>Approximating the Voronoi diagram can be done graphically in OpenGL by drawing each line segment as a pair of quads making a tent shape. The z-buffer is used to make the closest quad take precedence, and thus color the pixel based on whichever line is closest. The difference here is that you will want to color the polygons based on which side of the line they are on, instead of which line they represent. A good paper discussing a similar algorithm is Hoff et al's <a href="http://www.cs.cmu.edu/~biorobotics/papers/sbp%5Fpapers/integrated3/hoff%5Fvoronoi.pdf" rel="nofollow">Fast Computation of Generalized Voronoi Diagrams Using Graphics Hardware</a></p>
<p>The 3d geometry will look something like this sketch with 3 red/yellow segments and 1 blue/green segment:</p>
<p><img src="http://lh4.ggpht.com/%5FfJRu319XW2Q/SvewjShTviI/AAAAAAAAAUw/awviIvuDNMs/s144/linevoronoi2.png" alt="sketch of 3d geometry"></p>
<p>This procedure doesn't require you to convert anything into a closed loop, and doesn't require any fancy geometry libraries. Everything is handled by the z-buffer, and should be fast enough to run in real time on any modern graphics card. A refinement would be to use homogeneous coordinates to make the bases project to infinity.</p>
<p>I implemented this algorithm in a Python script at <a href="http://www.pasteall.org/9062/python" rel="nofollow">http://www.pasteall.org/9062/python</a>. One interesting caveat is that using cones to cap the ends of the lines didn't work without distorting the shape of the cone, because the cones representing the end points of the segments were z-fighting. For the sample geometry you provided, the output looks like this:</p>
<p><img src="http://lh6.ggpht.com/%5FfJRu319XW2Q/SvpCpXSSVEI/AAAAAAAAAVo/%5FER56l0oQxE/s144/voronoi%20rendered.png" alt="voronoi rendering output"></p>
http://stackoverflow.com/questions/1480023/code-golf-lasers/1480309#148030910Answer by Theran for Code Golf: LasersTheran2009-09-26T02:59:48Z2009-10-27T07:19:57Z<h2>Python</h2>
<p><strike>294</strike> <strike>277</strike> <strike>253</strike> <strike>240</strike> 232 characters including newlines:</p>
<p>(the first character in lines 4 and 5 is a tab, not spaces)</p>
<pre><code>l='>v<^';x={'/':'^<v>','\\':'v>^<',' ':l};b=[1];r=p=0
while b[-1]:
b+=[raw_input()];r+=1
for g in l:
c=b[r].find(g)
if-1<c:p=c+1j*r;d=g
while' '<d:z=l.find(d);p+=1j**z;c=b[int(p.imag)][int(p.real)];d=x.get(c,' '*4)[z]
print'#'<c
</code></pre>
<p>I had forgotten Python even had optional semicolons. </p>
<h2>How it works</h2>
<p>The key idea behind this code is using complex numbers to represent positions and directions. The rows are the imaginary axis, increasing downward. The columns are the real axis, increasing to the right.</p>
<p><code>l='>v<^';</code> a list of the laser symbols. The order is chosen so that the index of a laser direction character corresponds with a power of sqrt(-1)</p>
<p><code>x={'/':'^<v>','\\':'v>^<',' ':l};</code> a transformation table determining how the direction changes when the beam leaves different tiles. The tile is the key, and new directions are the values.</p>
<p><code>b=[1];</code> holds the board. The first element is 1 (evaluates as true) so that the while loop will run at least once.</p>
<p><code>r=p=0</code> <code>r</code> is the current row number of the input, <code>p</code> is the current position of the laser beam.</p>
<p><code>while b[-1]:</code> stop loading board data when raw_input returns an empty string</p>
<p><code> b+=[raw_input()];r+=1</code> append the next line of input to the board and increment the row counter</p>
<p><code> for g in l:</code> guess each laser direction in turn</p>
<p><code> c=b[r].find(g)</code> set the column to the location of the laser or -1 if it's not in the line (or is pointing in a different direction)</p>
<p><code> if-1<c:p=c+1j*r;d=g</code> if we found a laser, then set the current position <code>p</code> and direction <code>d</code>. <code>d</code> is one of the chars in <code>l</code></p>
<p>After loading the board into <code>b</code>, the current position <code>p</code> and direction <code>d</code> have been set to those of the laser source.</p>
<p><code>while' '<d:</code> space has a lower ASCII value than any of the direction symbols, so we use it as a stop flag.</p>
<p><code>z=l.find(d);</code> index of the current direction char in the <code>l</code> string. <code>z</code> gets used later to both determine the new beam direction using the <code>x</code> table, and to increment the position.</p>
<p><code>p+=1j**z;</code> increment the position using a power of i. For example, <code>l.find('<')==2</code> -> i^2 = -1, which would move to the left one column.</p>
<p><code>c=b[int(p.imag)][int(p.real)];</code> read the char at the current position</p>
<p><code>d=x.get(c,' '*4)[z]</code> look up the new direction for the beam in the transformation table. If the current char doesn't exist in the table, then set <code>d</code> to space.</p>
<p><code>print'#'<c</code> print false if we stopped on anything other than the target.</p>
http://stackoverflow.com/questions/1518375/find-the-number-of-congruent-triangles/1518430#15184302Answer by Theran for Find the number of congruent triangles?Theran2009-10-05T05:47:30Z2009-10-05T05:47:30Z<p>It seems to me that you might be missing a lot of congruent triangles this way. For smaller triangles, there won't be many different angles that you can place a congruent triangle such that all of its vertices are lattice points. But, as the size of the triangle increases, there are more opportunities to snap to the grid, so you could end up with far more than 8 different orientations of the triangle.</p>
<p>Instead, designate one of the points of the example triangle as the origin. Try all the <a href="http://mathworld.wolfram.com/CircleLatticePoints.html" rel="nofollow">lattice points of a circle</a> of the radius of the first side as locations for the second vertex. Once you've picked the candidate point, calculate the location of the third vertex, and if it is a lattice point too, then calculate how many times the resulting triangle fits into the square without rotation. The only symmetry you have to worry about is if the original triangle is isosceles or equilateral, which would cause you to over count triangles by a factor of 2 and 3 respectively. </p>
http://stackoverflow.com/questions/1504179/where-do-you-draw-the-line-between-what-is-embedded-and-what-is-not/1515870#15158702Answer by Theran for Where do you draw the line between what is "embedded" and what is not?Theran2009-10-04T07:59:09Z2009-10-04T07:59:09Z<p>I consider an embedded system one where the software is rarely developed directly on the target system. This definition includes sophisticated embedded systems like the iPhone, and excludes primitive desktop systems like the Commodore 64. Not having the development tools on the target means you have to add 'reprogram device' to the edit-compile-run cycle. Debugging is also made more complicated. This encompasses most of the embedded "feel." </p>
http://stackoverflow.com/questions/1117645/creative-uses-for-cryptography-beyond-the-usual-encryption-authentication4Creative uses for cryptography beyond the usual encryption/authenticationTheran2009-07-13T04:00:28Z2009-09-20T19:06:13Z
<p>Lately I've been intrigued by some of the less traditional uses of cryptography. Things like:</p>
<ul>
<li><a href="http://blog.notdot.net/2007/9/Damn-Cool-Algorithms-Part-2-Secure-permutations-with-block-ciphers" rel="nofollow">making invoice numbers unpredictable</a></li>
<li><a href="http://ieeexplore.ieee.org/xpl/freeabs%5Fall.jsp?tp=&arnumber=4447820" rel="nofollow">rolling dice in a p2p game</a></li>
<li><a href="http://ieeexplore.ieee.org/xpl/freeabs%5Fall.jsp?arnumber=4755250" rel="nofollow">shuffling a deck of cards in a p2p game</a></li>
</ul>
<p>What other applications of cryptography can you think of outside the usual realm of message authentication and confidentiality?</p>
http://stackoverflow.com/questions/1425184/random-and-unique-subsets-generation/1425427#14254274Answer by Theran for random and unique subsets generationTheran2009-09-15T06:16:31Z2009-09-15T06:16:31Z<p>There is a way to generate a sample of the subsets that is random, guaranteed not to have duplicates, uses O(1) storage, and can be re-generated at any time. First, write a function to <a href="http://msdn.microsoft.com/en-us/library/aa289166%28VS.71%29.aspx" rel="nofollow">generate a combination given its lexical index</a>. Second, use a <a href="http://blog.notdot.net/2007/9/Damn-Cool-Algorithms-Part-2-Secure-permutations-with-block-ciphers" rel="nofollow">pseudorandom permutation of the first Combin(n, m) integers</a> to step through those combinations in a random order. Simply feed the numbers 0...100000 into the permutation, use the output of the permutation as input to the combination generator, and process the resulting combination.</p>
http://stackoverflow.com/questions/1425162/symmetrically-adressable-matrix/1425305#14253052Answer by Theran for Symmetrically adressable matrixTheran2009-09-15T05:36:33Z2009-09-15T05:36:33Z<p>You're probably better off using a full square numpy matrix. Yes, it wastes half the memory storing redundant values, but rolling your own symmetric matrix in Python will waste even more memory and CPU by storing and processing the integers as Python objects. </p>
http://stackoverflow.com/questions/1320345/clearing-out-a-c-byte-array-with-sensitive-data/1320396#13203960Answer by Theran for Clearing out a c# byte array with sensitive dataTheran2009-08-24T03:46:03Z2009-08-24T03:46:03Z<p>A trick that works with most C compilers is to do something like sum all the elements of the cleared array, and then do something with that sum, like print it or xor it with your return value. That way the dead code elimination won't eliminate the clearing of the array.</p>
<p>That said, are you sure that you only need to clear this array? Consider all the other places where the value may also have existed: a buffer in a form, string objects being passed around, key equivalent values in intermediate calculations, or paged out to disk. Zeroizing this one array only gets you 1% of the way there. You have to clear the entire key path.</p>
http://stackoverflow.com/questions/1319956/other-ways-of-protecting-cookies/1320022#13200220Answer by Theran for Other ways of protecting cookiesTheran2009-08-24T00:54:35Z2009-08-24T00:54:35Z<p>Signing the cookie with a <a href="http://en.wikipedia.org/wiki/HMAC" rel="nofollow">HMAC</a> is a perfectly reasonable way to do this. HMAC essentially rolls a secret key known only by your server into the hash, so even someone who knows the algorithm can't generate a HMAC that will be recognized as valid without knowing the key. Just using a plain old hash is trivially bypassable because the attacker can generate valid hashes of their own data, and all the "salt" in the ocean won't fix that.</p>
<p>Even if you used a session ID instead of storing meaningful values, you still would have to be careful that an attacker couldn't predict another valid session ID, and send that to you instead, thus hijacking the other user's session. I believe there was an actual exploit against Hotmail that worked this way.</p>
<p>Encrypting the cookie only helps you if there's something in there you don't want the user to see. Even worse, encryption without an HMAC gives a false sense of security because a cookie that is merely encrypted is still vulnerable to manipulation of the ciphertext to change parts of the plaintext.</p>
<p>So in summary, don't just hash it, use an HMAC!</p>
http://stackoverflow.com/questions/1279359/what-general-purpose-language-should-i-learn-next/1281574#12815740Answer by Theran for What general purpose language should I learn next?Theran2009-08-15T10:05:30Z2009-08-15T10:05:30Z<p>Why not <a href="http://erlang.org/" rel="nofollow">Erlang</a>? </p>
<ul>
<li>It's not too much like the languages you already know, so you can learn new concepts</li>
<li>It has some interesting capabilities for multiprocessing</li>
<li>It's not out of academia. Erlang was a commercial language first.</li>
<li>There are at least two significant open source applications written in it: CouchDB and Wings3d</li>
</ul>
http://stackoverflow.com/questions/1281544/how-to-make-sure-elements-of-html-form-have-not-been-changed-in-purpose-of-hackin/1281550#12815502Answer by Theran for How to make sure elements of HTML form have not been changed in purpose of hacking on client side before submit?Theran2009-08-15T09:48:08Z2009-08-15T09:48:08Z<p>Generally, you should make sure that your system is robust enough to handle any sort of malicious input. Assuming that you've taken care of that, if you still need to make sure the information hasn't been tampered with, then use an <a href="http://en.wikipedia.org/wiki/HMAC" rel="nofollow">HMAC</a>. Your web library or programming language should have some sort of routine for this built in.</p>
http://stackoverflow.com/questions/1253116/learning-digital-signal-processing/1253128#12531283Answer by Theran for Learning Digital Signal ProcessingTheran2009-08-10T04:41:05Z2009-08-10T04:41:05Z<p>I learned a lot from the Scientist and Engineer's Guide to DSP. You can read it for free online at <a href="http://www.dspguide.com/" rel="nofollow">http://www.dspguide.com/</a> It's nice because it focuses more on what you can do with DSP, rather than the underlying math.</p>
http://stackoverflow.com/questions/1220751/how-to-choose-an-aes-encryption-mode-cbc-ecb-ctr-ocb-cfb/1220779#12207793Answer by Theran for How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?Theran2009-08-03T05:24:01Z2009-08-04T03:40:46Z<ol>
<li>Anything but ECB.</li>
<li>If using CTR, it is imperative that you use a different IV for each message, otherwise you end up with the attacker being able to take two ciphertexts and deriving a combined unencrypted plaintext. The reason is that CTR mode essentially turns a block cipher into a stream cipher, and the first rule of stream ciphers is to never use the same Key+IV twice.</li>
<li>There really isn't much difference in how difficult the modes are to implement. Some modes only require the block cipher to operate in the encrypting direction. However, most block ciphers, including AES, don't take much more code to implement decryption.</li>
<li>For all cipher modes, it is important to use different IVs for each message if your messages could be identical in the first several bytes, and you don't want an attacker knowing this.</li>
</ol>
http://stackoverflow.com/questions/1158736/changing-palettes-of-8-bit-png-images-using-python-pil/1214765#12147651Answer by Theran for Changing palette's of 8-bit .png images using python PILTheran2009-07-31T20:39:56Z2009-07-31T21:21:30Z<p>If you want to change just the palette, then PIL will just get in your way. Luckily, the PNG file format was designed to be easy to deal with when you only are interested in some of the data chunks. The format of the <a href="http://www.libpng.org/pub/png/spec/1.2/PNG-Chunks.html#C.PLTE" rel="nofollow">PLTE chunk</a> is just an array of RGB triples, with a CRC at the end. To change the palette on a file in-place without reading or writing the whole file:</p>
<pre><code>import struct
from zlib import crc32
import os
# PNG file format signature
pngsig = '\x89PNG\r\n\x1a\n'
def swap_palette(filename):
# open in read+write mode
with open(filename, 'r+b') as f:
f.seek(0)
# verify that we have a PNG file
if f.read(len(pngsig)) != pngsig:
raise RuntimeError('not a png file!')
while True:
chunkstr = f.read(8)
if len(chunkstr) != 8:
# end of file
break
# decode the chunk header
length, chtype = struct.unpack('>L4s', chunkstr)
# we only care about palette chunks
if chtype == 'PLTE':
curpos = f.tell()
paldata = f.read(length)
# change the 3rd palette entry to cyan
paldata = paldata[:6] + '\x00\xff\xde' + paldata[9:]
# go back and write the modified palette in-place
f.seek(curpos)
f.write(paldata)
f.write(struct.pack('>L', crc32(chtype+paldata)&0xffffffff))
else:
# skip over non-palette chunks
f.seek(length+4, os.SEEK_CUR)
if __name__ == '__main__':
import shutil
shutil.copyfile('redghost.png', 'blueghost.png')
swap_palette('blueghost.png')
</code></pre>
<p>This code copies redghost.png over to blueghost.png and modifies the palette of blueghost.png in-place.</p>
<p><img src="http://lh3.ggpht.com/%5FfJRu319XW2Q/SnNf5ff-FsI/AAAAAAAAAKs/tWXYVKaEZ3Y/s800/redghost.png" alt="red ghost" /> -> <img src="http://lh4.ggpht.com/%5FfJRu319XW2Q/SnNf5YkbzxI/AAAAAAAAAKw/MKk0Dxbe4O4/s800/blueghost.png" alt="blue ghost" /></p>
http://stackoverflow.com/questions/1006841/calculate-maximum-size-for-encypted-data/1016107#10161070Answer by Theran for Calculate maximum size for encypted dataTheran2009-06-19T02:30:22Z2009-06-19T02:30:22Z<p>Jeff's answer is almost correct, except that PKCS7 will always add padding to the message, even if the message exactly fits inside an integral number of blocks. Also, don't forget that if using a random IV that the IV has to be stored too. The corrected formula for the length of a PKCS7 padded message is:</p>
<pre><code>extraBytesNeeded = (16 - (inputSize % 16)); // whole block of padding if input fits exactly
maxSize = inputSize + extraBytesNeeded + IVbytes;
</code></pre>
http://stackoverflow.com/questions/985830/how-do-i-encrypt-a-string-and-get-a-equal-length-encrypted-string/988265#9882651Answer by Theran for How do I encrypt a string and get a equal length encrypted string?Theran2009-06-12T18:34:02Z2009-06-19T02:07:13Z<p>Ideally, if the existing columns are larger than a single block in a standard block cipher (16 bytes for AES, 8 bytes for TDES), then you could encrypt in <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.ciphermode.aspx" rel="nofollow">CTS (cipher text stealing) mode</a>. Unfortunately, .net does not support CTS in any of its included algorithms. :-(</p>
<p>Normally CTS uses a random IV that would have to be stored along with the ciphertext, but you can just use the row ID or even a constant value if you don't mind identical plaintext values encrypting to identical ciphertext. </p>
http://stackoverflow.com/questions/1010423/plot-line-at-particular-angle-and-offset/1010604#10106040Answer by Theran for plot line at particular angle and offsetTheran2009-06-18T03:15:13Z2009-06-18T03:15:13Z<p>Assuming that your offset is actually a x, y coordinate of the center of the line, and that the line should be a fixed length, then it's a simple matter of trigonometry with matplotlib:</p>
<pre><code>x = [offsetx-linelength*cos(angle), offsetx+linelength*cos(angle)]
y = [offsety-linelength*sin(angle), offsety+linelength*sin(angle)]
plot(x, y, '-')
</code></pre>
http://stackoverflow.com/questions/1010512/how-to-program-c8051f320-mcu/1010540#10105400Answer by Theran for how to program c8051f320 mcu?Theran2009-06-18T02:52:24Z2009-06-18T02:52:24Z<p>You're unlikely to find a tutorial aimed at that specific model of 8051 microcontroller, but there are plenty of tutorials out there on the 8051 architecture in general, as well as microcontroller programming in general. Specific applications always require knowing the surrounding circuitry and reading the data sheet.</p>
http://stackoverflow.com/questions/1004979/a-command-like-goto-in-pythons-bytecode/1005156#10051563Answer by Theran for a command like 'goto ' in Python's bytecodeTheran2009-06-17T04:42:34Z2009-06-17T04:42:34Z<p>Loops aren't the only expressions that generate jump bytecodes. <code>if</code> statements and lazy boolean logic make jumps too. For example:</p>
<pre><code>if imeHandle.isCnInput() and GUIDefine.CandidateIsOpen and GUIDefine.CompositionWndIsOpen and isWanNengWB and (state & 1):
print 'foo'
</code></pre>
<p>This code compiles to something similar, though not identical, to your example bytecode.</p>
http://stackoverflow.com/questions/512106/misunderstanding-mixcolumns-step/1005017#10050172Answer by Theran for Misunderstanding MixColumns step Theran2009-06-17T03:45:28Z2009-06-17T03:45:28Z<p>The multiplication in MixColumns is indeed reversible, and it is not modulo 256. <a href="http://samiam.org/mix-column.html" rel="nofollow">samiam.org/mix-column.html</a> has a good explanation of the MixColumns step, and <a href="http://samiam.org/galois.html" rel="nofollow">samiam.org/galois.html</a> does an excellent job of explaining how to do arithmetic in AES's finite field.</p>
http://stackoverflow.com/questions/991220/an-error-in-taking-an-input-in-python/991301#9913013Answer by Theran for an error in taking an input in pythonTheran2009-06-13T19:09:26Z2009-06-13T19:09:26Z<p>It looks like there are two distinct things happening here. First, as the other posters have noted, the L suffix simply indicates that Python has converted the input value to a long integer. The second issue is on this line:</p>
<pre><code>a=(0.5 + 2.5*(k %2))*k + k % 2
</code></pre>
<p>This implicitly results in a floating point number for the value of <code>(0.5 + 2.5*(k %2))*k</code>. Since floats only have 53 bits of precision the result is incorrect due to rounding. Try refactoring the line to avoid floating point math, like this:</p>
<pre><code>a=(1 + 5*(k %2))*k//2 + k % 2
</code></pre>
http://stackoverflow.com/questions/309733/angular-momentum-transfer-equations/988196#9881963Answer by Theran for Angular Momentum Transfer equationsTheran2009-06-12T18:18:59Z2009-06-12T18:18:59Z<p>If you're interested in rotating non-spherical bodies then <a href="http://www.myphysicslab.com/collision.html" rel="nofollow">http://www.myphysicslab.com/collision.html</a> shows how to do it. The asymmetry of the bodies means that the normal contact force during the collision can create a torque about their respective CGs, and thus cause the bodies to start spinning.</p>
<p>In the case of a billiard ball or air hockey puck, things are a bit more subtle. Since the body is spherical/circular, the normal force is always right through the CG, so there's no torque. However, the normal force is not the only force. There's also a friction force that is tangential to the contact normal which will create a torque about the CG. The magnitude of the friction force is proportional to the normal force and the coefficient of friction, and opposite the direction of relative motion. Its direction is opposing the relative motion of the objects at their contact point.</p>
http://stackoverflow.com/questions/984866/why-use-c/984887#98488716Answer by Theran for Why use C?Theran2009-06-12T03:56:32Z2009-06-12T03:56:32Z<p>C compiles down to machine code and doesn't require any runtime support for the language itself. This means that it's possible to write code that can run before things like filesystems, virtual memory, processes, and anything else but registers and RAM exist.</p>
http://stackoverflow.com/questions/948336/incremental-k-core-algorithm5incremental k-core algorithmTheran2009-06-04T02:39:51Z2009-06-12T01:55:09Z
<p>Calculating the <a href="http://en.wikipedia.org/wiki/K-core" rel="nofollow">k-core</a> of a graph by iteratively pruning vertices is easy enough. However, for my application, I'd like to be able to add vertices to the starting graph and get the updated core without having to recompute the entire k-core from scratch. Is there a reliable algorithm that can take advantage of the work done on previous iterations?</p>
<p>For the curious, the k-core is being used as a preprocessing stage in a clique finding algorithm. Any cliques of size 5 are guaranteed to be part of the 4-core of a graph. In my data set, the 4-core is much smaller than the whole graph so brute-forcing it from there might be tractable. Incrementally adding vertices lets the algorithm work with as small of a data set as possible. My set of vertices is infinite and ordered (prime numbers), but I only care about the lowest numbered clique.</p>
<p>Edit:</p>
<p>Thinking about it some more based on akappa's answer, detecting the creation of a loop is indeed critical. In the graph below, the 2-core is empty before adding F. Adding F does not change the degree of A but it still adds A to the 2-core. It's easy to extend this to see how closing a loop of any size would cause all of the vertices to simultaneously join the 2-core.</p>
<p>Adding a vertex can have an effect on the coreness of vertices an arbitrary distance away, but perhaps this is focusing too much on worst-case behavior. </p>
<p><img src="http://lh5.ggpht.com/%5FfJRu319XW2Q/SjB1a5xBDLI/AAAAAAAAAJ8/f9zxhnavB3U/s800/kcorexample1.png" alt="A -- B; A -- C; A -- D -- E; B -- F; C -- F;" /></p>
http://stackoverflow.com/questions/963084/decomposing-a-3d-mesh-into-a-2d-net/968299#9682992Answer by Theran for Decomposing a 3d mesh into a 2d netTheran2009-06-09T05:31:08Z2009-06-12T00:35:14Z<p>The algorithms eed3si9n linked to will generate nice reasonable papercraft meshes from complicated geometry. If you'd like to unfold the mesh exactly as it is modeled, such as for polyhedra models, then here's a relatively simple technique for unfolding any mesh as it stand</p>
<p>Construct a graph from your source mesh where each face is a vertex in the graph, and two vertices are connected if they share a common edge in the mesh. One of these graphs represents an unfoldable mesh if and only if it has no loops, i.e. it is a tree. </p>
<p>A good tree represents the fewest fold lines to get to the farthest face from the starting point, since each fold represents error that will accumulate in the finished model. Dijkstra's algorithm is good here, but minimum spanning tree doesn't work. With each edge equally weighted all trees are minimum spanning trees, even one that would unfold your mesh into one big spiral. As you glued the model together, errors would build up until the last few faces didn't fit at all.</p>
<p>Once you have the tree, start by drawing your starting face at the origin. Then walk the tree and add the new faces by calculating the new vertex as the intersection of two circles with radii corresponding to the lengths of the edges in the original mesh. Locations for tabs correspond to edges that were in the original mesh, but are not in the flattenable tree.</p>
<p>User-specified cuts can be handled as edge deletions before the tree step.</p>
<p><img src="http://lh6.ggpht.com/%5FfJRu319XW2Q/Si3uI6phGKI/AAAAAAAAAJU/Uxxx26nH36k/s800/unfolding.png" alt="diagram of unfolding a tetrahedron" /></p>
<p>Some downsides of this technique are that it will happily create overlapping parts in the flat pattern, and it is dependent on finding a good starting face. I tried Floyd-Warshal to find a minimum-diameter face to start from, but its O(n^3) behavior made for excessively long coffee breaks. The overlapping parts could be dealt with by marking that branch of the tree as "incomplete", skipping it, and re-running the algorithm on all incomplete faces again.</p>
http://stackoverflow.com/questions/959916/way-to-encrypt-a-single-int/960272#9602726Answer by Theran for Way to encrypt a single intTheran2009-06-06T18:36:55Z2009-06-06T18:36:55Z<p>What you want is a 32-bit block cipher. Unfortunately, most block ciphers are 64-bits or more due to the <a href="http://en.wikipedia.org/wiki/Block%5Fsize%5F%28cryptography%29" rel="nofollow">weaknesses of a short block size</a>. If you can handle the encrypted int being twice as large as the input, then you can just use Blowfish, TDES, or some other nicely vetted 64-bit block cipher. </p>
<p>If you really need 32 bits and don't mind the decreased security then its easy enough to trim a Feistel network cipher like Blowfish down to any block length that's a multiple of 2 and less than the starting cipher. For <a href="http://en.wikipedia.org/wiki/Blowfish%5F%28cipher%29" rel="nofollow">Blowfish</a>, just split your input number evenly between the two half blocks, and trim the output of the F function and the P-values down to 1/2 your target block size. This can all be done after keying the algorithm as usual. </p>
http://stackoverflow.com/questions/901892/python-factory-functions-compared-to-class/902010#9020103Answer by Theran for python factory functions compared to classTheran2009-05-23T17:38:58Z2009-05-23T17:38:58Z<p>What I like most about nested functions is that it is less verbose than classes. The equivalent class definition to your maker function is:</p>
<pre><code>class clsmaker(object):
def __init__(self, N):
self.N = N
def __call__(self, X):
return X * self.N
</code></pre>
<p>That doesn't seem so bad until you start adding more arguments to the constructor. Then doing it the class way takes an extra line for each argument, while the function just gets the extra args.</p>
<p>It turns out that there is a speed advantage to the nested functions as well:</p>
<pre><code>>>> T1 = timeit.Timer('maker(3)(4)', 'from __main__ import maker')
>>> T1.timeit()
1.2818338871002197
>>> T2 = timeit.Timer('clsmaker(3)(4)', 'from __main__ import clsmaker')
>>> T2.timeit()
2.2137160301208496
</code></pre>
<p>This may be due to there being fewer opcodes involved in the nested functions version:</p>
<pre><code>>>> dis(clsmaker.__call__)
5 0 LOAD_FAST 1 (X)
3 LOAD_FAST 0 (self)
6 LOAD_ATTR 0 (N)
9 BINARY_MULTIPLY
10 RETURN_VALUE
>>> act = maker(3)
>>> dis(act)
3 0 LOAD_FAST 0 (X)
3 LOAD_DEREF 0 (N)
6 BINARY_MULTIPLY
7 RETURN_VALUE
</code></pre>
http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/703957#7039573Answer by Theran for Most efficient way of loading formatted binary files in PythonTheran2009-04-01T03:32:45Z2009-04-01T03:32:45Z<p><a href="http://docs.python.org/library/struct.html" rel="nofollow">struct</a> should work for the header section, while numpy's <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.memmap.html#numpy.memmap" rel="nofollow">memmap</a> would be efficient for the data section if you are going to manipulate it in numpy anyways. There's no need to stress out about being inconsistent here. Both methods are compatible, just use the right tool for each job.</p>
http://stackoverflow.com/questions/700073/communication-with-long-running-tasks-in-python/700146#7001462Answer by Theran for communication with long running tasks in pythonTheran2009-03-31T05:33:50Z2009-03-31T05:33:50Z<p>You mention that you can change both the C and Python sides. To avoid having to write any sockets or signal code in C, it might be easiest to break up the large C function into 3 smaller separate functions that perform setup, a small parcel of work, and cleanup. The work parcel should be between about 1 ms and 1 second run time to strike a balance between responsiveness and low overhead. It can be tough to break up calculations into even chunks like this in the face of changing data sizes, but you would have the same challenge in a single big function that also did I/O.</p>
<p>Write a worker process in Python that calls those 3 functions through ctypes. Have the worker process check a <a href="http://docs.python.org/library/queue.html" rel="nofollow">Queue</a> object for a message from the GUI to stop the calculation early. Make sure to use the non-blocking Queue.get_nowait call instead of Queue.get. If the worker process finds a message to quit early, call the C clean up code and return the partial result. </p>
http://stackoverflow.com/questions/1641231/python-working-around-memory-leaksComment by Theran on Python - Working around memory leaksTheran2009-10-29T02:32:55Z2009-10-29T02:32:55ZIt is possible to leak memory in Python if you have stray references sitting around into a data structure (e.g. a class that remembers its instances, or a results array that contains references to tree nodes that themselves contain references into the rest of the tree). The GC will also be unable to collect objects if your classes have both <code>__del__</code> methods and circular references.http://stackoverflow.com/questions/1318976/smart-indent-algorithm-documentationComment by Theran on Smart Indent algorithm documentation?Theran2009-08-24T06:46:59Z2009-08-24T06:46:59Z@280Z28, I don't think you'll ever make this truly language agnostic, but assuming that you can at least approximately tokenize the language in question, what's wrong with incrementing the indent level for each opening brace/paren/bracket token, and decrementing it for each closing one? Note that this doesn't require the code to be grammatically correct, just tokenizable.http://stackoverflow.com/questions/1320688/good-graph-traversal-algorithm/1320755#1320755Comment by Theran on Good graph traversal algorithmTheran2009-08-24T06:36:34Z2009-08-24T06:36:34ZBFS might be better because it will look at the nearest nodes to the initial one first, which is likely to give a useful subset early on. BFS also avoids the risk of recursion 250,000 levels deep and could keep its queue in the same DB as the final graph (assuming a RDBMS).http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225064#1225064Comment by Theran on What's your most controversial programming opinion?Theran2009-08-24T03:54:17Z2009-08-24T03:54:17ZI completely disagree with this opinion, so I'm upvoting it.http://stackoverflow.com/questions/1319956/other-ways-of-protecting-cookies/1320022#1320022Comment by Theran on Other ways of protecting cookiesTheran2009-08-24T01:21:04Z2009-08-24T01:21:04ZThe article's original location is 404ed, but <a href="http://www.securityfocus.com/blogs/2009" rel="nofollow">securityfocus.com/blogs/2009</a> has a copy of an article by Thomas Ptacek that explains exactly this sort of situation. I think its true home was at <a href="http://www.matasano.com/log/1749/typing-the-letters-a-e-s-into-your-code-youre-doing-it-wrong/" rel="nofollow">matasano.com/log/1749/…</a> in case it comes back.http://stackoverflow.com/questions/1319956/other-ways-of-protecting-cookies/1320022#1320022Comment by Theran on Other ways of protecting cookiesTheran2009-08-24T01:02:49Z2009-08-24T01:02:49Z@silky, You can indeed manipulate the plaintext through the ciphertext without knowing the key. The reason is that for most block cipher modes of operation, changing one bit in the ciphertext changes a corresponding bit in the plaintext, and garbles one other block. By doing this cleverly, you can make the garbled block irrelevant and trick the server into doing what you want with the ungarbled blocks.http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming/46033#46033Comment by Theran on What color scheme do you use for programming?Theran2009-08-15T10:12:08Z2009-08-15T10:12:08ZLooks like colored chalk on a blackboard. Nice.http://stackoverflow.com/questions/1252639/which-path-module-or-class-do-python-folks-use-instead-of-os-path/1252644#1252644Comment by Theran on Which path module or class do Python folks use instead of os.path?Theran2009-08-10T00:16:16Z2009-08-10T00:16:16ZHear hear! There's nothing so horribly wrong with the standard os.path module to warrant adding more dependencies to your project. If you have a particularly hairy path construction problem, like constructing a path out of an object hierarchy, then why not wrap that in a function? The next programmer will thank you for encapsulating it, and for not making him learn and debug a whole other module.http://stackoverflow.com/questions/1220751/how-to-choose-an-aes-encryption-mode-cbc-ecb-ctr-ocb-cfb/1220779#1220779Comment by Theran on How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?Theran2009-08-04T03:50:29Z2009-08-04T03:50:29ZYes, I misspoke. It's the IV/nonce that should change for CTR mode, but that gets combined with the counter before encrypting, so I tend to just think of it as a random starting point for the counter. As far as only having to use the cipher in the encrypting direction saving space, for many ciphers you only have to reverse the subkeys to decrypt. AES is a bit bulky for decrypting, but it's not like you can implement it on a uC with 128 bytes of RAM anyways. The subkeys take more RAM than that!http://stackoverflow.com/questions/963084/decomposing-a-3d-mesh-into-a-2d-net/968299#968299Comment by Theran on Decomposing a 3d mesh into a 2d netTheran2009-06-24T04:58:05Z2009-06-24T04:58:05ZOk, I finally pulled it out and put it up at <a href="http://code.google.com/p/unfolder/" rel="nofollow">code.google.com/p/unfolder</a>http://stackoverflow.com/questions/985830/how-do-i-encrypt-a-string-and-get-a-equal-length-encrypted-string/988265#988265Comment by Theran on How do I encrypt a string and get a equal length encrypted string?Theran2009-06-19T02:09:01Z2009-06-19T02:09:01Z@Christian80 Turns out you're right. Why Microsoft would add it to the enumeration and not bother ever implementing it is a mystery to me.http://stackoverflow.com/questions/984866/why-use-c/984887#984887Comment by Theran on Why use C?Theran2009-06-12T04:26:59Z2009-06-12T04:26:59Z@webboy42, all you need is a couple of instructions sitting on the reset vector to jmp to the start of your C code if its already in memory, like on a microcontroller or in BIOS. Such a small amount of machine code can be built up by hand one bit at a time, no need for assembler :) http://stackoverflow.com/questions/963084/decomposing-a-3d-mesh-into-a-2d-net/968299#968299Comment by Theran on Decomposing a 3d mesh into a 2d netTheran2009-06-12T00:45:05Z2009-06-12T00:45:05ZActually, minimum spanning tree doesn't work because it doesn't minimize the number of folds from the center. I've updated my answer to clarify this.
As far as removing edges from the mesh goes, this algorithm doesn't modify the original mesh. I found it easier to just generate the flattened mesh from scratch rather than maintain all the correct invariants while splitting edges.
Lastly, I have indeed written this before as a Blender plug-in with the intent of releasing it, but got distracted before finishing the tabs part. I'll grab it off my old HD and post it.http://stackoverflow.com/questions/619622/determine-place-values-for-any-base/620699#620699Comment by Theran on Determine place values for any baseTheran2009-03-10T03:11:33Z2009-03-10T03:11:33ZThe double slash is "floor division". It is the equivalent of int(floor(a/b)) without having to do any intermediate floating point math.http://stackoverflow.com/questions/555104/pathfinding-on-arbitrary-non-rectangular-bodies/555240#555240Comment by Theran on Pathfinding on arbitrary non-rectangular bodiesTheran2009-02-17T14:24:56Z2009-02-17T14:24:56ZThe problem of irregular spacing is easily solved by making the longer segments more expensive. Uneven quad spacing on spheres is solvable by using a subdivided icosahedron. If you have some really big polygons you will want to add extra nodes so your AIs can cut across the corners.