User wnoise - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:59:32Zhttp://stackoverflow.com/feeds/user/15464http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/157662/what-is-the-best-way-to-sample-profile-a-pyobjc-application/165590#1655902Answer by wnoise for What is the best way to sample/profile a PyObjC application?wnoise2008-10-03T03:33:35Z2009-08-22T22:17:09Z<p>The answer is "dtrace", but it won't work on sufficiently old macs.</p>
<p><a href="http://tech.marshallfamily.com.au/archives/python-dtrace-on-os-x-leopard-part-1/" rel="nofollow">http://tech.marshallfamily.com.au/archives/python-dtrace-on-os-x-leopard-part-1/</a></p>
<p><a href="http://tech.marshallfamily.com.au/archives/python-dtrace-on-os-x-leopard-part-2/" rel="nofollow">http://tech.marshallfamily.com.au/archives/python-dtrace-on-os-x-leopard-part-2/</a></p>
http://stackoverflow.com/questions/1316613/what-letter-and-number-mixups-need-to-be-considered/1316849#13168492Answer by wnoise for What Letter and Number Mixups Need to be Considered?wnoise2009-08-22T19:42:07Z2009-08-22T19:42:07Z<p>2 and Z or z. Possibly 9 and g, or 8 and B or 6 and G.</p>
http://stackoverflow.com/questions/1316702/supressing-realplayer-download-video-button/1316844#13168440Answer by wnoise for supressing RealPlayer download video buttonwnoise2009-08-22T19:40:14Z2009-08-22T19:40:14Z<p>Presumably the user installed RealPlayer in order to have this capability. Why do you think you should be able to alter the normal functioning of software on the user's machine?</p>
http://stackoverflow.com/questions/459415/build-numbers-synchronicity-when-delivering-on-multiple-os-platforms/459423#4594232Answer by wnoise for Build Numbers synchronicity when delivering on multiple OS platforms.wnoise2009-01-19T22:23:58Z2009-01-19T22:23:58Z<p>There aren't any downsides that I can see. You want to be able to reproduce the build, so each should say what the build is. If it's the same build, it should be the same build number.</p>
http://stackoverflow.com/questions/459411/replacing-a-line-in-a-csv-file/459418#4594182Answer by wnoise for Replacing a line in a csv file?wnoise2009-01-19T22:21:16Z2009-01-19T22:21:16Z<pre><code>sed 's/,,,/replacement/' < old-file.csv > new-file.csv
</code></pre>
<p>optionally followed by
mv new-file.csv old-file.csv</p>
http://stackoverflow.com/questions/278873/how-to-set-unix-permissions-when-creating-a-file-in-sap-abap/303427#3034270Answer by wnoise for How to set (unix) permissions when creating a file in SAP ABAP?wnoise2008-11-19T21:28:17Z2008-11-19T21:28:17Z<p>What's the umask of the running process? Can you alter it?</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/303014#3030143Answer by wnoise for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?wnoise2008-11-19T19:14:39Z2008-11-19T19:14:39Z<p>Lowest: I've made my own transistors in a physics lab.</p>
<p>Highest: Haskell -- patches to darcs, xmonad.</p>
http://stackoverflow.com/questions/25785/delete-all-but-the-most-recent-x-files-in-bash/299911#2999112Answer by wnoise for Delete all but the most recent X files in bashwnoise2008-11-18T19:51:39Z2008-11-18T19:51:39Z<pre><code>find . -maxdepth 1 -type f -printf '%T@ %p\0' | sort -r -z -n | awk 'BEGIN { RS="\0"; ORS="\0"; FS="" } NR > 5 { sub("^[0-9]*(.[0-9]*)? ", ""); print }' | xargs -0 rm -f
</code></pre>
<p>Requires GNU find for -printf, and GNU sort for -z, and GNU awk for "\0", and GNU xargs for -0, but handles files with embedded newlines or spaces.</p>
http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282714#2827146Answer by wnoise for What are five things you hate about your favorite language?wnoise2008-11-12T01:25:07Z2008-11-12T01:25:07Z<p>Haskell:</p>
<ol>
<li>Space leaks from lazy evaluation.</li>
<li>Numeric Hierarchy not constructed with regard to mathematical abstractions.</li>
<li>Strict monadic IO can make it harder to debug.</li>
<li>The big implementations handle I/O in ways that don't seem quite compatible with the standard. (In particular, outputting characters only outputs the low 8 bits -- and then code gets built that uses this assumption to do binary I/O. Ick.)</li>
<li>Associativity of ($) operator could be changed to make some expressions prettier.</li>
</ol>
<p>Most of these don't rise to the level of hate, and there are people trying to fix or construct solid workarounds for each of these.</p>
http://stackoverflow.com/questions/273691/using-progname-instead-of-argv0/273713#2737132Answer by wnoise for Using '__progname' instead of argv[0]wnoise2008-11-07T21:34:59Z2008-11-07T21:34:59Z<p>It's a BSDism, and definitely not portable.</p>
http://stackoverflow.com/questions/239626/notekeeping-tool-that-doesnt-lock-you-in/239828#2398282Answer by wnoise for Notekeeping tool that doesn't lock you inwnoise2008-10-27T13:10:38Z2008-10-27T13:10:38Z<p>The open source <a href="http://xournal.sourceforge.net/" rel="nofollow">xournal</a> is what I use. It also lets you annotates PDF files, by using them as a background instead of the more normal blank, lined, or gridded. Very similar is <a href="http://www.adebenham.com/gournal/" rel="nofollow">gournal</a></p>
<p>There are also the java apps in the same space: <a href="http://www.dklevine.com/general/software/tc1000/jarnal.htm" rel="nofollow">jarnal</a> and <a href="http://java-notelab.sourceforge.net/" rel="nofollow">notelab</a></p>
<p>Try the ones that work on your platform and see which you like. I don't believe any do handwriting recognition, which is a shame, but they all seem to be pretty usable.</p>
http://stackoverflow.com/questions/239004/need-a-makefile-dependency-rule-that-can-handle-missing-files/239035#2390351Answer by wnoise for Need a makefile dependency rule that can handle missing fileswnoise2008-10-27T03:50:49Z2008-10-27T03:50:49Z<p><a href="http://make.paulandlesley.org/autodep.html" rel="nofollow">http://make.paulandlesley.org/autodep.html</a> has a description of this exact problem, and a couple of ways around it. The first is a bit misguided, but the "advanced" is essentially spot on.</p>
http://stackoverflow.com/questions/238382/downsampling-and-applying-a-lowpass-filter-to-digital-audio/238619#2386191Answer by wnoise for Downsampling and applying a lowpass filter to digital audiownoise2008-10-26T21:03:49Z2008-10-26T21:03:49Z<p>The "best" solution possible is indeed a DFT, discarding the top 3/4 of the frequencies, and performing an inverse DFT, with the domain restricted to the bottom 1/4th. Discarding the top 3/4ths is a low-pass filter in this case. Padding to a power of 2 number of samples will probably give you a speed benefit. Be aware of how your FFT package stores samples though. If it's a complex FFT (which is much easier to analyze, and generally has nicer properties), the frequencies will either go from -22 to 22, or 0 to 44. In the first case, you want the middle 1/4th. In the latter, the outermost 1/4th.</p>
<p>You can do an adequate job by averaging sample values together. The naïve way of grabbing samples four by four and doing an equal weighted average works, but isn't too great. Instead you'll want to use a "kernel" function that averages them together in a non-intuitive way.</p>
<p>Mathwise, discarding everything outside the low-frequency band is multiplication by a box function in frequency space. The (inverse) Fourier transform turns pointwise multiplication into a convolution of the (inverse) Fourier transforms of the functions, and vice-versa. So, if we want to work in the time domain, we need to perform a convolution with the (inverse) Fourier transform of box function. This turns out to be proportional to the "sinc" function (sin at)/at, where a is the width of the box in the frequency space. So at every 4th location (since you're downsampling by a factor of 4) you can add up the points near it, multiplied by sin (a dt) / a dt, where dt is the distance in time to that location. How nearby? Well, that depends on how good you want it to sound. It's common to ignore everything outside the first zero, for instance, or just take the number of points to be the ratio by which you're downsampling.</p>
<p>Finally there's the piss-poor (but fast) way of just discarding the majority of the samples, keeping just the zeroth, the fourth, and so on.</p>
<p>Honestly, if it fits in memory, I'd recommend just going the DFT route. If it doesn't use one of the software filter packages that others have recommended to construct the filter for you.</p>
http://stackoverflow.com/questions/74693/is-there-a-platform-independent-way-java-to-read-an-audio-cds-toc/237297#2372972Answer by wnoise for Is there a platform independent way (Java?) to read an audio CD's TOC?wnoise2008-10-26T01:01:29Z2008-10-26T01:01:29Z<p>Sorry, you're out of luck. You'll need JNI, and it'll be obnoxiously different for different platforms. The base java libraries cover tasks and hardware that are pretty much universal. CD drives weren't and aren't considered so.</p>
http://stackoverflow.com/questions/234914/looking-for-a-universal-document-viewer-implemented-as-a-java-applet-or-with-a/234931#2349310Answer by wnoise for Looking for a "Universal" Document viewer implemented as a Java Applet or with a Java SDK.wnoise2008-10-24T19:19:20Z2008-10-24T20:07:03Z<p>It's not a plugin, but <a href="http://multivalent.sourceforge.net/" rel="nofollow">multivalent</a> is a java library and browser for a large number of document formats, but probably not all the ones you'd like to cover.</p>
<p>It does at least cover the PDF, HTML, and any reasonable image format, but not any of the proprietary formats.</p>
http://stackoverflow.com/questions/140510/workaround-for-j2me-hessian-limitations/234938#2349380Answer by wnoise for Workaround for J2ME Hessian limitations ?wnoise2008-10-24T19:22:35Z2008-10-24T19:22:35Z<p>This is somewhat confusing as a Hessian is a matrix of mixed second partial derivatives, and a library that couldn't handle complex numbers would indeed be a problem.</p>
<p>Why'd they have to reuse a well-established name with other meanings?</p>
http://stackoverflow.com/questions/34081/parsing-where-can-i-learn-about-it/234863#2348630Answer by wnoise for Parsing, where can I learn about it.wnoise2008-10-24T19:01:52Z2008-10-24T19:01:52Z<p>Lots of people have recommended books. For many these are much more useful in a structured environment with assignments and due dates and so forth. Even if not, having the material presented in a different way can help greatly.</p>
<p>(a) Have you considered going to a school with a decent CS curriculum?<br />
(b) There are lots of online lectures, such as <a href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm" rel="nofollow">MIT's Open Courseware</a>. Their <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/" rel="nofollow">EE/CS section</a> has many courses that touch on parsing, though I can't see any on parsing per se. It's typically introduced as one of the first theory courses as language classification and automata is at the heart of much of CS theory.</p>
http://stackoverflow.com/questions/233358/elf-file-headers/234344#2343442Answer by wnoise for ELF file headerswnoise2008-10-24T16:50:07Z2008-10-24T16:50:07Z<p>I'm fairly sure that a sufficiently complex ld script can do what you want. However, I have no idea how.</p>
<p>On the other hand, <a href="http://elfsh.asgardlabs.org/" rel="nofollow">elfsh</a> can easily do all sorts of manipulations to elf objects, so give it a whirl.</p>
http://stackoverflow.com/questions/232303/so-you-think-you-know-pointers/232319#23231912Answer by wnoise for So you think you know pointers?wnoise2008-10-24T02:40:38Z2008-10-24T02:40:38Z<pre><code>0x12345678
0x1234567C
0x12345678
0x12345688
</code></pre>
http://stackoverflow.com/questions/232212/binary-tail-a-file/232277#2322771Answer by wnoise for Binary "tail" a filewnoise2008-10-24T02:15:56Z2008-10-24T02:15:56Z<p>This isn't tail -- this is progressively copying a file. Look at rsync.</p>
http://stackoverflow.com/questions/228377/could-a-website-force-the-browser-to-go-into-fullscreen-mode/228512#228512-2Answer by wnoise for Could a website force the browser to go into fullscreen mode?wnoise2008-10-23T04:13:34Z2008-10-23T04:13:34Z<p>Is this really a psychology study, or are you trying to goatse random people with a full screen image?</p>
http://stackoverflow.com/questions/224038/c-shell-how-to-execute-a-program-with-non-command-line-arguments/224147#2241470Answer by wnoise for C Shell: How to execute a program with non-command line arguments?wnoise2008-10-22T01:19:49Z2008-10-22T01:19:49Z<p>This is a job for the unix program expect, which can nicely and easily interactively command programs and respond to their prompts.</p>
http://stackoverflow.com/questions/27516/whats-the-difference-between-programmer-and-software-engineer/209737#2097373Answer by wnoise for What's the difference between programmer and software engineer?wnoise2008-10-16T18:37:14Z2008-10-16T18:37:14Z<p>Software engineer: someone who wants to piggy back on the reputation of real engineers.
Consider how you feel about someone calling a trash collector or janitor a "sanitation engineer".</p>
<p>Programming is not engineering; it is not an industrial process; it doesn't have the same material constraints. It is instead an art and a craft. Yes, there are techniques we know work better or worse, and we try to collect and consistently apply these.</p>
<p>But you get to call yourself an engineer when you put your signature on a design and cannot by law work in the same field if it fails.</p>
http://stackoverflow.com/questions/205911/any-tools-to-catch-silly-mistakes-in-c-code/206072#2060720Answer by wnoise for Any Tools to Catch Silly Mistakes in C Code?wnoise2008-10-15T19:28:15Z2008-10-15T19:28:15Z<p>A good syntax highlighter will make some cases like this more visible.</p>
http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug/186308#186308-5Answer by wnoise for Program only crashes as release build -- how to debug?wnoise2008-10-09T07:52:03Z2008-10-09T07:52:03Z<p>I agree with Rolf. Because reproducibility is so important, you shouldn't have a non-debug mode. All your builds should be debuggable. Having two targets to debug more than doubles your debugging load. Just ship the "debug mode" version, unless it is unusable. In which case, make it usable.</p>
http://stackoverflow.com/questions/174968/how-many-parameters-are-too-many/175002#175002-1Answer by wnoise for How many parameters are too many?wnoise2008-10-06T16:19:13Z2008-10-06T16:19:13Z<p>Forty-two.</p>
http://stackoverflow.com/questions/167562/how-to-know-if-there-is-a-compiled-in-kernel-module-device-driver-controlling-a/171372#1713721Answer by wnoise for How to know if there is a (compiled in/kernel module) device driver controlling a device on a running linux?wnoise2008-10-05T02:30:24Z2008-10-05T02:30:24Z<p>lspci -n will give you PCI ids that you can search for on the <a href="http://cateee.net/lkddb/" rel="nofollow">linux kernel driver database</a>. This will tell you which kernel options to enable.</p>
http://stackoverflow.com/questions/170909/making-a-nonblocking-socket-for-winsocks-and-nix/171364#1713644Answer by wnoise for Making a Nonblocking socket for WinSocks and *nixwnoise2008-10-05T02:24:59Z2008-10-05T02:24:59Z<p>select() is supposed to work on <em>blocking</em> sockets. It returns when a read() would return immediately, which is always the case with non-blocking sockets.</p>
http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell/169031#1690312Answer by wnoise for How do you make a generic memoize function in Haskell?wnoise2008-10-03T21:48:27Z2008-10-05T02:12:39Z<p>This largely follows <a href="http://www.haskell.org/haskellwiki/Memoization" rel="nofollow">http://www.haskell.org/haskellwiki/Memoization</a>.</p>
<p>You want a function of type (a -> b). If it doesn't call itself, then
you can just write a simple wrapper that caches the return values. The
best way to store this mapping depends on what properties of a you can
exploit. Ordering is pretty much a minimum. With integers
you can construct an infinite lazy list or tree holding the values.</p>
<pre><code>type Cacher a b = (a -> b) -> a -> b
positive_list_cacher :: Cacher Int b
positive_list_cacher f n = (map f [0..]) !! n
</code></pre>
<p>or</p>
<pre><code>integer_list_cacher :: Cacher Int b
integer_list_cacher f n = (map f (interleave [0..] [-1, -2, ..]) !!
index n where
index n | n < 0 = 2*abs(n) - 1
index n | n >= 0 = 2 * n
</code></pre>
<p>So, suppose it is recursive. Then you need it to call not itself, but
the memoized version, so you pass that in instead:</p>
<pre><code>f_with_memo :: (a -> b) -> a -> b
f_with_memo memoed base = base_answer
f_with_memo memoed arg = calc (memoed (simpler arg))
</code></pre>
<p>The memoized version is, of course, what we're trying to define.</p>
<p>But we can start by creating a function that caches its inputs:</p>
<p>We could construct one level by passing in a function that creates a
structure that caches values. Except we need to create the version of f
that <em>already has</em> the cached function passed in.</p>
<p>Thanks to laziness, this is no problem:</p>
<pre><code>memoize cacher f = cached where
cached = cacher (f cached)
</code></pre>
<p>then all we need is to use it: </p>
<pre><code>exposed_f = memoize cacher_for_f f
</code></pre>
<p>The article gives hints as to how to use a type class selecting on the
input to the function to do the above, rather than choosing an explicit
caching function. This can be really nice -- rather than explicitly
constructing a cache for each combination of input types, we can implicitly
combine caches for types a and b into a cache for a function taking a and b.</p>
<p>One final caveat: using this lazy technique means the cache never shrinks,
it only grows. If you instead use the IO monad, you can manage this, but
doing it wisely depends on usage patterns.</p>
http://stackoverflow.com/questions/170237/why-is-coding-so-slow/170903#1709030Answer by wnoise for Why is coding so slow?wnoise2008-10-04T19:35:37Z2008-10-04T19:35:37Z<p>Because you waste too much time on discussion on internet sites instead of actually coding?</p>
<p>Programmers are considered notoriously bad at estimating time to completion. It turns out though that we're not far off if we consider only the coding time -- the problem is all the other crap in our workdays, from useless meetings to, yes, goofing off on the internet.</p>
http://stackoverflow.com/questions/27516/whats-the-difference-between-programmer-and-software-engineer/209737#209737Comment by wnoise on What's the difference between programmer and software engineer?wnoise2009-12-12T23:45:27Z2009-12-12T23:45:27ZCan you state what "engineering principles" are? If they're not specific to field, I'd merely call that "professionalism" -- following best practices,and so forth. If they are specific to a field, and that field isn't programming, than they don't apply. If they're specific to programming, then why are they "engineering principles?"http://stackoverflow.com/questions/459411/replacing-a-line-in-a-csv-file/459418#459418Comment by wnoise on Replacing a line in a csv file?wnoise2009-01-20T00:57:43Z2009-01-20T00:57:43ZIt asked for replacement, not removal when I answered.http://stackoverflow.com/questions/457694/how-to-commit-a-git-repo-to-an-empty-repo-svn-server/457704#457704Comment by wnoise on How to commit a Git repo to an empty repo SVN server?wnoise2009-01-20T00:46:42Z2009-01-20T00:46:42ZBecause then history is lost.http://stackoverflow.com/questions/302914/crc32-c-or-c-implementationComment by wnoise on CRC32 C or C++ implementationwnoise2008-11-19T19:16:16Z2008-11-19T19:16:16ZWhy do you think adler32 is no good for small chunks?http://stackoverflow.com/questions/282176/waitpid-equivalent-with-timeout/282210#282210Comment by wnoise on Waitpid equivalent with timeout?wnoise2008-11-12T16:43:01Z2008-11-12T16:43:01ZWell, you can do the self-pipe trick, and have the waitpid-thread really be blocking on a select to a pipe instead. Then, when it gets SIGCHLD, have it write a byte to the pipe, which wakes itself up.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282359#282359Comment by wnoise on What are five things you hate about your favorite language?wnoise2008-11-12T01:17:38Z2008-11-12T01:17:38ZCould you split these into two separate answers?http://stackoverflow.com/questions/238382/downsampling-and-applying-a-lowpass-filter-to-digital-audio/238409#238409Comment by wnoise on Downsampling and applying a lowpass filter to digital audiownoise2008-11-02T18:23:00Z2008-11-02T18:23:00ZMendelt: FFT is a particular way of calculating the DFT, that is O(n log n) instead O(n^2). It's most easily implemented for powers of two, but it's not restricted to that. Zero padding to a power of two is easy in any case, and no information is lost when doing so.http://stackoverflow.com/questions/238668/proprietary-system-documentation-leaks-and-how-to-stop-them/240496#240496Comment by wnoise on Proprietary system documentation 'leaks' and how to stop them?wnoise2008-10-28T05:33:10Z2008-10-28T05:33:10ZYes, automate as much as possible. Deciding what sort of build this should be is a human decision. If possible, avoid having different types of builds.http://stackoverflow.com/questions/23287/prime-factors/242290#242290Comment by wnoise on Prime factorswnoise2008-10-28T05:30:49Z2008-10-28T05:30:49ZYes, but this is horribly inefficient. Once you've divided out all the 2s, you really shouldn't try dividing by 4, or by 6, or ...; It really is much more efficient in the limit to only check primes, or use some toher algorithm.http://stackoverflow.com/questions/238728/security-is-it-ok-to-send-a-username-and-password-via-http-get/238745#238745Comment by wnoise on Security - is it ok to send a username and password via HTTP GET?wnoise2008-10-26T22:59:00Z2008-10-26T22:59:00ZCareful, you could get in trouble for "hacking" unless you have permission from higher-ups.http://stackoverflow.com/questions/238382/downsampling-and-applying-a-lowpass-filter-to-digital-audio/238409#238409Comment by wnoise on Downsampling and applying a lowpass filter to digital audiownoise2008-10-26T20:37:53Z2008-10-26T20:37:53ZIf you can process everything at once, zero padding eliminates all edge issues.http://stackoverflow.com/questions/237452/can-i-use-subversion-on-my-home-computerComment by wnoise on Can I use subversion on my home computer?wnoise2008-10-26T05:56:23Z2008-10-26T05:56:23ZYou should edit the title to ask "How can I ..." -- Of course you <i>can</i>, the license terms don't forbid it or anything.http://stackoverflow.com/questions/37702/true-random-number-generator/37709#37709Comment by wnoise on True random number generator wnoise2008-10-26T03:10:46Z2008-10-26T03:10:46Zpseudo, not psuedo.http://stackoverflow.com/questions/237370/does-stdsizet-make-sense-in-cComment by wnoise on Does "std::size_t" make sense in C++?wnoise2008-10-26T02:35:53Z2008-10-26T02:35:53ZC doesn't have namespaces.http://stackoverflow.com/questions/228518/palindrome-golf/231391#231391Comment by wnoise on Palindrome Golfwnoise2008-10-25T07:21:16Z2008-10-25T07:21:16ZThe Wicked Flea: Oh, there's far more cryptic, like unlambda, befunge, or INTERCAL. A friend of mine wrote a compiler <i>to</i> unlambda...