User DarenW - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:10:37Zhttp://stackoverflow.com/feeds/user/10468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1410525/volume-of-a-3d-closed-mesh-car-object/1898484#18984841Answer by DarenW for Volume of a 3D closed mesh car objectDarenW2009-12-14T01:25:56Z2009-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#18980810Answer by DarenW for Understanding the UNIX command xargsDarenW2009-12-13T22:46:39Z2009-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#18381030Answer by DarenW for How to organize useful materials eg: urlsDarenW2009-12-03T06:39:38Z2009-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-bug2Ways to corner a stickiness bugDarenW2009-12-02T16:30:31Z2009-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#18379691Answer by DarenW for Ways to corner a stickiness bugDarenW2009-12-03T06:06:46Z2009-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#18285230Answer by DarenW for Wrapping image around objects in web appDarenW2009-12-01T20:03:28Z2009-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#17330590Answer by DarenW for quaternion libraries in C/C++DarenW2009-11-14T02:45:09Z2009-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#17232550Answer by DarenW for communication between Java and C#DarenW2009-11-12T15:55:29Z2009-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#16896541Answer by DarenW for Runge-Kutta (RK4) integration for game physicsDarenW2009-11-06T19:08:26Z2009-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#16888072Answer by DarenW for When calculating the fast fourier tranform..?DarenW2009-11-06T16:42:28Z2009-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#692001Answer by DarenW for Practices for programming in a scientific environment?DarenW2008-09-16T03:38:56Z2009-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#691840Answer by DarenW for Practices for programming in a scientific environment?DarenW2008-09-16T03:34:19Z2009-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#2208121Answer by DarenW for What surprised you the most about the software industry?DarenW2008-10-21T04:58:43Z2009-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#9623220Answer by DarenW for How many digits will be after converting from one numeral system to anotherDarenW2009-06-07T17:06:38Z2009-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#8718840Answer by DarenW for How to check if file is under source control in SharpSvn?DarenW2009-05-16T07:20:53Z2009-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#8717110Answer by DarenW for Why is it better to use '!=" than '<' in a vector loop? (C++)DarenW2009-05-16T04:40:52Z2009-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 '<' 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#8509720Answer by DarenW for How to Make an Image Uniform Brightness (using Python/PIL)DarenW2009-05-12T02:55:33Z2009-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-1Answer by DarenW for Reporting information during code execution: best designDarenW2009-04-12T01:56:38Z2009-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#6799871Answer by DarenW for C/C++: How to make a variadic macro (variable number of arguments)DarenW2009-03-25T02:13:59Z2009-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#3935990Answer by DarenW for Defend zero-based arraysDarenW2008-12-26T07:51:47Z2009-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-filename3feeding data to C API expecting a filenameDarenW2009-03-01T06:12:57Z2009-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-group2Source Control for an Academic Research Group?DarenW2008-12-15T20:07:04Z2009-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#1475674Answer by DarenW for C++ versus DDarenW2008-09-29T04:56:44Z2009-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#4015040Answer by DarenW for Classes Including Each Other in C++DarenW2008-12-30T21:03:46Z2008-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#3935841Answer by DarenW for Where can I find a good FFT sample implementation/tutorial?DarenW2008-12-26T07:19:44Z2008-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#3935641Answer by DarenW for Where can I find a good FFT sample implementation/tutorial?DarenW2008-12-26T06:57:51Z2008-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#3935591Answer by DarenW for Where can I find a good FFT sample implementation/tutorial?DarenW2008-12-26T06:55:54Z2008-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#3935502Answer by DarenW for How to teach programming to power users?DarenW2008-12-26T06:45:25Z2008-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#3693860Answer by DarenW for Should we be tracking defects in things other than code?DarenW2008-12-15T19:10:08Z2008-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#3646231Answer by DarenW for script for actionscript/flash and c++DarenW2008-12-13T01:24:03Z2008-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#1898081Comment by DarenW on Understanding the UNIX command xargsDarenW2009-12-13T22:48:04Z2009-12-13T22:48:04Zbtw, 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#1834447Comment by DarenW on Ways to corner a stickiness bugDarenW2009-12-03T06:21:33Z2009-12-03T06:21:33ZThis 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#1834447Comment by DarenW on Ways to corner a stickiness bugDarenW2009-12-03T03:00:45Z2009-12-03T03:00:45ZThere'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-bugComment by DarenW on Ways to corner a stickiness bugDarenW2009-12-03T01:24:51Z2009-12-03T01:24:51ZOne 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#1834447Comment by DarenW on Ways to corner a stickiness bugDarenW2009-12-03T00:11:48Z2009-12-03T00:11:48ZAw 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#1834148Comment by DarenW on Ways to corner a stickiness bugDarenW2009-12-03T00:10:46Z2009-12-03T00:10:46ZI'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#1828129Comment by DarenW on positive and negative waveformsDarenW2009-12-01T20:04:18Z2009-12-01T20:04:18ZA 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-waveformsComment by DarenW on positive and negative waveformsDarenW2009-12-01T18:28:00Z2009-12-01T18:28:00ZWhat format of audio file? What software are you using to look at it? By "far greater" 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#1804299Comment by DarenW on Why does the :link pseudo selector break expected CSS specificity rules?DarenW2009-11-28T20:29:28Z2009-11-28T20:29:28ZRob - I am enlightened! http://stackoverflow.com/questions/1804081/why-does-the-link-pseudo-selector-break-expected-css-specificity-rules/1804299#1804299Comment by DarenW on Why does the :link pseudo selector break expected CSS specificity rules?DarenW2009-11-26T15:35:35Z2009-11-26T15:35:35ZThis 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#1634552Comment by DarenW on Part time programming job - does it exist?DarenW2009-11-23T06:09:04Z2009-11-23T06:09:04Zthis is what worked for me more than oncehttp://stackoverflow.com/questions/336350/what-is-the-most-challenging-technical-problem-youve-solved-in-your-life/336358#336358Comment by DarenW on What is the most challenging technical problem you've solved in your life?DarenW2009-11-20T00:53:16Z2009-11-20T00:53:16ZI 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-hyperspaceComment by DarenW on Should Qt target the HyperSpace?DarenW2009-06-07T20:32:22Z2009-06-07T20:32:22ZI 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 "serverfault.com", and - as someone proposed for photography - "lensflare", 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#525129Comment by DarenW on numpy, PIL adding an imageDarenW2009-05-12T02:30:14Z2009-05-12T02:30:14Zthis is especially nice for getting the job done without dragging in numpy. http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213086#213086Comment by DarenW on 5 years experience == 100k+ salary? Really?DarenW2009-04-21T18:21:41Z2009-04-21T18:21:41Zmoney 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.