User Nils Pipenbrinck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T11:58:13Zhttp://stackoverflow.com/feeds/user/15955http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779742/can-i-use-a-usb-to-serial-adapter-to-talk-to-my-development-board-from-vmware-fus/1779825#17798255Answer by Nils Pipenbrinck for Can I use a USB-to-serial adapter to talk to my development board from VMWare Fusion?Nils Pipenbrinck2009-11-22T20:11:03Z2009-11-22T20:11:03Z<p>There are two ways to do it:</p>
<ol>
<li><p>Your host-OS supports your USB<->serial converter (very likely). If so you can just allow your VM to talk to the serial port. If so the VM will see a standard serial port and everything will be fine.</p></li>
<li><p>Your guest-os in the VM supports the USB<->serial converter, <em>AND</em> your host-OS allows raw USB forwarding. </p></li>
</ol>
<p>All in all the chances are good that it works..</p>
<p>Btw: there are good and bad USB<->Serial converters. If you find out that the serial connection seems to work (everything detects/works as expected for a couple of seconds), but you can't get a reliable connection for a longer time, then it's very possible that the usb<->serial dongle sucks....</p>
<p>You get what you pay for... When buying these things I'd check comp.arch.embedded and ask which usb dongles are known to just work, and which not. (My recommendation is to stick with products from Assmann. You can order them at digikey).</p>
http://stackoverflow.com/questions/1779625/game-platform-engine-for-inexperienced-solo-developer/1779656#17796561Answer by Nils Pipenbrinck for Game platform/engine for inexperienced/solo developer?Nils Pipenbrinck2009-11-22T19:13:09Z2009-11-22T19:13:09Z<blockquote>
<ul>
<li><p>This will also be a solo project plus a graphics designer. </p></li>
<li><p>designing the game will be very much a part-time project but needs to go out in 2 - 4 months(?). </p></li>
</ul>
</blockquote>
<p>Two words:</p>
<p>Forget it!</p>
http://stackoverflow.com/questions/1778758/complex-numbers-fast-cartesian-to-polar-conversion0Complex numbers: fast cartesian to polar conversionNils Pipenbrinck2009-11-22T13:52:55Z2009-11-22T15:53:36Z
<p>Hi.</p>
<p>I'm looking for a fast way to turn an array of complex numbers into polar representation.</p>
<p>E.g, given a complex number X I want to turn it into polar representation like this:</p>
<pre><code> Q.phase = atan2 (X.imag / X.real);
Q.magniude = sqrt (X.imag * X.imag + X.real * X.real);
</code></pre>
<p>I need to do this conversion around 400 thousand times per second on a fixed point DSP. My numbers are in 1.15.16 fixed point format and I'd like to keep it that way.</p>
<p>The DSP is very fast when I execute things in unconditional loops, e.g. when the loop-count known in advance. It crawls when it has to do subroutine calls and divisions. Cache misses are very slow as well, so I'd like not to use large lookup-tables if possible (4k would be okay.. I can set aside a bit of on-chip memory for that task).</p>
<p>Currently I process atan2 as a polynomial approximation and use the well-known bitwise algorithm for the integer square-root. That's not fast enough.</p>
<p>I have the feeling that there should be a more efficient way to get the result. Maybe some of the computations from sqrt and atan can be shared? Or is there an iterative way to get my results?</p>
http://stackoverflow.com/questions/1774791/faster-strlen/1775291#17752912Answer by Nils Pipenbrinck for faster strlen ?Nils Pipenbrinck2009-11-21T11:55:38Z2009-11-21T11:55:38Z<p>Get a Core i7 processor.</p>
<p>Core i7 comes with the SSE 4.2 instruction set. Intel added four additional vector instructions to speed up strlen and related search tasks.</p>
<p>Here are some interesting thoughts about the new instructions:</p>
<p><a href="http://smallcode.weblogs.us/oldblog/2007/11/" rel="nofollow">http://smallcode.weblogs.us/oldblog/2007/11/</a></p>
http://stackoverflow.com/questions/1755624/request-for-comments-on-huffman-compression/1755654#17556540Answer by Nils Pipenbrinck for Request for comments on Huffman compressionNils Pipenbrinck2009-11-18T12:31:33Z2009-11-18T12:31:33Z<p>Arabcoder, your assumptions are correct.</p>
<p>As a side note: A lot of 8 bit huffman codecs don't only compress the 256 natural symbols of a byte. They also have one or more special symbols. These are used to detect the end of the huffman stream or to switch from one huffman tree to another...</p>
http://stackoverflow.com/questions/1752974/add-numbers-using-mips/1753046#17530461Answer by Nils Pipenbrinck for add numbers using mipsNils Pipenbrinck2009-11-18T01:28:53Z2009-11-18T10:23:11Z<p>Here's my take on it. Written for clarity, not performance...</p>
<pre><code>testcode:
LI $V0, 0 # initialize result
LI $V1, 1 # counter start value.
LI $A1, 11 # iteration count:
.next: # a label (branch target)
ADDU $V0, $V0, $V1 # add current counter value to V0
ADDIU $V1, $v1, 1 # increment counter
BNE $V1, $A1, .next # branch unless V1 is eleven (10 iters done).
NOP # take care about the branch delay slot.
# now store the result:
SW $v0, $A0 # store v0 at location A0.
J $RA # return to caller.
NOP # take care about the branch delay slot.
</code></pre>
<p>This function ought to be callable from C as:</p>
<pre><code>void testcode (int * result);
</code></pre>
http://stackoverflow.com/questions/1753029/sun-raster-images-why-1-byte-row-padding-when-width-is-odd/1753117#17531172Answer by Nils Pipenbrinck for Sun Raster images: Why 1 byte row padding when width is odd?Nils Pipenbrinck2009-11-18T01:48:56Z2009-11-18T01:48:56Z<p>I'd say the image loading code in Gimp and ImageMagick has a bug. Simple as that.</p>
<p>Keep in mind that the SUN-Raster format isn't that widely used. It's very possible that you're one of the first who actually tried to use this format, found out that it doesn't work as expected and not ignored it.</p>
<p>If the spec. sais something along the lines: <em>Regardless of width, the stored scanlines are rounded up to multiples of 16 bits</em>, then there isn't much room for interpretation.</p>
http://stackoverflow.com/questions/375259/unaligned-memory-accesses2unaligned memory accesses Nils Pipenbrinck2008-12-17T17:02:07Z2009-11-16T12:45:23Z
<p>I'm working on an embedded device that does not support unaligned memory accesses. </p>
<p>For a video decoder I have to process pixels (one byte per pixel) in 8x8 pixel blocks. The device has some SIMD processing capabilities that allow me to work on 4 bytes in parallel.</p>
<p>The problem is, that the 8x8 pixel blocks aren't guaranteed to start on an aligned address and the functions need to read/write up to three of these 8x8 blocks. </p>
<p>How would you approach this if you want very good performance? After a bit of thinking I came up with the following three ideas:</p>
<ol>
<li><p>Do all memory accesses as bytes. This is the easiest way to do it but slow and it does not work well with the SIMD capabilites (it's what I'm currently do in my reference C-code). </p></li>
<li><p>Write four copy-functions (one for each alignment case) that load the pixel-data via two 32-bit reads, shift the bits into the correct position and write the data to some aligned chunk of scratch memory. The video processing functions can then use 32 bit accesses and SIMD. Drawback: The CPU will have no chance to hide the memory latency behind the processing.</p></li>
<li><p>Same idea as above, but instead of writing the pixels to scratch memory do the video-processing in place. This may be the fastest way, but the number of functions that I have to write for this approach is high (around 60 I guess).</p></li>
</ol>
<p>Btw: I will have to write all functions in assembler because the compiler generates horrible code when it comes to the SIMD extension. </p>
<p>Which road would you take, or do you have another idea how to approach this?</p>
http://stackoverflow.com/questions/1739482/gcc-force-a-function-call-after-every-instruction-for-multithreaded-testing/1739500#17395004Answer by Nils Pipenbrinck for GCC: Force a function call after every instruction (for multithreaded testing)?Nils Pipenbrinck2009-11-16T00:40:23Z2009-11-16T00:40:23Z<p>No, GCC does not has such an option.</p>
<p>However, you may be able hack together a script that does that job. You can compile your code to assembler using the -S option. Compiler generated assembler is relative easy to parse.</p>
<p>Don't forget to save the flags and all registers inside your debugging code though.</p>
http://stackoverflow.com/questions/1730738/determine-vram-size-on-windows/1730860#17308601Answer by Nils Pipenbrinck for Determine VRAM size on windowsNils Pipenbrinck2009-11-13T17:49:02Z2009-11-13T17:49:02Z<p>Short answer: There is no reliable way to get this information.</p>
<p>Long answer:</p>
<p>There are numerous, deprecated ways to get this information. Like opening an old DirectDraw interface and query the available video memory. That number however may include AGP memory, unified memory or it may not include it. Or you may even get a dummy value hard-coded into the driver.</p>
<p>I know you already know that querying this number is a bad idea, but let me summarize it again for the other readers:</p>
<p>What do you want to do with the number at the first place? As an application programmer you have very limited control how the video-memory is used. You don't allocate or manage memory in any way. The driver is doing this for you. Making your code aware of the "faked" available memory will lead to serious problems.</p>
<p>You may think you can use the available memory to decide how many textures will fit into the video memory, but that's a false assumption. Some cards have very strange requirements how the memory is used. One particular card that I know some details off has a minimal size for any mipmap of 4kb. </p>
<p>So if you would load a 8x8 8-bit texture into memory you may expect it to take 85 bytes (8*8+4+4+2+2+1). After the driver did the upload job it'll be 12kb in size however (4 * 4kb). Your estimate would be off by more than a factor of hundred.</p>
<p>The same applies to vertex and index-buffers, render-targets, shaders and so on.</p>
<p>That's the reason why this information does not get exposed to applications anymore. It made to many problems in the past.</p>
http://stackoverflow.com/questions/1728405/basic-dsp-question/1729528#17295281Answer by Nils Pipenbrinck for Basic DSP questionNils Pipenbrinck2009-11-13T14:26:02Z2009-11-13T14:26:02Z<p>What unwind said:</p>
<pre><code>out_sample = in_sample * volume / 255;
</code></pre>
<p>If you're working on a real DSP chip or hardware without fast dividers you can use this trick to get the same values without division:</p>
<pre><code>int product = in_sample * volume;
out_sample = (product + (product>>8) + 1)>>8;
</code></pre>
<p>On a modern DSP like the C64x+ this code runs about 10 times faster...</p>
<p>Also:</p>
<p>You're talking about volume, and you currently apply a 8 bit volume as a linear gain factor. However, our ears interpret volume as a logarithmic effect. You may want to do a conversion from db (your 8 bits) to linear gain prior to the multiplication. Precalculate them and put them into a table. While you're doing this you can also raise the scale of the value to 2^15 for more precision.</p>
<p>That'll give you a much nicer response and much less clicks of you do volume-fades.</p>
http://stackoverflow.com/questions/1723807/c-c-open-source-acoustic-echo-cancellation-audio-analyzer-cleaner/1724026#17240260Answer by Nils Pipenbrinck for C/C++ open source Acoustic Echo Cancellation audio analyzer/cleanerNils Pipenbrinck2009-11-12T17:38:54Z2009-11-12T17:38:54Z<p>How about this: <a href="http://tinyurl.com/yhet5wz" rel="nofollow">http://tinyurl.com/yhet5wz</a> ?</p>
http://stackoverflow.com/questions/1715224/very-fast-memcpy-for-image-processing/1723985#17239851Answer by Nils Pipenbrinck for Very fast memcpy for image processing?Nils Pipenbrinck2009-11-12T17:31:27Z2009-11-12T17:31:27Z<p>The SSE-Code posted by hapalibashi is the way to go.</p>
<p>If you need even more performance and don't shy away from the long and winding road of writing a device-driver: All important platforms nowadays have a DMA-controller that is capable of doing a copy-job faster and in parallel to CPU code could do.</p>
<p>That involves writing a driver though. No big OS that I'm aware of exposes this functionality to the user-side because of the security risks.</p>
<p>However, it may be worth it (if you need the performance) since no code on earth could outperform a piece of hardware that is designed to do such a job.</p>
http://stackoverflow.com/questions/1708200/saying-c-c-are-equal-by-functionality-but-not-by-concept/1708234#17082340Answer by Nils Pipenbrinck for Saying "C & C# are equal by functionality, but not by concept"Nils Pipenbrinck2009-11-10T14:09:14Z2009-11-10T14:09:14Z<p>That's absolutely correct.</p>
<p>You can even extend this to all languages as everything that can be done with one turing-complete language can be done with another turing-complete language... </p>
<p>And C and C# are turing-complete of course.</p>
http://stackoverflow.com/questions/1705688/referring-to-data-both-by-name-and-by-number-in-c/1705735#17057351Answer by Nils Pipenbrinck for Referring to data both by name and by number in CNils Pipenbrinck2009-11-10T05:07:24Z2009-11-10T05:07:24Z<p>The low-level C way to do this would be to wrap the cars structure into a union:</p>
<pre><code>// define a structure for the cars.
typedef struct
{
int saabs;
int hondas;
int porsches;
} cars;
// wrap it into a union:
typedef union
{
cars byname;
int byid[3]; // Note: Number and type must match with the cars structure.
} cars2;
int main (int argc, char **arg)
{
cars2 my_cars;
int i;
// fill out by name:
my_cars.byname.saabs = 1;
my_cars.byname.hondas = 5;
my_cars.byname.porsches = 3;
// print by index:
for (i=0; i<3; i++)
printf ("%d\n", my_cars.byid[i]);
}
</code></pre>
http://stackoverflow.com/questions/1704893/how-is-read-only-memory-implemented-in-c/1704922#170492211Answer by Nils Pipenbrinck for how is read-only memory implemented in c?Nils Pipenbrinck2009-11-10T00:34:08Z2009-11-10T00:34:08Z<p>That's not a feature of the c-language but a feature of the compiler/linker and the operation system working together.</p>
<p>When you compile such a code the following happens:</p>
<ul>
<li><p>The compiler will put the string into a read-only data-section.</p></li>
<li><p>The linker collects all the data in such read-only sections and puts them into a single segment. This segment resides in the executable file and is flagged with a "read only"-attribute.</p></li>
<li><p>Now comes the operation system executable loader. It loads the executable (or maps it into memory to be more exact). Once this is done the loader walks the sections and sets access-permissions for each segment. For a read-only data segment it will most likely disable code-execute and write access. Code (e.g. your functions) gets execute rights but no write access. Ordinary data like static variables gets read and write access and so on...</p></li>
</ul>
<p>That's now modern operation systems do it. </p>
<p>As said it's not a feature of the c-language. If you compile the same problem for DOS for example the program will run but no write protection would be possible because the DOS-loader does not know about read-only sections. </p>
http://stackoverflow.com/questions/1703300/how-to-find-out-what-was-the-last-reason-to-tokenize/1703388#17033880Answer by Nils Pipenbrinck for How to find out what was the last reason to tokenizeNils Pipenbrinck2009-11-09T20:02:52Z2009-11-09T20:02:52Z<p>The strtok and the CLIB does not expose this information. So there is no portable way to get it.</p>
<p>You may get the information you're looking for with a hack that works for your clib-implementation, but if you want something stable and portable the only choice you have is to implement a strtok-workalike that tells you the separator.</p>
<p>That task is not rocket-science btw...</p>
http://stackoverflow.com/questions/1674005/fast-4x4-matrix-multiplication-in-c/1674043#167404320Answer by Nils Pipenbrinck for Fast 4x4 Matrix Multiplication in CNils Pipenbrinck2009-11-04T14:21:20Z2009-11-04T14:31:38Z<p>No, the Strassen or Coppersmith-Winograd algorithm wouldn't make much difference here. They start to pay off for larger matrices only. </p>
<p>If your matrix-multiplication is really a bottleneck you could rewrite the algorithm using NEON SIMD instructions. That would only help for ARMv7 as ARMv6 does not has this extension though.</p>
<p>I'd expect a factor 3 speedup over the compiled C-code for your case.</p>
<p>EDIT: You can find a nice implementation in ARM-NEON here: <a href="http://code.google.com/p/math-neon/" rel="nofollow">http://code.google.com/p/math-neon/</a></p>
<p>For your C-code there are two things you could do to speed up the code:</p>
<ol>
<li><p>Don't inline the function. Your matrix multiplication generates quite a bit of code as it's unrolled, and the ARM only has a very tiny instruction cache. Excessive inlining can make your code slower because the CPU will be busy loading code into the cache instead of executing it.</p></li>
<li><p>Use the restrict keyword to tell the compiler that the source- and destination pointers don't overlap in memory. Currently the compiler is forced to reload every source value from memory whenever a result is written because it has to assume that source and destination may overlap or even point to the same memory.</p></li>
</ol>
http://stackoverflow.com/questions/1656010/c-inline-assembly-memory-copy/1657243#16572433Answer by Nils Pipenbrinck for C inline assembly memory copyNils Pipenbrinck2009-11-01T14:05:34Z2009-11-02T05:13:03Z<p>Your inline assembler code is broken. You can't directly use EAX and EBX without adding them to the clobber list. Otherwise the compiler does not now which registers have been modified.</p>
<p>It is very likely that one of the registers that you've modified contained something damn important that later caused the segmentation fault.</p>
<p><hr /></p>
<p>This code will copy one element from array1 to array2:</p>
<pre><code>asm (
"movl (%0), %%eax \n\t" /* read first dword from array1 into eax */
"movl %%eax, (%1) \n\t" /* write dword into array2
: /* outputs */
: /* inputs */ "r"(array1),"r"(array2)
: /* clobber */ "eax", "memory"
);
</code></pre>
<p>A better version with proper register constraints would drop the hard coded EAX like this:</p>
<pre><code>int dummy;
asm (
"movl (%1), %0 \n\t"
"movl %0, (%2) \n\t"
: /* outputs, temps.. */ "=r" (dummy)
: /* inputs */ "r"(array1),"r"(array2)
: /* clobber */ "memory"
);
</code></pre>
<p><hr /></p>
<p>Btw - In general I have the feeling that you're not that familiar with assembler yet. Writing inline-assembler is a bit harder to get right due to all the compiler magic. I suggest that you start writing some simple functions in assembler and put them into a separate .S file first.. That's much easier..</p>
http://stackoverflow.com/questions/1653131/what-programming-language-will-enable-me-to-enter-a-very-long-number-without-conv/1653210#16532103Answer by Nils Pipenbrinck for What programming language will enable me to enter a very long number without converting it to floating point?Nils Pipenbrinck2009-10-31T02:32:30Z2009-10-31T02:32:30Z<p>Common Lisp has built-in support for arbitrary large numbers as well...</p>
http://stackoverflow.com/questions/1649591/using-operator/1649719#16497191Answer by Nils Pipenbrinck for Using || operatorNils Pipenbrinck2009-10-30T13:03:22Z2009-10-30T13:03:22Z<p>How about:</p>
<pre><code>if((x == 2) + (y == 2))
{
do_something();
}
</code></pre>
<p>It will behave slightly different than the OR-operator because the + operator can't do short-circuit evaluation.</p>
<p>The control-flow of the program will be the same though..</p>
http://stackoverflow.com/questions/1637007/flushing-datacache-on-linux1flushing datacache on linuxNils Pipenbrinck2009-10-28T12:37:46Z2009-10-28T13:38:23Z
<p>What is the standard way to manipulate the data-cache on linux from a user-mode program? </p>
<p>I'd like to writeback and invalidate the data-cache of a memory region that that is shared between my user-mode program and a peripheral device. </p>
<p>Linux has no driver for it, and writing one myself would be overkill for the simple things I want to do...</p>
http://stackoverflow.com/questions/1634359/is-there-a-reverse-fn-for-strstr/1634429#16344290Answer by Nils Pipenbrinck for Is there a reverse fn() for strstrNils Pipenbrinck2009-10-28T00:05:42Z2009-10-28T00:05:42Z<p>Long story short:</p>
<p>Nope - there is no function in the C-library that does what you need..</p>
<p>But as others have pointed out: It's not rocket-science to write such a function...</p>
http://stackoverflow.com/questions/1621048/rotation-matrix-that-minimizes-distance4Rotation matrix that minimizes distanceNils Pipenbrinck2009-10-25T14:28:25Z2009-10-26T02:50:03Z
<p>Let's say I have two points in 3D space (a and b) and a fixed axis/unit vector called n.</p>
<p>I want to create a rotation matrix that minimizes the euclidan distance between point a (unrotated) and the rotated point b. </p>
<p>E.g: </p>
<pre><code> Q := matrix_from_axis_and_angle (n, alpha);
find the unknown alpha that minimizes sqrt(|a - b*Q|)
</code></pre>
<p>Btw - If a solution/algorithm can be easier expressed with unit-quaternions go ahead and use them. I just used matrices to formulate my question because they're more widely used.</p>
<p><hr /></p>
<p>Oh - I know there are some degenerated cases ( a or b lying exactly in line with n ect.) These can be ignored. I'm just looking for the case where a single solution can be calculated.</p>
http://stackoverflow.com/questions/1600742/opengl-linestrip-boundaries/1600794#16007944Answer by Nils Pipenbrinck for OpenGL linestrip boundariesNils Pipenbrinck2009-10-21T13:19:25Z2009-10-21T13:19:25Z<p>If your box is just a ordinary two-dimensional, axis alined rectangle you can use the glScissor function. In a nutshell it defines a 2D rectangle in screen-coordinates where all drawing takes place.</p>
<p>If you case is more complicated (e.g. you may have a rectangle on a plane inside a 3D scene or so..) you can first draw your rectangle into the stencil buffer and enable stencil-test for the line-rendering. That approach gives you unlimited flexibility about the shape that restricts the drawing but it may be slightly slower during rendering and takes more effort to setup.</p>
http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1565970#15659706Answer by Nils Pipenbrinck for Most horrifying line of code you have ever seen?Nils Pipenbrinck2009-10-14T12:34:48Z2009-10-14T12:34:48Z<pre><code>for(;r<c;r++,dst1++,b2++,b3++,mask<<=1)
</code></pre>
<p>The surrounding code isn't much better...
Yea - right! Easy to understand, eh?</p>
http://stackoverflow.com/questions/1559006/wrapping-c-in-c-just-for-try-catch/1559023#15590234Answer by Nils Pipenbrinck for Wrapping C in C++, just for try/catchNils Pipenbrinck2009-10-13T08:58:12Z2009-10-13T08:58:12Z<p>Since it's an embedded application it probably runs only on one platform.</p>
<p>If so its probably much simpler and less intrusive to install a proper interrupt handler / kernel trap handler for the division by zero and other hard exceptions.</p>
<p>In most cases this can be done with just a few lines of code. Check if the OS supports such installable exception handlers. If you're working on an OS-less system you can directly hook the CPU interrupts that are called during exceptions.</p>
http://stackoverflow.com/questions/522619/bidirectional-or-reverse-debugging/1545462#15454620Answer by Nils Pipenbrinck for Bidirectional (or reverse) debuggingNils Pipenbrinck2009-10-09T18:50:42Z2009-10-09T18:50:42Z<p>Yes, I've used it back in the 90th.. The Watcom C Debugger (understood FORTRAN and most other languages as well) had the option to let you step back and forward in time.</p>
<p>It's great, but not a big new thing...</p>
http://stackoverflow.com/questions/1542838/mmap-and-access-to-gpio-config-registers-in-an-arm-processor/1542943#15429430Answer by Nils Pipenbrinck for mmap and access to GPIO config registers in an ARM processorNils Pipenbrinck2009-10-09T10:09:08Z2009-10-09T10:09:08Z<p>The mmap on /dev/mem should work. Have you tried running your code as root? Maybe some security is preventing your program from accessing the address-space. Also make sure you've passed the correct physical address of your GPIO-Space. </p>
<p>The approach you've used works on my Cortex-A8 ARM-board running linux without problems.</p>
<p>If you can't get it working there is not much you can do except finding or writing a device-driver for the gpio (writing one is not <em>that</em> hard btw.). </p>
<p>With a bit of luck someone already did that for you. Does a node named /dev/gpio exist in your filesystem? If so you already have a driver. </p>
<p>A google search on /dev/gpio will give you all details on how to use it. You may also find the source for a simple gpio driver that you can modify to suit your needs.</p>
<p>Good luck,
Nils </p>
http://stackoverflow.com/questions/987182/improving-the-way-we-write-code16Improving the way we write code?Nils Pipenbrinck2009-06-12T15:10:39Z2009-09-24T16:35:00Z
<p>While thinking about software-engineering in general I came across the question why we don't see any improvements in the way we write/document code.</p>
<p>Think about it: There has not been a revolutionary improvement since we've moved from punch cards to text editing. The last improvement I've seen is syntax highlighting and context sensitive help (e.g. Intellisense or ctags). Not something I would call revolutionary.</p>
<p>That makes me wonder: Why is it so? </p>
<p>I'll start with something I miss badly: </p>
<ul>
<li>Lots of my code deals with geometry.
For documentation describing geometric relationships always ends up in a big heap of hard to read mathematical stuff (due to the lack of proper equation type-setting in ASCII). However, if I could embed a little drawing or scribble into the code everything would be much easier, neater and better to be understood.</li>
</ul>
<p>What can you think up that would make your coding/text editing/documention tasks easier?</p>
http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109069#109069Comment by Nils Pipenbrinck on Best algorithm to count the number of set bits in a 32-bit integer?Nils Pipenbrinck2009-11-24T13:29:35Z2009-11-24T13:29:35Z@matja, my GCC 4.4.1 emits the popcnt instruction if I compile with -msse4.2 http://stackoverflow.com/questions/1778758/complex-numbers-fast-cartesian-to-polar-conversion/1779099#1779099Comment by Nils Pipenbrinck on Complex numbers: fast cartesian to polar conversionNils Pipenbrinck2009-11-23T12:30:58Z2009-11-23T12:30:58ZThat's what I was looking for.. Thank you very much.http://stackoverflow.com/questions/1779625/game-platform-engine-for-inexperienced-solo-developer/1779656#1779656Comment by Nils Pipenbrinck on Game platform/engine for inexperienced/solo developer?Nils Pipenbrinck2009-11-22T20:03:48Z2009-11-22T20:03:48ZI've worked several year as a professional game developer, and I started doing a game or two years earlier... A good graphic library can cut the time to get it done down, but you should still estimate something between 10 (if it's not your first game) and 20 month...
These are btw. optimistic estimates.. http://stackoverflow.com/questions/1778758/complex-numbers-fast-cartesian-to-polar-conversion/1779099#1779099Comment by Nils Pipenbrinck on Complex numbers: fast cartesian to polar conversionNils Pipenbrinck2009-11-22T16:10:45Z2009-11-22T16:10:45ZNice article! Love the idea to use multipliers to speed up the computation and remove the branches.. I'll give that a try. http://stackoverflow.com/questions/1756290/loop-loope-loopne/1756322#1756322Comment by Nils Pipenbrinck on LOOP, LOOPE, LOOPNE?Nils Pipenbrinck2009-11-18T15:23:41Z2009-11-18T15:23:41ZAlso not asked I'd like to point out that all LOOP instructions are much slower than the DEC ECX / JNZ counterpart. This is intended as LOOP should nowadays only be used for delay calibration loops used for hardware-drivers and the like.http://stackoverflow.com/questions/1752974/add-numbers-using-mips/1753046#1753046Comment by Nils Pipenbrinck on add numbers using mipsNils Pipenbrinck2009-11-18T10:22:56Z2009-11-18T10:22:56Zthere is no difference between B and J. B is just syntactic suggar.. I'll change it to J though. seems to be more widely used.http://stackoverflow.com/questions/744409/which-non-mainstream-programming-language-to-use-for-a-hobby-project/744764#744764Comment by Nils Pipenbrinck on Which non mainstream programming language to use for a hobby project?Nils Pipenbrinck2009-11-17T22:28:17Z2009-11-17T22:28:17Z+1 for ADA, a very interesting language.http://stackoverflow.com/questions/1739482/gcc-force-a-function-call-after-every-instruction-for-multithreaded-testing/1739500#1739500Comment by Nils Pipenbrinck on GCC: Force a function call after every instruction (for multithreaded testing)?Nils Pipenbrinck2009-11-16T00:43:36Z2009-11-16T00:43:36Zif it does not you can roll your own wrapper around yield.
Good luck finding your bug... http://stackoverflow.com/questions/1708121/is-the-sound-library-winmm-dll-found-in-every-windows-installation/1708156#1708156Comment by Nils Pipenbrinck on Is the sound library WINMM.DLL found in every Windows Installation?Nils Pipenbrinck2009-11-10T14:13:15Z2009-11-10T14:13:15ZI could be wrong, but I remember having used winmm.dll back in the days of win3.11 http://stackoverflow.com/questions/1044313/how-to-use-dsp-to-speed-up-a-code-on-omap/1124601#1124601Comment by Nils Pipenbrinck on How to use DSP to speed-up a code on OMAP?Nils Pipenbrinck2009-11-10T05:29:28Z2009-11-10T05:29:28ZIgnore the messaging. Just collect all the little DSP-jobs that you want to run in a shared memory buffer on the GPP side and once you've collected them all call the DSP once and let it do it's job. You could also move your entire video decoder to the DSP-side.http://stackoverflow.com/questions/1692542/contest-optimize-size-of-grayscale-scanned-documents/1692579#1692579Comment by Nils Pipenbrinck on CONTEST: optimize size of grayscale scanned documents!Nils Pipenbrinck2009-11-07T10:52:00Z2009-11-07T10:52:00ZCCITT Fax4 for the win!http://stackoverflow.com/questions/1674005/fast-4x4-matrix-multiplication-in-c/1674043#1674043Comment by Nils Pipenbrinck on Fast 4x4 Matrix Multiplication in CNils Pipenbrinck2009-11-06T00:34:03Z2009-11-06T00:34:03ZHey Till.. Psst.. don't tell anyone.. Besides that.. You're the guy who wrote a midi-player back in the 90'th, aren't you? If I remember right we sat side by side for a weekend at a computer party in 97 or so.. http://stackoverflow.com/questions/1674005/fast-4x4-matrix-multiplication-in-c/1674043#1674043Comment by Nils Pipenbrinck on Fast 4x4 Matrix Multiplication in CNils Pipenbrinck2009-11-04T16:57:39Z2009-11-04T16:57:39Z@rmeador, for the performance it makes about 25% difference (just checked). http://stackoverflow.com/questions/1656010/c-inline-assembly-memory-copy/1657243#1657243Comment by Nils Pipenbrinck on C inline assembly memory copyNils Pipenbrinck2009-11-02T00:48:31Z2009-11-02T00:48:31ZCould be.. I always try to avoid this AT&T Syntax.. The intel syntax is imho much cleaner.. http://stackoverflow.com/questions/1654725/display-list-generation/1654742#1654742Comment by Nils Pipenbrinck on Display List generationNils Pipenbrinck2009-10-31T15:44:34Z2009-10-31T15:44:34Z+1 Display Lists are slow, obsolete and just complicate things...