User DarenW - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:10:37Z http://stackoverflow.com/feeds/user/10468 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1410525/volume-of-a-3d-closed-mesh-car-object/1898484#1898484 1 Answer by DarenW for Volume of a 3D closed mesh car object DarenW 2009-12-14T01:25:56Z 2009-12-14T01:25:56Z <p>For volume...</p> <p>For each triangular facet, lookup its corner points. Call 'em P,Q,R.<br> Compute this quantity (I call it "partial volume") </p> <pre><code>pv = PxQyRz + PyQzRx + PzQxRy - PxQzRy - PyQxRz - PzQyRx </code></pre> <p>Add these together for all facets and divide by 6.</p> <p>Important! The P,Q,R for each facet must be arranged clockwise as seen from outside. (Or all counter-clockwise, as long as it's consistent for all facets.)</p> <p>If the mesh has any quadrilaterals, just temporarily hallucinate a diagonal joining one pair of opposite corners. That makes it into two triangles.</p> <p>Practical computationial improvement: Before doing math with P,Q and R, subtract the coordinates of some "center" point C. This can be the center of mass, a midpoint between the min/max x, y and z, or any convenient point inside or near the mesh. This helps minimize truncation errors for more accurate volumes.</p> http://stackoverflow.com/questions/1898044/understanding-the-unix-command-xargs/1898081#1898081 0 Answer by DarenW for Understanding the UNIX command xargs DarenW 2009-12-13T22:46:39Z 2009-12-13T22:46:39Z <p>A good example of what xargs does is to try getting sorted checksums for every file in a directory using find.</p> <pre><code>find . | cksum | sort </code></pre> <p>returns just one checksum, and it's not clear what it's the checksum for. Not what we want. The pipe sends the stdout from find into stdin for cksum. What cksum really wants is a list of command line args, e.g.</p> <pre><code>cksum file001.blah file002.blah file003.blah </code></pre> <p>will report three lines, one per file, with the desired checksums. Xargs does the magic trick - converting stdout of the previous program to a temporary and hidden command line to feed to the next. The command line that works is:</p> <pre><code>find . | xargs cksum | sort </code></pre> <p>Note no pipe between xargs and cksum.</p> http://stackoverflow.com/questions/1837950/how-to-organize-useful-materials-eg-urls/1838103#1838103 0 Answer by DarenW for How to organize useful materials eg: urls DarenW 2009-12-03T06:39:38Z 2009-12-03T06:39:38Z <p>Tiddly wiki. It's like a wki but instead of one page per topic, it's one boxful of text per topic, with as many boxes aka "tiddlys" on one page. It's a self-modifying html file full of javascript; no web server at all. After the initial learning curve of about an hour, it becomes useful.</p> <p>I've been stashing all kinds of reference material, links, notes, how-to cheat sheets, etc. organized by language, day of the week, project, or other categories, and now consider it to be my "Third Hemisphere" </p> <p><a href="http://www.tiddlywiki.org/" rel="nofollow">http://www.tiddlywiki.org/</a></p> <p>There was a discusson on Joel's about organizing notes with mention of tiddlywiki. <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.646091.33" rel="nofollow">http://discuss.joelonsoftware.com/default.asp?joel.3.646091.33</a> and also <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.679489.28" rel="nofollow">http://discuss.joelonsoftware.com/default.asp?joel.3.679489.28</a> and <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.608573.14" rel="nofollow">http://discuss.joelonsoftware.com/default.asp?joel.3.608573.14</a></p> http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug 2 Ways to corner a stickiness bug DarenW 2009-12-02T16:30:31Z 2009-12-03T06:06:46Z <p>How to determine exactly what a piece of software is doing when it is stuck, unresponsive to user input and not updating its display? </p> <p>I have tried oprofile, which records what function is executing, but it's not giving me enough clues. It counts everything that happens during the time it's running, when I need to see what's happening only when the specimen program is stuck. </p> <p>The problem might involve interrupts, waiting on network sockets, timers, a GUI event handler, or who knows what. How to find out as much as possible about what's going on, not just the execution points of each thread?</p> <p>The soffware of interest runs on Linux, built using gcc, mostly C++ but may involve other languages including interpreted ones e.g. Python. </p> <p>The particular case of concern now is Firefox, for which I have checked out source. Firefox pauses all input and screen output at random times, frequently, for about 5-10 seconds each time. Even if someone handed me the solution to this particular problem on a silver platter, sure I'll take it but still be asking. If possible, I'd like to learn general techniques that would apply to any software, especially stuff I'm responsible for.</p> http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1837969#1837969 1 Answer by DarenW for Ways to corner a stickiness bug DarenW 2009-12-03T06:06:46Z 2009-12-03T06:06:46Z <p>A stack trace can be obtained of a running program. At a command line, use "ps aux" to find the program's PID. Suppose it's 12345. Then run:</p> <pre><code>gdb ---pid=12345 </code></pre> <p>When the program is stuck in a pause (or when doing anything suspicious), do a ctrl-C in gdb. The "bt" command in gdb prints the stack, which can be admired now or pasted into a text file for later study. Resume execution of the program with "c" (continue).</p> <p>The main advantage of this manual technique over using oprofile or other profilers, is I can get the exact call sequence during a moment of interest. A few samples during times of trouble, and a few when the program is running normally, should give useful clues.</p> http://stackoverflow.com/questions/1825097/wrapping-image-around-objects-in-web-app/1828523#1828523 0 Answer by DarenW for Wrapping image around objects in web app DarenW 2009-12-01T20:03:28Z 2009-12-01T20:03:28Z <p>It might be some sort of OpenGL 3D rendering, but an image could easily be morphed in a purely 2D way for this effect. Horizontally, it would need to be squished where it goes off the side of the cup. Each column of pixels needs to be shifted vertically by varying amounts depending on which column - such that a horizontal line the image would become like a "U" shape. With the right parameters, such a morph could mimic the proper 3D shape. Lighting effects could be applied to, by brightening/darkening the image a bit in the right places.</p> http://stackoverflow.com/questions/508370/quaternion-libraries-in-c-c/1733059#1733059 0 Answer by DarenW for quaternion libraries in C/C++ DarenW 2009-11-14T02:45:09Z 2009-11-14T02:45:09Z <p>There's Eigen, a templated library of math and geometry stuff used in Blender and by KDE programs, which has a slick Quaternion class defined in a single .h file.</p> <p>Info at <a href="http://eigen.tuxfamily.org/index.php?title=Main%5FPage" rel="nofollow">http://eigen.tuxfamily.org/index.php?title=Main%5FPage</a> and <a href="http://www.ohloh.net/p/5393" rel="nofollow">http://www.ohloh.net/p/5393</a></p> http://stackoverflow.com/questions/1719935/communication-between-java-and-c/1723255#1723255 0 Answer by DarenW for communication between Java and C# DarenW 2009-11-12T15:55:29Z 2009-11-12T15:55:29Z <p>If performance is important, see what's used in scientific computing. Scientists have the same sort of problems seen in enterprises, needing to connect clients and servers and all that, in an even wider range of languages and platforms. Perhaps this component tie-together tool called Babel would be useful beyond its original domain? Interfaces are described by SIDL (like IDL in CORBA) but I don't know if C# is covered yet. <a href="https://computation.llnl.gov/casc/components/babel.html" rel="nofollow">https://computation.llnl.gov/casc/components/babel.html</a> </p> http://stackoverflow.com/questions/1668098/runge-kutta-rk4-integration-for-game-physics/1689654#1689654 1 Answer by DarenW for Runge-Kutta (RK4) integration for game physics DarenW 2009-11-06T19:08:26Z 2009-11-06T19:08:26Z <p>This may be a bit oversimplified so far as actual math, but meant as an intuitive guide to Runge Kutta integration.</p> <p>Given some quantity at some time t1, we want to know the quantity at another time t2. With a first-order differential equation, we can know the rate of change of that quantity at t1. There is nothing else we can know for sure; the rest is guessing. </p> <p>Euler integration is the simplest way to guess: linearly extrapolate from t1 to t2, using the precisely known rate of change at t1. This usually gives a bad answer. If t2 is far from t1, this linear extrapolation will fail to match any curvature in the ideal answer. If we take many small steps from t1 to t2, we'll have the problem of subtraction of similar values. Roundoff errors will ruin the result. </p> <p>So we refine our guess. One way is to go ahead and do this linear extrapolation anyway, then hoping it's not too far off from truth, use the differential equation to compute an estimate of the rate of change at t2. This, averaged with the (accurate) rate of change at t1, better represents the typical slope of the true answer between t1 and t2. We use this to make a fresh linear extrapolation from to t1 to t2. It's not obvious if we should take the simple average, or give more weight to the rate at t1, without doing the math to estimate errors, but there is a choice here. In any case, it's a better answer than Euler gives.</p> <p>Perhaps better, make our initial linear extrapolation to a point in time midway between t1 and t2, and use the differential equation to compute the rate of change there. This gives roughly as good an answer as the average just described. Then use this for a linear extrapolation from t1 to t2, since our purpose it to find the quantity at t2. This is the midpoint algorithm.</p> <p>You can imagine using the mid-point estimate of the rate of change to make another linear extrapolation of the quantity from t1 to the midpoint. With the differential equation we get an better estimate of the slope there. Using this, we end by extrapolating from t1 all the way to t2 where we want an answer. This is the Runge Kutta algorithm.</p> <p>Could we do a third extrapolation to the midpoint? Sure, it's not illegal, but detailed analysis shows diminishing improvement, such that other sources of error dominate the final result. </p> <p>Runge Kutta applies the differential equation to the intial point t1, twice to the midpoint, and once at the final point t2. The in-between points are a matter of choice. It is possible to use other points between t1 and t2 for making those improved estimates of the slope. For example, we could use t1, a point one third the way toward t2, another 2/3 the way toward t2, and at t2. The weights for the average of the four derivates will be different. In practice this doesn't really help, but might have a place in testing since it ought to give the same answer but will provide a different set of roundoff errors.</p> http://stackoverflow.com/questions/1688410/when-calculating-the-fast-fourier-tranform/1688807#1688807 2 Answer by DarenW for When calculating the fast fourier tranform..? DarenW 2009-11-06T16:42:28Z 2009-11-06T16:42:28Z <p>Without knowing just what your setup is, and the purpose of this processing, we can only guess at a good answer. I'll assume you mean that you have two microphones in different locations. </p> <p>If you add the two channels first, or if you Fourier transform each and then add, you'll get bad results. The reason is interference - at some frequencies the source will be an integer number of wavelengths from one microphone but an integer and a half from the other. This is a common beginner's problem in audio recording. </p> <p>Perhaps what you want to it measure the signal of a source heard by both microphones, while ignoring random noise and extraneous sources local to each microphone. In that case, do a Fourier on each channel, compute the power (the squared magnitude) at each frequency, take the logarithm of that, and then average the two channels. This avoid problems with interference, and statistically reduces the random noise (though not a whole lot).</p> http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment/69200#69200 1 Answer by DarenW for Practices for programming in a scientific environment? DarenW 2008-09-16T03:38:56Z 2009-10-18T13:22:52Z <p>For source code management, centralized systems such as <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> are superior for scientific use due to the clear single point of truth (SPOT). Logging of changes and ability to recall versions of any file, without having chase down where to find something, has huge record-keeping advantages. Tools like <a href="http://en.wikipedia.org/wiki/Git%5F%28software%29" rel="nofollow">Git</a> and <a href="http://en.wikipedia.org/wiki/Monotone%5F%28software%29" rel="nofollow">Monotone</a>: oh my gosh the chaos I can imagine that would follow! Having clear-cut records of just what version of hack-job scripts were used while toying with the new sensor when that Higgs boson went by or that supernova blew up, will lead to happiness. </p> http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment/69184#69184 0 Answer by DarenW for Practices for programming in a scientific environment? DarenW 2008-09-16T03:34:19Z 2009-10-18T11:28:14Z <p>Definitely, use <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> to keep current, work-in-progress, and stable snapshot copies of source code. This includes C++, Java etc. for homegrown software tools, and quickie scripts for one-off processing. </p> <p>With the strong leaning in science and applied engineering toward "lone cowboy" development methodology, the usual practice of organizing the repository into trunk, tag and whatever else it was - don't bother! Scientists and their lab technicians like to twirl knobs, wiggle electrodes and chase vacuum leaks. It's enough of a job to get everyone to agree to, say Python/<a href="http://en.wikipedia.org/wiki/NumPy" rel="nofollow">NumPy</a> or follow some naming convention; forget trying to make them follow arcane software developer practices and conventions. </p> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/220812#220812 1 Answer by DarenW for What surprised you the most about the software industry? DarenW 2008-10-21T04:58:43Z 2009-09-16T22:33:21Z <p>Once I had to start working at it full time everyday I just didn't enjoy it, or could stay sane, any more. Burnout became a chronic condition. That is more my reaction to it than the industry itself, but I hadn't really imagined what working in the industry was really like in everyday terms.</p> http://stackoverflow.com/questions/962301/how-many-digits-will-be-after-converting-from-one-numeral-system-to-another/962322#962322 0 Answer by DarenW for How many digits will be after converting from one numeral system to another DarenW 2009-06-07T17:06:38Z 2009-06-07T17:06:38Z <p>look at the logarithms base P and base Q. Round down to nearest integer. </p> <p>The logarithm base P can be computed using your favorite base (10 or e): log_P(x) = log_10(x)/log_10(P)</p> http://stackoverflow.com/questions/868701/how-to-check-if-file-is-under-source-control-in-sharpsvn/871884#871884 0 Answer by DarenW for How to check if file is under source control in SharpSvn? DarenW 2009-05-16T07:20:53Z 2009-05-16T07:20:53Z <p>SvnClient.Status() ?</p> http://stackoverflow.com/questions/871666/why-is-it-better-to-use-than-in-a-vector-loop-c/871711#871711 0 Answer by DarenW for Why is it better to use '!=" than '<' in a vector loop? (C++) DarenW 2009-05-16T04:40:52Z 2009-05-16T04:40:52Z <p>It could be that the programmer remembered a defensive coding trick: In case something goes haywire during the loop's execution, and the index/pointer/iterator goes way past the end, the loop will quietly stop upon checking '&lt;' leaving the bug unnoticed. With != there's likely to be chaos and a crash as the loop continues with bad data, allowing an earlier fix. </p> http://stackoverflow.com/questions/664760/how-to-make-an-image-uniform-brightness-using-python-pil/850972#850972 0 Answer by DarenW for How to Make an Image Uniform Brightness (using Python/PIL) DarenW 2009-05-12T02:55:33Z 2009-05-12T02:55:33Z <p>What type of image? If it's supposed to be ideally pure black and white, as with text pages, then your raw data probably is something like a grayscale gradient with varying levels of not-quite-black letters. Thresholding against a constant may give good results, but not if the illumination is too uneven or lens glare interferes. Threshold the image against a smoothed version of itself. Smooth it using PIL_usm.gblur(image, radius) where radius (in pixels) is something like ten, twenty or some value comparable to the width of elements of the letters. Quick hackcode from old notes just for illustration:</p> <pre><code>import Image import PIL_usm # see http://www.cazabon.com/pyCMS/PIL_usm.html for PIL_usm img = Image.open(...) sm = PIL_usm(img, 10) thr = Image.ImageChops.subtract(img,sm, .001, 128) # or whatever works 4u... </code></pre> <p>OTOH, if these documents have photographs or other non-bilevel graphics, you'll need to be more clever. </p> http://stackoverflow.com/questions/741063/reporting-information-during-code-execution-best-design/741157#741157 -1 Answer by DarenW for Reporting information during code execution: best design DarenW 2009-04-12T01:56:38Z 2009-04-12T01:56:38Z <p>I would define a ExecuteStep(step,msg) function taking a pointer, reference, lambda block or whatever to the code that actually performs the step - doStep1() etc. in your example - and also a string as the message to print, log, or ignore. ExecuteStep() would print the message and then execute the given function. It could then be modified later - but anyone using your library probalby won't want to or be able to dig into library internals. So let it be a method of a StepExecutor class which the end programmer can subclass and override. StepExecutor could offer the default behavior of printing the message to stdout (great for develop/debug) and then executing the step. It could also offer methods to write to a log file and whatever for the derived classes to use. </p> <p>Ah, OO polymorphism at its finest.</p> http://stackoverflow.com/questions/679979/c-c-how-to-make-a-variadic-macro-variable-number-of-arguments/679987#679987 1 Answer by DarenW for C/C++: How to make a variadic macro (variable number of arguments) DarenW 2009-03-25T02:13:59Z 2009-03-25T02:13:59Z <p>explained for g++ here, though it is part of C99 so should work for everyone</p> <p><a href="http://www.delorie.com/gnu/docs/gcc/gcc_44.html" rel="nofollow">http://www.delorie.com/gnu/docs/gcc/gcc_44.html</a> </p> <p>quick example:</p> <pre><code>#define debug(format, args...) fprintf (stderr, format, args) </code></pre> http://stackoverflow.com/questions/393462/defend-zero-based-arrays/393599#393599 0 Answer by DarenW for Defend zero-based arrays DarenW 2008-12-26T07:51:47Z 2009-03-02T00:16:35Z <p>It is just so, and has been for many years. To change it, or even to debate it, is just as pointless as to change or debate changing traffic lights. Let's make blue=stop, red=go.</p> <p>Look into changes made over time in Numerical Recipes for C++. They had used macros to fake 1-based indexing, but in the 2001 edition gave up and joined the herd. There may be enlighting material on the reasons behind this at their site www.nr.com</p> <p>BTW, also annoying is the variants of specifying a range out of an array. Example: python vs. IDL; a[100:200] vs a[100:199] to get 100 elements. Just gotta learn the quirks of each language. To change a language that does it one way to match the other would cause such cussing and gnashing of teeth, and not solve any real problem.</p> http://stackoverflow.com/questions/599358/feeding-data-to-c-api-expecting-a-filename 3 feeding data to C API expecting a filename DarenW 2009-03-01T06:12:57Z 2009-03-01T23:30:42Z <p>I'm writing a straightforward C program on Linux and wish to use an existing library's API which expects data from a file. I must feed it a file name as a const char*. But i have data, just like content of a file, already sitting in a buffer allocated on the heap. There is plenty of RAM and we want high performance. Wanting to avoid writing a temporary file to disk, what is a good way to feed the data to this API in a way that looks like a file?</p> <p>Here's a cheap pretend version of my code:</p> <p>marvelouslibrary.h:</p> <pre><code>int marvelousfunction(const char *filename); </code></pre> <p>normal-persons-usage.cpp, for which library was originally designed:</p> <pre><code>#include "marvelouslibrary.h" int somefunction(char *somefilename) { return marvelousfunction(somefilename); } </code></pre> <p>myprogram.cpp:</p> <pre><code>#include "marvelouslibrary.h" int one_of_my_routines() { byte* stuff = new byte[1000000]; // fill stuff[] with...stuff! // stuff[] holds same bytes as might be found in a file /* magic goes here: make filename referring to stuff[] */ return marvelousfunction( ??? ); } </code></pre> <p>To be clear, the marvelouslibrary does not offer any API functions that accept data by pointer; it can only read a file. </p> <p>I thought of pipes and mkfifo(), but seems meant for communicating between processes. I am no expert at these things. Does a named pipe work okay read and written in the same process? Is this a wise approach? </p> <p>Or skip being clever, go with plan "B" which is to shuddup and just write a temp file. However, i'd like to learn something new and find out what's possible in this situation, beside getting high performance.</p> http://stackoverflow.com/questions/369538/source-control-for-an-academic-research-group 2 Source Control for an Academic Research Group? DarenW 2008-12-15T20:07:04Z 2009-01-28T13:52:25Z <p>In contrast to most software development organizations, our little research group within a university department consists of a professor and a flow of grad and undergrad students, it's hard to retain any working knowledge beyond the research itself. Our backgrounds vary, and rarely involves much computer science background. (i have not myself ever taken a computer-related class.) </p> <p>Yet we need to work on our homebrew software for planning and analysis, with distinction between the best current production version and development versions, protection against ill-conceived changes, ability to recall last year's version, etc. It'll be hard to get each student up to speed on subversion and learn to be careful about the repository, understanding branches/tags or however we organize it. (secondary question: how to get someone up to speed on svn?) </p> <p>Perhaps one of the distributed version control systems would be better suited, or a centralized system other than svn would be wise, or if not, are there easily propagated practices with subversion we should follow?</p> http://stackoverflow.com/questions/146850/c-versus-d/147567#147567 4 Answer by DarenW for C++ versus D DarenW 2008-09-29T04:56:44Z 2009-01-11T02:00:40Z <p>I like that D is the work of a genius, primarily one mind - Walter Bright, whose Zortech compiler was fantastic in its day. </p> <p>In contrast C++ is too much design by committee, even if Bjarne is an influence. Too many add-on features and weird new syntax. This difference reflects in the ease of learning and ease of everyday use, fewer bugs. </p> <p>The more coherent languages lead to better productivity and programmer joy - but this is subjective and arguable! (i guess i should vote my own answer down)</p> http://stackoverflow.com/questions/396084/classes-including-each-other-in-c/401504#401504 0 Answer by DarenW for Classes Including Each Other in C++ DarenW 2008-12-30T21:03:46Z 2008-12-30T21:03:46Z <p>In such situations, i create a common header to be included in all sources with forward declarations:</p> <pre><code>#ifndef common_hpp #define common_hpp class A; class B; #endif </code></pre> <p>Then the individual class header files typically don't need any #includes to reference other classes, if all that's needed are pointers or references to those classes. Half the time though there are other goodies in those headers, but at least any problem with circular references are solved with common.hpp</p> http://stackoverflow.com/questions/393490/where-can-i-find-a-good-fft-sample-implementation-tutorial/393584#393584 1 Answer by DarenW for Where can I find a good FFT sample implementation/tutorial? DarenW 2008-12-26T07:19:44Z 2008-12-26T07:19:44Z <p>If you can find a copy, Musical Applications of Microprocessors by Hal Chamberlin, 1983 (?) may have a section of FFT - alas my copy is at work right now so i can't check the book specifically for FFT wisdom. But i did learn many basics of audio filtering, sampling etc. and there is plenty of material on Fourier transforms and their uses. </p> http://stackoverflow.com/questions/393490/where-can-i-find-a-good-fft-sample-implementation-tutorial/393564#393564 1 Answer by DarenW for Where can I find a good FFT sample implementation/tutorial? DarenW 2008-12-26T06:57:51Z 2008-12-26T06:57:51Z <p>The old standard book for number crunching: Numerical Recipes, may have an sufficient explanation.</p> http://stackoverflow.com/questions/393490/where-can-i-find-a-good-fft-sample-implementation-tutorial/393559#393559 1 Answer by DarenW for Where can I find a good FFT sample implementation/tutorial? DarenW 2008-12-26T06:55:54Z 2008-12-26T06:55:54Z <p><a href="http://www.cmlab.csie.ntu.edu.tw/cml/dsp/training/coding/transform/fft.html" rel="nofollow">http://www.cmlab.csie.ntu.edu.tw/cml/dsp/training/coding/transform/fft.html</a> (yeesh, i found this useful but the font and layout are horrible. i hope it's just my browser being weird)</p> http://stackoverflow.com/questions/393547/how-to-teach-programming-to-power-users/393550#393550 2 Answer by DarenW for How to teach programming to power users? DarenW 2008-12-26T06:45:25Z 2008-12-26T06:45:25Z <p>On those occasions i've explained programming to smart power user non-programmers, i find there's only so much i can show before they've filled their minds and need to digest it. Like a meal, it will take many bytes.</p> <p>I used to recommend to those who ask for a good initial beginner's project, to try a calculator - limited to one digit, only add and subtract, never mind making it look good etc but that turns out to be about three mouthfuls at once, if they're coming from a cold start.</p> <p>It's tough enough just to make one simple window with a "quit" button that actually works without crashing. Enough ideas must be grokked just to do that, whether you're using C and the Win API directly, or using Python and wx, or whatever tool at any level. Make that the first session, and yes, assuming you have to cover some basics of the language involved too, that's easily an hour. </p> <p>Are you limited to only one session? That would be sad. The second session could be where you add buttons, text edit boxes, and try connecting to a toy database. A simple window to form a simple query and get a simple answer. Again, there's enough to grok and mentally digest, i wouldn't go any farther than that given one hour. </p> http://stackoverflow.com/questions/369377/should-we-be-tracking-defects-in-things-other-than-code/369386#369386 0 Answer by DarenW for Should we be tracking defects in things other than code? DarenW 2008-12-15T19:10:08Z 2008-12-15T19:10:08Z <p>Well duh... anything you can improve, do what can to improve! </p> <p>Treating it all as bug tracking makes sense - opinion will vary, as you note - but using one tracking system would give a coherent big picture of it all, let tasks be assigned, etc. Maybe a demo, a slide show or something aimed at using these systems in ways beyond the original source code tracking - pictures convince more than words.</p> http://stackoverflow.com/questions/284189/script-for-actionscript-flash-and-c/364623#364623 1 Answer by DarenW for script for actionscript/flash and c++ DarenW 2008-12-13T01:24:03Z 2008-12-13T01:24:03Z <p>Have you looked at haxe? <a href="http://www.haxe.org" rel="nofollow">http://www.haxe.org</a></p> <p>The haxe compiler can produce swf files, javascripts and other, with a language that resembles actionscript or javascript more or less, depending on what language details you care about. </p> <p>Here's this nice teaser from the haxe site: "Currently in testing, with the right build of haXe from Hugh Sanderson, you can now output your haXe applications to pure C++ source code, complete with makefiles." </p> <p>But no, i don't know about using java inside a flash. You mean the flash app executing java while it's running? or using java to create a flash app? </p> http://stackoverflow.com/questions/1898044/understanding-the-unix-command-xargs/1898081#1898081 Comment by DarenW on Understanding the UNIX command xargs DarenW 2009-12-13T22:48:04Z 2009-12-13T22:48:04Z btw, this is the main ingredient in my recipe for finding duplicated files in two or more directories, even if their names are different. http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834447#1834447 Comment by DarenW on Ways to corner a stickiness bug DarenW 2009-12-03T06:21:33Z 2009-12-03T06:21:33Z This has been a useful direction to pursue, but I'd like formulate what I've found as a fresh standalone answer. As for this Florida air, right now it's rather cool and rainy. You don't want this - unless you are in a deser? http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834447#1834447 Comment by DarenW on Ways to corner a stickiness bug DarenW 2009-12-03T03:00:45Z 2009-12-03T03:00:45Z There's lsstack for Linux but unfortunately compiles and runs only on 32 bit; i'm running 64 bit. http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug Comment by DarenW on Ways to corner a stickiness bug DarenW 2009-12-03T01:24:51Z 2009-12-03T01:24:51Z One big difference between regular profiling and what I'm asking is that I want to diagnose delays that occur randomly, while profiling normally locates portions of code that reproducibly run slow. http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834447#1834447 Comment by DarenW on Ways to corner a stickiness bug DarenW 2009-12-03T00:11:48Z 2009-12-03T00:11:48Z Aw man, i gotta stop living in a cave! Haven't heard of this pstack til now... it may do the job. http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834148#1834148 Comment by DarenW on Ways to corner a stickiness bug DarenW 2009-12-03T00:10:46Z 2009-12-03T00:10:46Z I've used strace for programs that crash. Is it useful for a running one which I don't want to kill? http://stackoverflow.com/questions/1827918/positive-and-negative-waveforms/1828129#1828129 Comment by DarenW on positive and negative waveforms DarenW 2009-12-01T20:04:18Z 2009-12-01T20:04:18Z A high pass filter with a low cutoff frequency, below the lowest freq in the audio, should fix it. http://stackoverflow.com/questions/1827918/positive-and-negative-waveforms Comment by DarenW on positive and negative waveforms DarenW 2009-12-01T18:28:00Z 2009-12-01T18:28:00Z What format of audio file? What software are you using to look at it? By &quot;far greater&quot; do you mean the peaks or the areas? Perhaps you could post an image, or link to one. Could this a DC offset? Harmonics can mix to make unsymmetric looking waveforms, but you should normally see equal areas of positive and negative on average. http://stackoverflow.com/questions/1804081/why-does-the-link-pseudo-selector-break-expected-css-specificity-rules/1804299#1804299 Comment by DarenW on Why does the :link pseudo selector break expected CSS specificity rules? DarenW 2009-11-28T20:29:28Z 2009-11-28T20:29:28Z Rob - I am enlightened! http://stackoverflow.com/questions/1804081/why-does-the-link-pseudo-selector-break-expected-css-specificity-rules/1804299#1804299 Comment by DarenW on Why does the :link pseudo selector break expected CSS specificity rules? DarenW 2009-11-26T15:35:35Z 2009-11-26T15:35:35Z This seems like a good short, to-the-point answer, except what are these sets of four numbers? http://stackoverflow.com/questions/1634491/part-time-programming-job-does-it-exist/1634552#1634552 Comment by DarenW on Part time programming job - does it exist? DarenW 2009-11-23T06:09:04Z 2009-11-23T06:09:04Z this is what worked for me more than once http://stackoverflow.com/questions/336350/what-is-the-most-challenging-technical-problem-youve-solved-in-your-life/336358#336358 Comment by DarenW on What is the most challenging technical problem you've solved in your life? DarenW 2009-11-20T00:53:16Z 2009-11-20T00:53:16Z I just gave a talk about this at a national lab in October. It seems to be of interest. http://stackoverflow.com/questions/876841/should-qt-target-the-hyperspace Comment by DarenW on Should Qt target the HyperSpace? DarenW 2009-06-07T20:32:22Z 2009-06-07T20:32:22Z I 2nd Jeff. While an interesting topic, it seems more about marketing and business strategy and speculation than pure bit-twiddling API-inhaling protocol-twisting programming. This sort of stuff goes best in a regular open tech/business forum. Or, how about a new stackoverflow-style site for this kind of stuff? In the same vein as &quot;serverfault.com&quot;, and - as someone proposed for photography - &quot;lensflare&quot;, how about a www.plummetingsales.com for marketing, product development, strategic aliances and such? http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/525129#525129 Comment by DarenW on numpy, PIL adding an image DarenW 2009-05-12T02:30:14Z 2009-05-12T02:30:14Z this is especially nice for getting the job done without dragging in numpy. http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213086#213086 Comment by DarenW on 5 years experience == 100k+ salary? Really? DarenW 2009-04-21T18:21:41Z 2009-04-21T18:21:41Z money lubricates all the little acts in life - to drive to the place where one volunteers, to communicate, to buy tools and materials to repair. to support arts projects and entrepreneurs. so it's good to have plenty.