User Artelius - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:07:35Z http://stackoverflow.com/feeds/user/31945 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist/1854749#1854749 8 Answer by Artelius for Goto: Why does it still exist? Artelius 2009-12-06T08:21:31Z 2009-12-06T08:21:31Z <blockquote> <p>why is it still included in the available command set of so many languages?</p> </blockquote> <p>Which languages are you thinking of? Java has no <code>goto</code>. Python has no <code>goto</code>.</p> <p>For those languages that have <code>goto</code>, well, this argument has happened many times over. Let me quote Scott Robert Ladd:</p> <blockquote> <p>Your attitude against "goto" is perhaps based upon an excellent but dated article, "Goto Considered Harmful", written by Edsger W. Dijkstra, and published by the ACM in 1968. (A recent reprint can be found at <a href="http://www.acm.org/classics/oct95/" rel="nofollow">http://www.acm.org/classics/oct95/</a>.) As you can tell from the date, this article predates modern programming languages and idioms; it comes from a time when Fortran ruled, and before Fortran 77 provided significant tools for avoiding spaghetti code.</p> <p>A "goto" is not, in and of itself, dangerous -- it is a language feature, one that directly translates to the jump instructions implemented in machine code. Like pointers, operator overloading, and a host of other "perceived" evils in programming, "goto" is widely hated by those who've been bitten by poor programming. Bad code is the product of bad programmers; in my experience, a poor programmer will write a poor program, regardless of the availability of "goto."</p> <p>If you think people can't write spaghetti code in a "goto-less" language, I can send you some <em>lovely</em> examples to disabuse you of that notion. ;)</p> <p>Used over short distances with well-documented labels, a "goto" can be more effective, faster, and cleaner than a series of complex flags or other constructs. The "goto" may also be safer and more intuitive than the alternative. A "break" is a goto; a "continue" is a "goto" -- these are statements that move the point of execution explicitly.</p> </blockquote> http://stackoverflow.com/questions/1854393/new-image-taken-with-camera-different-than-same-image-loaded-from-camera-roll/1854405#1854405 0 Answer by Artelius for New image taken with camera different than same image loaded from camera roll? Artelius 2009-12-06T04:57:11Z 2009-12-06T04:57:11Z <p>I'm not an iPhone expert but I know that when saving a JPEG, there are many "quality" parameters, and if an image is encoded to JPEG format with slightly different parameters, the pixel values will be different.</p> <p>So unless you can find a way to reliably convert an image to JPEG using <em>exactly</em> the same process as camera roll, converting the image to JPEG yourself isn't going to be of much use.</p> <p>If it's possible to read the creation time of images in the camera roll, or some similar metadata, this would probably be a better method.</p> http://stackoverflow.com/questions/1854287/trying-qsort-on-kr-the-c-programming-language/1854392#1854392 0 Answer by Artelius for Trying qsort on K&R "The C Programming Language" Artelius 2009-12-06T04:45:45Z 2009-12-06T04:45:45Z <pre><code>if (left &gt;= right) right; </code></pre> <p>did you mean</p> <pre><code>if (left &gt;= right) return; </code></pre> <p>?</p> http://stackoverflow.com/questions/1854287/trying-qsort-on-kr-the-c-programming-language/1854317#1854317 0 Answer by Artelius for Trying qsort on K&R "The C Programming Language" Artelius 2009-12-06T04:08:46Z 2009-12-06T04:08:46Z <p>Add some <code>printf()</code>s in strategic places to see what your program is up to.</p> <p>To start with, try find out whether it is stuck inside <code>readlines()</code>, <code>qsort()</code>, or <code>writelines()</code>.</p> <p>So, add some <code>printf()</code>s to main, just before calling each of those functions. Once you know which of these the computer is stuck in, you can repeat this technique on that function itself, perhaps displaying the value of local variables to help you understand what is happening.</p> http://stackoverflow.com/questions/1851835/crazy-access-violation-in-c-builder-6/1851881#1851881 0 Answer by Artelius for Crazy Access Violation in C++ Builder 6 Artelius 2009-12-05T10:55:41Z 2009-12-05T10:55:41Z <p>I can't actually see any problem with the code.</p> <p>Try printing the TimeZoneName or PlaceName from your iterator, rather than li->ClassName(), to make sure you haven't accidentally added something else to the list or something...</p> http://stackoverflow.com/questions/1851794/is-an-entire-processs-virtual-address-space-split-into-pages/1851847#1851847 2 Answer by Artelius for Is an entire process’s virtual address space split into pages Artelius 2009-12-05T10:41:25Z 2009-12-05T10:41:25Z <p>First note that "pages" are simply regions of an address space. A region that is "non-pageable" (by which I assume you mean it cannot be swapped to disk) is still logically divided into pages, but the OS might implement a different policy on those pages.</p> <p>The most common page size is 4096 bytes. Many architectures support use of multiple page sizes at the same time (e.g. 4K pages as well as 1MB pages). However, operating systems often stick with just one page size, since under most circumstances, the costs of managing multiple page sizes are much higher than the benefits this provides. Exceptions exist but I don't think you need worry about them.</p> <p>Every virtual page has certain permissions attached to it, like whether it's readable, writeable, executable (varies depending on hardware support). The OS can use this to help enforce security, cache coherency (for shared memory), and swapping pages out of physical memory.</p> <p>The <code>.text</code>, <code>.bss</code> and <code>.data</code> regions need not be known to the OS (though most OSes do know about them, for security and performance reasons).</p> <p>The OS may not actually allocate memory for a stack/heap page until the first time that page is accessed. The OS may provide system calls to request more pages of heap/stack space. Some OSes provide shared memory or shared library functionality which leads to more regions appearing in the address space. Depends on the OS.</p> http://stackoverflow.com/questions/1850944/how-to-go-about-making-an-untrained-speech-to-text-converter/1851039#1851039 0 Answer by Artelius for How to go about making an untrained speech to text converter ? Artelius 2009-12-05T03:23:43Z 2009-12-05T03:23:43Z <p>Have a look at the <a href="http://www.dspguide.com/" rel="nofollow">DSP guide</a>, it's more about low-level stuff but techniques like Fourier transforms and filtering are of great importance to audio processing. Even if you don't start from scratch it can be good to appreciate the principles and applications.</p> <p>That said, I bet that starting from scratch, one could create something that can tell apart a basic set of sounds with a few days' work...</p> http://stackoverflow.com/questions/1846392/passing-string-as-an-argument-in-c/1846401#1846401 1 Answer by Artelius for passing string as an argument in C Artelius 2009-12-04T11:30:54Z 2009-12-04T11:30:54Z <p>In this case they mean the same thing, and you do not need to change the remainder of your function. But be aware that in general, arrays and pointers are different things.</p> http://stackoverflow.com/questions/1846178/crosscompiling-c-from-linux-to-windows-does-it-really-work/1846224#1846224 1 Answer by Artelius for Crosscompiling C++; from Linux to Windows, does it really work? Artelius 2009-12-04T10:54:07Z 2009-12-04T10:54:07Z <p>I cross-compile on a daily basis. But I don't <em>set up</em> cross-compilers on a daily basis. It can be tricky, but it's certainly possible.</p> http://stackoverflow.com/questions/1846011/how-to-spool-utf-8-format-data-in-oracle-database-into-text-file/1846067#1846067 0 Answer by Artelius for How to Spool UTF-8 format data in Oracle database into text file Artelius 2009-12-04T10:18:25Z 2009-12-04T10:18:25Z <p>Maybe the file is correct but your file viewer cannot render the characters for some reason. Check with a hex editor whether the UTF-8 is appearing correctly.</p> <p>fileformat.info is great for checking things like this (e.g. <a href="http://www.fileformat.info/info/unicode/char/2fd3/index.htm" rel="nofollow">http://www.fileformat.info/info/unicode/char/2fd3/index.htm</a>)</p> http://stackoverflow.com/questions/1845756/how-to-tamper-with-source-ip-address-on-windows/1845901#1845901 4 Answer by Artelius for How to tamper with source IP address on Windows Artelius 2009-12-04T09:43:02Z 2009-12-04T09:53:26Z <p>In a test environment it usually isn't difficult. First read <a href="http://stackoverflow.com/questions/47854/how-do-you-create-a-virtual-network-interface-on-windows">this SO question</a> about virtual network interfaces.</p> <p>If the server and client are on the same machine, all you have to do is figure out how to get your client software to bind to your virtual interface. <code>wget</code> for instance has the <code>--bind-address</code> option to specify which local address to bind to. Web browsers are a bit more difficult to do this with; you may need to just run it in a VM.</p> <p>If your server and client are on the same LAN, you just need to configure your router with some static routes to your client machine. In this case you <em>probably</em> don't need a virtual network interface, just set a static IP for your client machine; as long as the gateway is set up correctly it should be able to send packets to the server, and as long as the route is set up correctly the replies should find their way back to the client.</p> <p>If the client and server are separated by an internet, it's rather more difficult. One option is to set up a network tunnel endpoint on the server and tunnel it to the client machine, which "knows" that it has the virtual network interface.</p> http://stackoverflow.com/questions/1829320/incorrect-png-colouring-swapped-channels/1829329#1829329 1 Answer by Artelius for Incorrect PNG Colouring (Swapped channels?) Artelius 2009-12-01T22:15:58Z 2009-12-01T22:15:58Z <p>My guess is that you've swapped red and blue. Perhaps a byte ordering problem?</p> http://stackoverflow.com/questions/1805420/how-can-i-determine-is-digit-even-number/1805433#1805433 2 Answer by Artelius for How Can I determine is digit Even number? Artelius 2009-11-26T19:58:57Z 2009-11-26T19:58:57Z <p>Use the <a href="http://msdn.microsoft.com/en-us/library/aa276866%28SQL.80%29.aspx" rel="nofollow">modulus operator (%)</a>.</p> <pre><code>x % 2 </code></pre> <p>will tell you if x is even or odd.</p> http://stackoverflow.com/questions/1805306/should-i-pursue-java-or-php-for-a-career-path-in-programming/1805407#1805407 4 Answer by Artelius for Should I pursue Java or PHP for a career path in programming? Artelius 2009-11-26T19:51:37Z 2009-11-26T19:51:37Z <p>Your quality as a programmer is more important than the language you find yourself most comfortable in (I'm <em>very</em> comfortable with QuickBasic, but employers are more interested in the fact that I'm creative, curious, motivated, love programming, and know a heck of a lot about computers).</p> <p>If you find you <em>enjoy</em> PHP programming more than Java programming, that means you will probably be more productive in a PHP-related job.</p> <p>If you think mastering Java will substantially expand your programming abilities as a whole (rather than just the number of languages you are versed in) then it's probably a good idea.</p> <p>Java and PHP are different, but not <em>that</em> different. I would suggest you get some experience further away from the familiar. Perhaps do some embedded programming in C, or learn Haskell. Even if you find that they're not your cup of tea, you'll learn a heap of stuff quickly.</p> http://stackoverflow.com/questions/1802783/initial-state-of-program-registers-and-stack-on-linux-arm/1802909#1802909 0 Answer by Artelius for Initial state of program registers and stack on Linux ARM Artelius 2009-11-26T10:37:41Z 2009-11-26T10:37:41Z <p>Here's the <a href="http://git.uclibc.org/uClibc/tree/libc/sysdeps/linux/arm/crt1.S" rel="nofollow">uClibc crt</a>. It seems to suggest that all registers are undefined except <code>r0</code> (which contains a function pointer to be registered with <code>atexit()</code>) and <code>sp</code> which contains a valid stack address.</p> <p>So, the value you see in <code>r1</code> is probably not something you can rely on.</p> <p>Some data are placed on the stack for you.</p> http://stackoverflow.com/questions/1780277/perceptual-image-downsampling/1780326#1780326 1 Answer by Artelius for Perceptual Image Downsampling Artelius 2009-11-22T22:53:27Z 2009-11-22T22:59:30Z <p>Pascal is right. Depends on the image, and on what you want. Some factors:</p> <ul> <li>preserving sharp edges</li> <li>preserving colours</li> <li>algorithm speed</li> </ul> <p>This is <a href="http://en.wikipedia.org/wiki/Nearest-neighbor%5Finterpolation" rel="nofollow">your method</a>.</p> <p>Some others:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Lanczos%5Fresampling" rel="nofollow">Lanczos resampling</a></li> <li><a href="http://en.wikipedia.org/wiki/Bicubic%5Finterpolation" rel="nofollow">Bicubic interpolation</a></li> <li><a href="http://en.wikipedia.org/wiki/Spline%5Finterpolation" rel="nofollow">Spline interpolation</a></li> </ul> <p>Note that sometimes resampling down can get you a sharper result than, say, using a lower resolution camera, because there will be edges in the high-resolution image that cannot be detected by a lower-res device.</p> <p>Side note: Many algorithms (especially Nearest Neighbour) can be optimised if you are scaling down by an integer (e.g. dividing by 4 or 6).</p> http://stackoverflow.com/questions/1773702/how-can-i-turn-an-open-source-game-into-an-open-source-community/1773797#1773797 2 Answer by Artelius for How can I turn an open source game into an open source community? Artelius 2009-11-20T23:13:03Z 2009-11-20T23:13:03Z <blockquote> <blockquote> <p>Should I try to make the code more replicate-able on other servers, and thus more applicable to other developers?</p> </blockquote> </blockquote> <p>Unless you have a powerful, well-designed game engine that can be re-used for other games, this won't generate much interest.</p> <blockquote> <blockquote> <p>Abstract it somewhat into some kind of BBG framework?</p> </blockquote> </blockquote> <p>If you can do it well, that is one option.</p> <p>I think the first step is to consider your target audience. Keep in mind that there's little hope of getting programmers interested in the code if they're not also interested by the game.</p> <p>For instance, you might want to make it an "open source sandbox" for kids and beginner programmers. They can learn about programming by inspecting the source code and then make improvements which other people can then enjoy. Of course this would need a well planned quality control system to ensure the game doesn't go down too often.</p> http://stackoverflow.com/questions/297960/hash-collision-what-are-the-chances/297971#297971 4 Answer by Artelius for Hash Collision - what are the chances? Artelius 2008-11-18T06:03:26Z 2009-11-19T20:48:50Z <p>If you assume that SHA-1 does a good job, you can conclude that there's a 1 in 2^160 chance that two given messages have the same hash (since SHA-1 produces a 160-bit hash).</p> <p>2^160 is a ridiculously large number. It's roughly 10^48. Even if you have a million entries in your database, that's still a 1 in 10^42 chance that a new entry will share the same hash.</p> <p>SHA-1 has proved to be fairly good, so I don't think you need to worry about collisions at all.</p> <p>As a side note, use PHP's *raw_output* feature when you use SHA-1 as this will lead to a shorter string and hence will make your database operations a bit faster.</p> <p>EDIT: To address the birthday paradox, a database with 10^18 (a million million million) entries has a chance of about 1 in 0.0000000000003 of a collision. <em>Really</em> not worth worrying about.</p> http://stackoverflow.com/questions/1762234/line-segments-from-a-point/1766340#1766340 1 Answer by Artelius for Line Segments from a point Artelius 2009-11-19T20:37:44Z 2009-11-19T20:37:44Z <p>slurdge's answer is a good start, but it's a bit more complicated than that.</p> <p>If line segment 2 is closer to C than line segment 1, it could still be visible, e.g.</p> <pre><code>A1-------A2 B1-B2 C </code></pre> <p>Here B1 and B2 are "within" the A1A2 sector, but are not hidden.</p> <p>The hardest one to work out is if B1 is 'between' A1 and A2, but closer to the camera, while B2 is 'not between' A1 and A2, but further from the camera:</p> <pre><code> B2 A1-----A2 B1 C </code></pre> <p>B1B2 could clip the edge of the line segment, thus rendering a small portion of B1B2 hidden (or maybe not!). I think you would have to find the intersection of A1A2 and B1B2 to check whether this actually happens.</p> http://stackoverflow.com/questions/1759588/need-help-understanding-pointers-and-various-other-c-stuff/1759665#1759665 6 Answer by Artelius for Need help understanding pointers and various other C stuff Artelius 2009-11-18T22:38:23Z 2009-11-18T22:38:23Z <p>While <code>dict *dictionary</code> and <code>dict* dictionary</code> have the same meaning in C, I prefer the former.</p> <p>I prefer to think of pointer declarations in these terms:</p> <pre><code>int x; // x is an int int *y; // *y is an int int **z; //**z is an int </code></pre> <p>If you remember that <code>*y</code> is the object that <code>y</code> points to, then it follows that <code>y</code> must be a pointer-to-an-int. And similarly <code>z</code> must be a pointer-to-a-pointer-to-an-int.</p> http://stackoverflow.com/questions/1759420/hide-page-extensions-like-stackoverflow/1759504#1759504 0 Answer by Artelius for Hide Page Extensions (Like StackOverflow) Artelius 2009-11-18T22:10:34Z 2009-11-18T22:27:37Z <p>There are a couple of ways to do it under Apache+PHP, but the essential principle is to make a set of URIs (perhaps all URIs, depending on your site, but you may want different scripts to handle different portions of the site) translate to a single PHP file, which is told what object the user has requested.</p> <p>The conceptually simplest way is to rewrite every URL to a script, which gets the URI through <a href="http://php.net/manual/en/reserved.variables.server.php" rel="nofollow"><code>$_SERVER['REQUEST_URI']</code></a> and interprets it as it likes.</p> <p>The URI rewriting can be done with various methods including mod_rewrite, mod_alias and ErrorDocument (see Apache docs).</p> <p>Another way is to set up more complex URL rewriting (probably using mod_rewrite) to add the path as a GET variable.</p> <p>There is also the <a href="http://php.net/manual/en/reserved.variables.server.php" rel="nofollow"><code>$_SERVER['PATH_INFO']</code></a> variable which is loaded with the <em>non-existent</em> portion of the path. This option requires little or no modification to Apache config files, but reduces the flexibility of your URLs a little.</p> http://stackoverflow.com/questions/1737013/how-can-i-make-this-python-code-more-usable-and-readable/1737060#1737060 4 Answer by Artelius for How Can I Make This Python Code More Usable And Readable? Artelius 2009-11-15T09:18:04Z 2009-11-15T09:18:04Z <p>Some problems:</p> <pre><code>contents = re.match("(\(.*\))", problem) </code></pre> <p>When it's given the input <code>(1+2)/(3+4)</code>, it's going to try to evaluate <code>1+2)/(3+4</code>.</p> <p>It also doesn't go all the way into nested parentheses, for this you would need to use recursion.</p> <p>I think you should make another attempt at this before you "look at the answers".</p> http://stackoverflow.com/questions/1736686/regular-expression-to-match-phone-number/1736720#1736720 1 Answer by Artelius for Regular expression to match phone number? Artelius 2009-11-15T05:45:39Z 2009-11-15T06:16:39Z <p>Supposing that you want to allow the hyphen to be anywhere, <a href="http://www.regular-expressions.info/lookaround.html" rel="nofollow">lookarounds</a> will be of use to you. Something like this:</p> <pre><code>^([A-Z0-9]{7}|(?=^[^-]+-[^-]+$)[A-Z0-9-]{8})$ </code></pre> <p>There are two main parts to this pattern: <code>[A-Z0-9]{7}</code> to match a hyphen-free string and <code>(?=^[^-]+-[^-]+$)[A-Z0-9-]{8}</code> to match a hyphenated string.</p> <p>The <code>(?=^[^-]+-[^-]+$)</code> will match for any string with a SINGLE hyphen in it (and the hyphen isn't the first or last character), then the <code>[A-Z0-9-]{8}</code> part will count the characters and make sure they are all valid.</p> http://stackoverflow.com/questions/1725923/how-bad-is-it-to-use-dynamic-datastuctures-on-an-embedded-system/1726018#1726018 0 Answer by Artelius for how bad is it to use dynamic datastuctures on an embedded system? Artelius 2009-11-12T23:02:26Z 2009-11-12T23:02:26Z <p>Dynamic data structures on embedded systems are a bit like pointers in C++. Pointers (in C++) are evil. But sometimes they're the only option; sometimes they're the lesser evil; and sometimes it's OK to avoid them entirely. In cases where there <em>is</em> a good reason to use them, there can be "good" ways and "bad" ways to do this.</p> <p>Statically allocated variables and arrays are much faster to allocate and deallocate, and can be faster to access, than dynamically allocated data. See <a href="http://stackoverflow.com/questions/1652808/why-does-c-need-arrays-if-it-has-pointers/1652862#1652862">this answer</a>.</p> <p>Dynamically allocated (by which I mean <code>malloc()</code>ed or similar) data also requires <em>space</em> overheads to keep track of the allocations. Several bytes per allocation at least - this space can be very valuable on embedded systems!</p> <p>Memory leaks are a <em>massive</em> problem on embedded systems, which can sometimes be expected to run for years. Avoiding dynamic allocation is prudent from this perspective. </p> <p>Embedded devices usually have fairly dependable specifications. You know what the transfer rate is, you know how fast you can deal with information, and so on. In your example, the solution is to use a fixed-size buffer as a <a href="http://en.wikipedia.org/wiki/Circular%5Fbuffer" rel="nofollow">circular queue</a>. Make the buffer large enough to handle what your device needs to be capable of handling (and perhaps a tiny bit more). If too much data arrives, it's probably due to a fault or interference somewhere else anyway so there's not much point holding and trying to use all that data.</p> http://stackoverflow.com/questions/1721488/c-array-access-through-pointer/1721588#1721588 2 Answer by Artelius for c++ array access through pointer Artelius 2009-11-12T11:31:00Z 2009-11-12T11:31:00Z <p>An array is a series of objects laid out consecutively in memory.</p> <pre><code>int blah[5][10]; </code></pre> <p>is an array of 5 [array of 10 [int]s]s.</p> <p>For instance, <code>blah[0]</code> will give you the 1st array of 10 ints, <code>blah[1]</code> will give you the second, etc.</p> <p>To be able to calculate memory offsets, C needs to know exactly how many elements are in each "subarray".</p> <p>So you could do this</p> <pre><code>void foo(int anArray[][10]) { cout &lt;&lt; anArray[2][2] &lt;&lt; endl; } </code></pre> <p>or this</p> <pre><code>void foo(int anArray[5][10]) { cout &lt;&lt; anArray[2][2] &lt;&lt; endl; } </code></pre> <p>but you cannot do <code>[][]</code>.</p> <p>This is <em>quite different</em> from</p> <pre><code>void foo(int *anArray[10]) { //array of 10 pointers </code></pre> <p>or</p> <pre><code>void foo(int **anArray) { //pointer to pointer (could be a pointer to an array of pointers to more arrays) </code></pre> <p>If you don't know the dimensions of the array in advance, you have to use a more complex data structure. Maybe pass the width/height of the array to the function (or use a struct containing that information) and resolve the 2 dimensions onto a 1-dimensional array, like so:</p> <pre><code>int *arr = malloc(width*height * sizeof(int)); ... cout &lt;&lt; arr[x + y * width] &lt;&lt; endl; </code></pre> http://stackoverflow.com/questions/1720606/when-career-conflicts-with-company/1720638#1720638 1 Answer by Artelius for When career conflicts with company Artelius 2009-11-12T08:01:47Z 2009-11-12T08:01:47Z <p>If you think 1-2 year old stuff is old, you're going to be investing a large portion of your time keeping up with the latest stuff, and in my opinion that's not worth it. Better to know a slightly older technology well than endlessly hopping around.</p> <p>Employment opportunities for something as large as say C# aren't going to become scarce for a <em>very</em> long time.</p> http://stackoverflow.com/questions/1713819/why-fseek-or-fflush-is-always-required-between-reading-and-writing-in-the-read-wr/1713868#1713868 2 Answer by Artelius for why fseek or fflush is always required between reading and writing in the read/write "+" modes. Artelius 2009-11-11T08:44:16Z 2009-11-11T08:44:16Z <p>Because it keeps OS/library code simpler. A file stream may have separate <em>read</em> and <em>write</em> buffers, and extra effort would be required to make sure they are always synchronised. This would cost performance at times when it wasn't needed.</p> <p>So instead, the programmer needs to do this explicitly when it is needed.</p> http://stackoverflow.com/questions/1713471/vba-how-to-perform-an-action-on-specific-elements-of-an-array/1713636#1713636 1 Answer by Artelius for VBA: How to perform an action on specific elements of an array Artelius 2009-11-11T07:34:41Z 2009-11-11T07:34:41Z <p>If you want to specify specific shapes <em>by number</em>, use something like this:</p> <pre><code>For Each shapeNum In Array(1, 3, 5, 9, 10) Set oShape = oSlide.Shapes(shapeNum) oShape.Left = oShape.Left + 5 Next shapeNum </code></pre> <p>If you just want to randomly move certain shapes, then use this:</p> <pre><code>For shapeNum = 1 To oSlide.Shapes.Count If Rnd &lt; 0.5 Then ''1 in 2 chance Set oShape = oSlide.Shapes(shapeNum) oShape.Left = oShape.Left + 5 End If Next shapeNum </code></pre> <p>If you wanted something else, add the detail to your question.</p> http://stackoverflow.com/questions/1713540/what-is-the-complexity-of-this-algorithm/1713549#1713549 4 Answer by Artelius for What is the complexity of this algorithm? Artelius 2009-11-11T07:07:22Z 2009-11-11T07:23:40Z <p>The algorithm is <code>O(n)</code> in the best case, average case, and worst case. It also <em>doesn't work</em>, since it only refers to <code>a1</code> <strike>and uses <code>&lt;</code> where it should use <code>&gt;</code></strike>.</p> http://stackoverflow.com/questions/1704411/how-to-convert-string-to-int-in-c/1704428#1704428 0 Answer by Artelius for How to convert String to int in C Artelius 2009-11-09T22:37:48Z 2009-11-09T22:37:48Z <p>There's also <a href="http://linux.die.net/man/3/sscanf" rel="nofollow"><code>sscanf()</code></a>.</p> http://stackoverflow.com/questions/1880321/why-does-the-260-character-path-length-limit-exist-in-windows Comment by Artelius on Why does the 260 character path length limit exist in Windows? Artelius 2009-12-10T11:19:33Z 2009-12-10T11:19:33Z Symlinks! No, wait... http://stackoverflow.com/questions/1863153/why-unsigned-int-0xffffffff-is-equal-to-int-1 Comment by Artelius on why unsigned int 0xFFFFFFFF is equal to int -1? Artelius 2009-12-07T21:50:25Z 2009-12-07T21:50:25Z Read about &quot;Two's complement&quot; on Wikipedia; this is the most common way of encoding negative numbers in binary. http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist Comment by Artelius on Goto: Why does it still exist? Artelius 2009-12-06T07:45:17Z 2009-12-06T07:45:17Z FYI, GNU C has something which is much like <code>gosub</code> - it's called a <i>nested function</i>. http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist/1854673#1854673 Comment by Artelius on Goto: Why does it still exist? Artelius 2009-12-06T07:44:03Z 2009-12-06T07:44:03Z Yes, THE article. +1 http://stackoverflow.com/questions/1854287/trying-qsort-on-kr-the-c-programming-language/1854317#1854317 Comment by Artelius on Trying qsort on K&R "The C Programming Language" Artelius 2009-12-06T04:42:00Z 2009-12-06T04:42:00Z Let's suppose you know the program is stuck inside <code>qsort()</code>. You notice that there is a <code>for</code> loop inside qsort. You also notice that <code>qsort()</code> calls other functions, including itself. Put <code>printf(&quot;for starting\n&quot;);</code> before the loop and <code>printf(&quot;for ending\n&quot;);</code> after the loop to check if the loop is running forever. If not, try to determine which of the functions you are calling doesn't return. This is actually a rather tricky problem to fix, but if you work on it long enough you will find the answer, and the more often you do this the faster you will learn. http://stackoverflow.com/questions/1854144/64-bit-shared-memory-segment-c-linux-problems Comment by Artelius on 64 bit shared memory segment C \ linux problems Artelius 2009-12-06T02:30:32Z 2009-12-06T02:30:32Z Why use <code>(void&#42;)0</code> when you could use <code>NULL</code>? http://stackoverflow.com/questions/1851134/generate-all-binary-strings-of-length-n-with-k-bits-set Comment by Artelius on Generate all binary strings of length n with k bits set Artelius 2009-12-05T04:48:00Z 2009-12-05T04:48:00Z ... particularly if it's feasible to perform, and cache (memoise) the results of, a partial edge-deletion on a subset of your graph, rather than <i>first</i> generating all strings and <i>then</i> doing stuff with them. This would boost your performance considerably. http://stackoverflow.com/questions/1851134/generate-all-binary-strings-of-length-n-with-k-bits-set Comment by Artelius on Generate all binary strings of length n with k bits set Artelius 2009-12-05T04:42:12Z 2009-12-05T04:42:12Z If you're concerned about performance (i.e. large n and k), you probably want to consider a dynamic-programming approach. http://stackoverflow.com/questions/1846525/is-ah1n1-harmful-to-computers Comment by Artelius on Is AH1N1 harmful to computers? Artelius 2009-12-04T12:10:21Z 2009-12-04T12:10:21Z This clearly belongs on superuser ;) http://stackoverflow.com/questions/1846525/is-ah1n1-harmful-to-computers/1846539#1846539 Comment by Artelius on Is AH1N1 harmful to computers? Artelius 2009-12-04T12:09:42Z 2009-12-04T12:09:42Z They have quite a bit in common, actually. Different viruses spread in different ways, some only affect a subset of the population, some viruses lie dormant for some time while others activate immediately or go through phases, some are difficult to remove, etc. http://stackoverflow.com/questions/1845756/how-to-tamper-with-source-ip-address-on-windows/1845779#1845779 Comment by Artelius on How to tamper with source IP address on Windows Artelius 2009-12-04T11:01:39Z 2009-12-04T11:01:39Z ServerFault/StackOverflow/SuperUser http://stackoverflow.com/questions/1774749/best-opensource-ramdisk Comment by Artelius on Best opensource ramdisk? Artelius 2009-12-04T10:59:36Z 2009-12-04T10:59:36Z Then your question would be &quot;What is a portable way to deal with sensitive data such that it is never written to disk?&quot; You asked something that presupposes that ramdisks are the best solution (maybe they are not) and then does not make clear what your priorities are. http://stackoverflow.com/questions/1846202/php-how-to-generate-a-random-unique-alphanumeric-string Comment by Artelius on PHP: How to generate a random, unique, alphanumeric string? Artelius 2009-12-04T10:52:07Z 2009-12-04T10:52:07Z All you need are strings and uniformly distributed random numbers. http://stackoverflow.com/questions/1846077/size-of-empty-udp-and-tcp-packet Comment by Artelius on Size of empty UDP and TCP packet? Artelius 2009-12-04T10:24:00Z 2009-12-04T10:24:00Z Wikipedia tells you everything you need to know in this case... http://stackoverflow.com/questions/1845869/converting-operator-in-enum Comment by Artelius on Converting operator in enum Artelius 2009-12-04T09:35:34Z 2009-12-04T09:35:34Z I tried to answer your question, but my attempt basically didn't work.