User Nathan Fellman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T12:59:37Zhttp://stackoverflow.com/feeds/user/1084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/442710/how-do-i-use-a-perl-package-known-only-in-runtime/442738#4427385Answer by Nathan Fellman for How do I use a Perl package known only in runtime?Nathan Fellman2009-01-14T12:14:22Z2009-12-16T20:43:29Z<pre><code>eval "require $ENV{a}";
</code></pre>
<p>"<code>use</code>" doesn't work well here because it only imports in the context of the <code>eval</code>.</p>
<p>As @Manni said, actually, it's better to use require. Quoting from <code>man perlfunc</code>:</p>
<pre>
If EXPR is a bareword, the require assumes a ".pm" extension and
replaces "::" with "/" in the filename for you, to make it easy to
load standard modules. This form of loading of modules does not
risk altering your namespace.
In other words, if you try this:
require Foo::Bar; # a splendid bareword
The require function will actually look for the "Foo/Bar.pm" file
in the directories specified in the @INC array.
But if you try this:
$class = 'Foo::Bar';
require $class; # $class is not a bareword
#or
require "Foo::Bar"; # not a bareword because of the ""
The require function will look for the "Foo::Bar" file in the @INC
array and will complain about not finding "Foo::Bar" there. In this
case you can do:
eval "require $class";
</pre>
http://stackoverflow.com/questions/1860760/how-can-i-draw-a-circle-on-an-image-in-matlab2How can I draw a circle on an image in MATLAB?Nathan Fellman2009-12-07T15:38:39Z2009-12-11T18:29:52Z
<p>I have an image in MATLAB:</p>
<pre><code>im = rgb2gray(imread('some_image.jpg');
% normalize the image to be between 0 and 1
im = im/max(max(im));
</code></pre>
<p>And I've done some processing that resulted in a number of points that I want to highlight:</p>
<pre><code>points = some_processing(im);
</code></pre>
<p>Where <code>points</code> is a matrix the same size as <code>im</code> with ones in the interesting points.</p>
<p>Now I want to draw a circle on the image in all the places where <code>points</code> is 1.</p>
<p>Is there any function in MATLAB that does this? The best I can come up with is:</p>
<pre><code>[x_p, y_p] = find (points);
[x, y] = meshgrid(1:size(im,1), 1:size(im,2))
r = 5;
circles = zeros(size(im));
for k = 1:length(x_p)
circles = circles + (floor((x - x_p(k)).^2 + (y - y_p(k)).^2) == r);
end
% normalize circles
circles = circles/max(max(circles));
output = im + circles;
imshow(output)
</code></pre>
<p>This seems more than somewhat inelegant. Is there a way to draw circles similar to the <code>line</code> function?</p>
http://stackoverflow.com/questions/1519371/are-there-any-instructions-in-x86-assembly-that-exist-only-in-64-bit-mode0Are there any instructions in x86 assembly that exist only in 64-bit mode?Nathan Fellman2009-10-05T10:49:29Z2009-12-10T13:22:41Z
<p>Some old x86 instructions are undefined in 64-bit mode. For instance <code>LDS</code>, <code>LES</code> and <code>LSS</code>, or short opcodes of the <code>INC r16</code> (<code>40 + <em>rw</em></code>) and <code>INC r32</code> (<code>40 + <em>rd</em></code>) instructions.</p>
<p>Are there any instructions that are defined only in 64-bit mode, and not in 32-bit protected mode?</p>
<p><strong>Edit:</strong> The context is development of an x86 processor. I want to make sure I'm compatible to the spec.</p>
http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab6How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-06T18:45:48Z2009-12-08T17:19:19Z
<p>I have an image in MATLAB:</p>
<pre><code>y = rgb2gray(imread('some_image_file.jpg'));
</code></pre>
<p>and I want to do some processing on it:</p>
<pre><code>pic = some_processing(y);
</code></pre>
<p>and find the local maxima of the output. That is, all the points in <code>y</code> that are greater than all of their neighbors.</p>
<p>I can't seem to find a MATLAB function to do that nicely. The best I can come up with is:</p>
<pre><code>[dim_y,dim_x]=size(pic);
enlarged_pic=[zeros(1,dim_x+2);
zeros(dim_y,1),pic,zeros(dim_y,1);
zeros(1,dim_x+2)];
% now build a 3D array
% each plane will be the enlarged picture
% moved up,down,left or right,
% to all the diagonals, or not at all
[en_dim_y,en_dim_x]=size(enlarged_pic);
three_d(:,:,1)=enlarged_pic;
three_d(:,:,2)=[enlarged_pic(2:end,:);zeros(1,en_dim_x)];
three_d(:,:,3)=[zeros(1,en_dim_x);enlarged_pic(1:end-1,:)];
three_d(:,:,4)=[zeros(en_dim_y,1),enlarged_pic(:,1:end-1)];
three_d(:,:,5)=[enlarged_pic(:,2:end),zeros(en_dim_y,1)];
three_d(:,:,6)=[pic,zeros(dim_y,2);zeros(2,en_dim_x)];
three_d(:,:,7)=[zeros(2,en_dim_x);pic,zeros(dim_y,2)];
three_d(:,:,8)=[zeros(dim_y,2),pic;zeros(2,en_dim_x)];
three_d(:,:,9)=[zeros(2,en_dim_x);zeros(dim_y,2),pic];
</code></pre>
<p>And then see if the maximum along the 3rd dimension appears in the 1st layer (that is: <code>three_d(:,:,1)</code>):</p>
<pre><code>(max_val, max_i) = max(three_d, 3);
result = find(max_i == 1);
</code></pre>
<p>Is there any more elegant way to do this? This seems like a bit of a kludge.</p>
http://stackoverflow.com/questions/166653/perl-common-gotchas/549685#5496853Answer by Nathan Fellman for Perl - Common gotchas?Nathan Fellman2009-02-14T19:51:53Z2009-12-06T12:40:18Z<p>Comparing strings using <code>==</code> and <code>!=</code> instead of <code>eq</code> and <code>ne</code>. For instance:</p>
<pre><code>$x = "abc";
if ($x == "abc") {
# do something
}
</code></pre>
<p>Instead of:</p>
<pre><code>$x = "abc";
if ($x eq "abc") {
# do something
}
</code></pre>
http://stackoverflow.com/questions/1832085/how-to-jump-to-the-next-tag-in-vim-help-file/1832095#18320951Answer by Nathan Fellman for How to jump to the next tag in vim help fileNathan Fellman2009-12-02T10:41:09Z2009-12-02T12:18:28Z<p>Use the <code>:tn</code> and <code>:tp</code> sequences to navigate between tags.</p>
<p>If you want to look for the next tag on the same help page, try this search:</p>
<pre><code>/|.\{-}|
</code></pre>
<p>This means to search for:</p>
<ul>
<li>The character <code>|</code></li>
<li>Any characters up to the next <code>|</code>, matching as few as possible (that's what <code>\{-}</code> does).</li>
<li>Another character <code>|</code></li>
</ul>
<p>This identifies the tags in the VIM help file.</p>
http://stackoverflow.com/questions/1820144/opening-gzipped-files-for-reading-in-c-without-creating-temporary-files/1820555#18205550Answer by Nathan Fellman for Opening gzipped files for reading in C without creating temporary filesNathan Fellman2009-11-30T15:40:11Z2009-11-30T15:51:36Z<p>you have to open a pipe to do this. The basic flow in pseudo code is:</p>
<pre><code>create pipe // man pipe
fork // man fork
if (parent) {
close the writing end of the pipe // man 2 close
read from the pipe // man 2 read
} else if (child) {
close the reading end of the pipe // man 2 close
overwrite the file descriptor for stdout with the writing end of the pipe // man dup2
call exec() with gzip and the relevant parameters // man 3 exec
}
</code></pre>
<p>You can use the <code>man</code> pages in the comments for more details on how to do this.</p>
http://stackoverflow.com/questions/1799527/numpy-show-decimal-values-in-array-results/1799604#17996041Answer by Nathan Fellman for Numpy - show decimal values in array resultsNathan Fellman2009-11-25T20:02:33Z2009-11-25T20:02:33Z<p>Try converting one of the arrays <code>A</code> or <code>C</code> into an array of floats. For instance:</p>
<pre><code>A = A * 1.0
</code></pre>
<p>Then the division will be floating point division.</p>
http://stackoverflow.com/questions/1788180/how-do-i-sample-a-matrix-in-matlab1How do I sample a matrix in MATLAB?Nathan Fellman2009-11-24T06:20:14Z2009-11-25T04:00:30Z
<p>I have a matrix in MATLAB from which I want to sample every other entry:</p>
<pre><code>a =
1 5 9 13
2 6 10 14
3 7 11 15
4 8 12 16
</code></pre>
<p>And I want:</p>
<pre><code>result =
1 9
3 11
</code></pre>
<p>How can I do this without a for loop?</p>
http://stackoverflow.com/questions/1784853/how-is-the-x64-architecture-different-from-x86/1785575#17855752Answer by Nathan Fellman for How is the x64 architecture different from x86Nathan Fellman2009-11-23T20:02:21Z2009-11-23T20:02:21Z<p>All the answers here mention the changes in the register set, which I'll list here for completeness:</p>
<ul>
<li>All existing 32-bit general purpose registers are extended to 64 bits (<code>EAX</code> is extended to <code>RAX</code> and so on)</li>
<li>8 new 64-bit general purpose registers (<code>R8</code> through <code>R15</code>)</li>
<li>8 new 128-bit SSE registers (<code>XMM8</code> through <code>XMM15</code>)</li>
</ul>
<p>There are also changes in addressing modes:</p>
<ul>
<li>CS, DS, ES and SS are flat. That is, their base is <code>0x0</code> and their limit is <code>0xffffffffffffffff</code>. FS and GS can have a base over 32 bits.</li>
<li>Descriptors in the GDT, LDT and IDT have changed. They 8 bytes in 64-bit mode</li>
<li>A non-contiguous address space. In 32-bit mode the linear address space is from <code>0x0</code> to <code>0xfffffff</code>. In 64-bit mode the linear address space is split from <code>0x0</code> to <code>0x00007ffffffff</code> and from <code>0xffff800000000000</code> to <code>0xffffffffffffffff</code>. Basically, there are only 48 bits of address, and the address is sign-extended to 64 bits.</li>
<li>A new paging mode.</li>
</ul>
<p>Various instructions were removed:</p>
<ul>
<li>One byte <code>INC</code> instructions with encoding <code>40+<i>rw</i></code> and <code>40+<i>rd</i></code>. The <code>4<i>x</i></code> byte became the <strong><code>REX</code></strong> prefix.</li>
<li>instructions for loading the segment registers that are now flat: <code>LDS</code>, <code>LDS</code>, <code>LSS</code>.</li>
</ul>
<p>There are more differences that I simply can remember off the top of my head. I'll add them if I can think of some more.</p>
http://stackoverflow.com/questions/1779652/how-can-i-convert-a-color-image-to-grayscale-in-matlab1How can I convert a color image to grayscale in MATLAB?Nathan Fellman2009-11-22T19:12:04Z2009-11-23T18:04:23Z
<p>I am trying to implement an algorithm in computer vision and I want to try it on a set of pictures. The pictures are all in color, but I don't want to deal with that. I want to convert them to grayscale which is enough for testing the algorithm.</p>
<p>How can I convert a color image to grayscale?</p>
<p>I'm reading it with:</p>
<pre><code>x = imread('bla.jpg');
</code></pre>
<p>Is there any argument I can add to <code>imread</code> to read it as grayscale? Is there any way I change <code>x</code> to grayscale <em>after</em> reading it?</p>
http://stackoverflow.com/questions/1771136/utilizing-the-ldt-local-descriptor-table/1773198#17731983Answer by Nathan Fellman for Utilizing the LDT (Local Descriptor Table)Nathan Fellman2009-11-20T20:59:15Z2009-11-20T20:59:15Z<p>I can only guess, since I don't have the assembly available to me.</p>
<p>I'm guessing that the line at which you get a segfault is compiled to something like:</p>
<pre><code>mov ds:[offset mx], 0x407cafe
</code></pre>
<p>Where <code>offset mx</code> is the offset to <code>mx</code> in the program's data segment (if it's a static variable) or in the stack (if it's an automatic variable). Either way, this offset is calculated at compile time, and that's what will be used regardless of what <code>DS</code> points to.</p>
<p>Now what you've done here is create a new segment whose base is at the address of <code>mx</code> and whose limit is either <code>0x4</code> or <code>0x4fff</code> (depending on the <code>G-bit</code> which you didn't specify). </p>
<p>If the <code>G-bit</code> is 0, then the limit is <code>0x4</code>, and since it's highly unlikely that <code>mx</code> is located between addresses <code>0x0</code> and <code>0x4</code> of the original <code>DS</code>, when you access the offset to <code>mx</code> inside the new segment you're crossing the limit.</p>
<p>If the <code>G-bit</code> is 1, then the limit is <code>0x4fff</code>. Now you'll get a segfault only if the original <code>mx</code> was located above <code>0x4fff</code>.</p>
<p>Considering that the new segment's base is at <code>mx</code>, you can access <code>mx</code> by doing:</p>
<pre><code>mov ds:[0], 0x407cafe
</code></pre>
<p>I don't know how I'd go about writing that in C, though.</p>
http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737718#17377180Answer by Nathan Fellman for C structs don't define types?Nathan Fellman2009-11-15T14:52:57Z2009-11-15T14:52:57Z<p>That's the way C works. In C you have to say:</p>
<pre><code>typedef struct Point {
int x;
int y;
} Point;
</code></pre>
<p>And then you'll have a type called <code>Point</code> that does what you want.</p>
<p>In C++ it's enough to define it the way you did.</p>
http://stackoverflow.com/questions/1715560/generate-square-mesh-given-an-unordered-x-y-and-z-vectors/1715727#17157270Answer by Nathan Fellman for Generate Square Mesh, Given an Unordered X, Y and Z VectorsNathan Fellman2009-11-11T15:00:36Z2009-11-11T20:01:13Z<p>What you basically have are 3 matrices:</p>
<pre><code>% define x_range and y_range as you wish
[x, y] - meshgrid(x_range,y_range)
z = some_function_of_x_and_y
</code></pre>
<p>Now you have to reshape these three matrices into row vectors:</p>
<pre><code>sizes = size(x)
x_row = reshape(x, sizes(1) * sizes(2), 1)
y_row = reshape(y, sizes(1) * sizes(2), 1)
z_row = reshape(z, sizes(1) * sizes(2), 1)
</code></pre>
<p>and another one of indices:</p>
<pre><code>indeces = [1:length(x_row)]'
</code></pre>
<p>and now your list is:</p>
<pre><code>result = [indeces x_row y_row z_row]
</code></pre>
<p>For instance:</p>
<pre><code>x_range = [1,2,3];
y_range = [1,2,3];
>> [x,y] = meshgrid(x_range, y_range)
x =
1 2 3
1 2 3
1 2 3
y =
1 1 1
2 2 2
3 3 3
>> z = x+y
z =
2 3 4
3 4 5
4 5 6
>> x_row = reshape(x, sizes(1) * sizes(2), 1);
>> y_row = reshape(y, sizes(1) * sizes(2), 1);
>> z_row = reshape(z, sizes(1) * sizes(2), 1);
>> indeces = [1:length(x_row)]';
>> result = [indeces x_row y_row z_row]
result =
1 1 1 2
2 1 2 3
3 1 3 4
4 2 1 3
5 2 2 4
6 2 3 5
7 3 1 4
8 3 2 5
9 3 3 6
</code></pre>
<p>Now <code>result</code> holds the indeces in the first column, and <code>(x,y,z)</code> in the rest of the columns. You should be able to extract what you want from there.</p>
http://stackoverflow.com/questions/1423489/is-there-a-caching-penalty-for-mixing-binary-data-and-instructions-within-close-p/1703922#17039220Answer by Nathan Fellman for Is there a caching penalty for mixing binary data and instructions within close proximity of each other?Nathan Fellman2009-11-09T21:23:32Z2009-11-09T21:23:32Z<p>As the other answers note, the only performance penalty you might encounter is having the same cache line in the code L1 and in the data L1, which will waste some space (and even that won't be a real issue because the caches fill up based on what they need. As far as I recall there aren't any restrictions on a cache line being present in both caches).</p>
<p>There is one point which the other answers overlook. If you plan to <em>modify</em> the data that is close to the code, you're very likely to trigger Self-Modifying Code scenarios, which do incur a very heavy penalty. </p>
<p>Self-Modifying Code (SMC) will flush the entire pipeline up until the store instruction, under the assumption that any of the instructions that is being executed speculatively may be incorrect, due to the modification. The deep pipeline of most modern x86 processors means that each such flush incurs a penalty of many cycles in which no instruction completes.</p>
<p>If you ensure that your have no stores that are near a code segment, you should be fine.</p>
http://stackoverflow.com/questions/1684967/how-does-windows-switch-to-supervisor-mode-during-a-system-call/1689680#16896801Answer by Nathan Fellman for How does Windows switch to supervisor mode during a system call?Nathan Fellman2009-11-06T19:13:38Z2009-11-06T19:13:38Z<p>x86 CPUs provide the <code>SYSENTER</code> and <code>SYSEXIT</code> instructions. These instructions execute a very fast switch from user mode to kernel mode and back, and modern OSes running on modern CPUs most likely use these instead of very costly interrupts or far calls.</p>
<p>You can see more details in <a href="http://www.intel.com/products/processor/manuals/" rel="nofollow">Intel's Software Developer's Manuals</a>, specifically <a href="http://www.intel.com/Assets/PDF/manual/253667.pdf" rel="nofollow">volume 2B</a></p>
http://stackoverflow.com/questions/1670916/how-does-x86-handle-store-conditional-instructions/1676356#16763561Answer by Nathan Fellman for How does x86 handle store conditional instructions?Nathan Fellman2009-11-04T20:19:33Z2009-11-04T20:19:33Z<p>I'm guessing that you're referring to the <code>CMOV*cc*</code> instructions.</p>
<p>I don't know about older x86 processors, but modern ones (ever since they became speculative and out of order) implement conditional stores as:</p>
<pre><code>old value = mem[dest address]
if (condition)
mem[dest address] = new value
else
mem[dest address] = old value
</code></pre>
<p>The condition part can be implemented in hardware like this:</p>
<pre><code> cond
|\ |
----| \|
new | \
| | dest
| |---------
| | |
__| / |
| | / |
| |/ |
|____________|
</code></pre>
<p>So there's no need to break speculation. A store <em>will</em> in fact take place. The condition determines if the data to be written will be the old value or a new one.</p>
http://stackoverflow.com/questions/1670480/how-can-i-get-pyplot-images-to-show-on-a-console-app1How can I get pyplot images to show on a console app?Nathan Fellman2009-11-03T22:14:37Z2009-11-03T23:13:31Z
<p>I'm trying to create an image using <code>matplotlib.pyplot.imshow()</code>. However, when I run the program from my console, it doesn't display anything?</p>
<p>This is the code:</p>
<pre><code>import matplotlib.pyplot
myimage = gen_image()
matplotlib.pyplot.gray()
matplotlib.pyplot.imshow(results)
</code></pre>
<p>But this shows nothing.</p>
http://stackoverflow.com/questions/1669662/what-does-offset-in-16-bit-assembly-code-mean/1669815#16698153Answer by Nathan Fellman for What does OFFSET in 16 bit assembly code mean?Nathan Fellman2009-11-03T20:02:43Z2009-11-03T20:02:43Z<p>As some of the other answers say, the <code>offset</code> keyword refers to the offset from the segment in which it is defined. Note, however, that segments may overlap and the offset in one segment may be different in another segment. For instance, suppose you have the following segment in real mode</p>
<pre><code>data SEGMENT USE16 ;# at 02000h
org 0100h
foo db 0
org 01100h
bar db 0
data ENDS
</code></pre>
<p>And look at the following code:</p>
<pre><code>mov ax, 0200h
mov ds, ax
mov bx, offset foo ; bx = 0100h
mov byte ptr [bx], 10 ; foo = 10
mov ax, 0300h
mov ds, ax
mov bx, offset foo; bx = 0100h
mov byte ptr [bx], 10 ; bar = 10
</code></pre>
<p>The assembler sees that <code>foo</code> is at offset <code>0100h</code> from the base of <code>data SEGMENT</code>, so wherever it sees <code>offset foo</code> it will put the value <code>0100h</code>, regardless of the value of <code>DS</code> at the time. </p>
<p>In the second example <code>DS</code> is <code>0300h</code>, so the base of the segment pointed to by <code>DS</code> is <code>03000h</code>. This means that <code>ds:[offset foo]</code> points to the address <code>03000h + 0100h</code> which is the same as <code>02000h + 01100h</code>, which points to <code>bar</code>.</p>
http://stackoverflow.com/questions/1663807/how-can-i-iterate-through-two-lists-in-parallel-in-python0how can I iterate through two lists in parallel in Python? [closed]Nathan Fellman2009-11-02T21:26:24Z2009-11-02T22:18:46Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/126524/iterate-a-list-as-tuples-in-python">Iterate a list as tuples in python</a><br />
<a href="http://stackoverflow.com/questions/1210396/how-do-i-iterate-over-the-tuples-of-the-items-of-two-or-more-lists-in-python">How do I iterate over the tuples of the items of two or more lists in Python?</a> </p>
</blockquote>
<p>I have two iterables in Python and I want to go over them in pairs:</p>
<pre><code>foo = (1,2,3)
bar = (4,5,6)
for (f,b) in some_iterator(foo, bar):
print "f: ", f ,"; b: ", b
</code></pre>
<p>should result in:</p>
<pre><code>f: 1; b: 4
f: 2; b: 5
f: 3; b: 6
</code></pre>
<p><em>One</em> way to do it is to iterate over the indeces:</p>
<pre><code>for i in xrange(len(foo)):
print "f: ",foo[i] ,"; b: ", b[i]
</code></pre>
<p>But that seems somewhat unpythonic to me. Is there a better way to do it?</p>
http://stackoverflow.com/questions/1661621/finding-the-highest-key/1661632#166163212Answer by Nathan Fellman for Finding the highest keyNathan Fellman2009-11-02T14:31:32Z2009-11-02T14:31:32Z<p>your code prints the <em>key</em> with the maximum value. What you want is:</p>
<pre><code>d = {5:3, 4:1, 12:2, 14:9}
val_of_max = d[max(d.keys())]
print val_of_max
</code></pre>
<p>That is, you have to dereference the key to return the value.</p>
http://stackoverflow.com/questions/1660334/how-can-i-debug-st9badalloc-failures-in-gdb-in-c1How can I debug St9bad_alloc failures in gdb in C?Nathan Fellman2009-11-02T09:54:58Z2009-11-02T10:30:08Z
<p>I have a program failing with:</p>
<pre><code>terminate called after throwing an instance of 'std::bad_alloc'
what(): St9bad_alloc
</code></pre>
<p>I imagine it's something to do with <code>malloc</code>/<code>free</code>, but I don't know which one.</p>
<p>What breakpoint can I in gdb set that will break on the error so that I can view a stack trace?</p>
<p>The program is a combination of C and C++, compiled with gcc 3.4.2.</p>
http://stackoverflow.com/questions/1655559/how-can-i-generate-random-numbers-in-python2How can I generate random numbers in Python?Nathan Fellman2009-10-31T20:38:36Z2009-11-01T01:21:33Z
<p>Are there any built-in libraries in Python or Numpy to generate random numbers based on various common distributions, such as:</p>
<ul>
<li>Normal</li>
<li>Poisson</li>
<li>Exponential</li>
<li>Bernoulli</li>
</ul>
<p>And various others?</p>
<p>Are there any such libraries with multi-variate distributions?</p>
http://stackoverflow.com/questions/1618072/how-can-i-check-if-an-array-contains-a-specific-value-in-perl/1618416#16184161Answer by Nathan Fellman for How can I check if an array contains a specific value in Perl?Nathan Fellman2009-10-24T16:16:15Z2009-10-25T15:59:44Z<p>You can still use <code>grep</code> with regular expressions too using word boundaries.</p>
<pre><code>my @haystack = ("foo", "bar", "baz");
my $needle = '\bbar\b'; # note the word boundary \b
if (grep $needle, @haystack)
{
print "found it!\n";
}
</code></pre>
<p>This won't match <code>$needle = 'ba'</code></p>
http://stackoverflow.com/questions/10680/is-there-a-difference-between-the-onexit-and-atexit-functions2Is there a difference between the onexit() and atexit() functionsNathan Fellman2008-08-14T04:53:45Z2009-10-25T10:23:27Z
<p>Is there any difference between</p>
<pre><code> int on_exit(void (*function)(int , void *), void *arg);
</code></pre>
<p>and</p>
<pre><code> int atexit(void (*function)(void));
</code></pre>
<p>other than the fact that the function used by on_exit gets the exit status?</p>
<p>That is, if I don't care about the exit status, is there any reason to use one or the other?</p>
http://stackoverflow.com/questions/9650/lisp-scheme-interpreter-without-emacs4Lisp/Scheme interpreter without Emacs?Nathan Fellman2008-08-13T11:06:12Z2009-10-21T13:43:52Z
<p>Hi,<br />
I've been wanting to teach myself Lisp for a while. However, all the interpreters of which I've heard involve some flavor of emacs.
Are there any command line interpreters, such that I could type this into the command line:</p>
<blockquote>
<p>lispinterpret sourcefile.lisp</p>
</blockquote>
<p>just like I can run perl or python.</p>
<p>While I'd also like to become more familiar with Emacs (if only not to be frustrated when I work with somebody who uses Emacs), I'd rather decouple learning Emacs from learning Lisp.</p>
<p>Edit: I actually want to follow SICP which uses Scheme, so an answer about Scheme would be more useful. I'm just not that familiar with the differences.</p>
http://stackoverflow.com/questions/437504/linux-pipe-output-to-grep/1600237#16002370Answer by Nathan Fellman for Linux pipe output to grepNathan Fellman2009-10-21T11:27:41Z2009-10-21T11:27:41Z<p>You need to use <code>xargs</code>'s <code>-i</code> switch:</p>
<pre><code>grep ... | xargs -ifoo grep foo file_in_which_to_search
</code></pre>
<p>This takes the option after <code>-i</code> (<code>foo</code> in this case) and replaces every occurrence of it in the command with the output of the first <code>grep</code>.</p>
<p>This is the same as:</p>
<pre><code>grep `grep ...` file_in_which_to_search
</code></pre>
http://stackoverflow.com/questions/1470434/how-does-reverse-debugging-work3How does reverse debugging work?Nathan Fellman2009-09-24T08:35:34Z2009-10-20T19:20:41Z
<p>GDB has a new version out that supports reverse debug (see <a href="http://www.gnu.org/software/gdb/news/reversible.html" rel="nofollow">http://www.gnu.org/software/gdb/news/reversible.html</a>). I got to wondering how that works.</p>
<p>To get reverse debug to work it seems to me that you need to store the entire machine state including memory for each step. This would make performance incredibly slow, not to mention using a lot of memory. How are these problems solved?</p>
http://stackoverflow.com/questions/1530228/how-can-i-wait-for-one-event-out-of-a-list-of-events-in-specman1How can I wait for one event out of a list of events in specman?Nathan Fellman2009-10-07T08:15:26Z2009-10-20T13:39:42Z
<p>I have a struct in specman:</p>
<pre><code>struct foo_s {
event foo_ev;
// some code that will emit foo_ev sometimes
};
</code></pre>
<p>And a list:</p>
<pre><code>var foo_l: list of foo_s; // later code will manage the list
</code></pre>
<p>And now I want to sync on any of the <code>foo_ev</code> events in the list:</p>
<pre><code>first of {
sync @foo_l[0].foo_ev;
sync @foo_l[1].foo_ev;
sync @foo_l[2].foo_ev;
//etc
};
</code></pre>
<p>The problem is that at the time this snippet runs I don't know how many elements are in <code>foo_l</code>. Is there any way for me to wait for <em>any</em> of the <code>foo_ev</code> events to be emitted?</p>
http://stackoverflow.com/questions/1590608/is-it-possible-to-forward-declare-a-function-in-python1Is it possible to forward-declare a function in Python?Nathan Fellman2009-10-19T19:29:21Z2009-10-20T04:53:42Z
<p>I want to sort a list using my own <code>cmp</code> function. For the purpose of this discussion we can use the following example which is equivalent to what I'm trying to do:</p>
<pre><code>print "\n".join([str(bla) for bla in sorted(mylist, cmp = cmp_configs)])
</code></pre>
<p>However, because of the way I organized my code, I much prefer to put the definition of <code>cmp_configs</code> <em>after</em> the sort. However, I fail on:</p>
<pre><code>NameError: name 'cmp_configs' is not defined
</code></pre>
<p>Is there any way to "declare" <code>cmp_configs</code> before it's used, which will make my code cleaner, or do I have to define it only before?</p>
<p><strong>Note:</strong> I assume that some people will be tempted to tell me that I should just reorganize my code so that I don't have this problem. However, there are cases when this is probably unavoidable, for instance when implementing some forms of recursion. If you don't like this example, assume that I have a case in which it's <em>really</em> necessary to forward declare a function.</p>
<p><strong>Edit:</strong> A case in which may be necessary is:</p>
<pre><code>def spam():
if end_condition():
return end_result()
else:
return eggs()
def eggs():
if end_condition():
return end_result()
else:
return spam()
</code></pre>
<p>Where <code>end_condition</code> and <code>end_result</code> have been previously defined.</p>
<p>But now I understand that since <code>spam</code> and <code>eggs</code> are called <em>inside functions</em> then by the time I call either one of them both of them will already have been defined, so the only solution is in fact to reorganize the code.</p>
http://stackoverflow.com/questions/1916576/mandatory-use-of-braces/1916726#1916726Comment by Nathan Fellman on Mandatory use of bracesNathan Fellman2009-12-16T20:28:40Z2009-12-16T20:28:40ZConsider if you put a debug print after the <code>if</code>. If you don't have braces, the <code>if</code> now affects only the debug print, and not the statement under it. I've been burned by this more than once when debugging code in which the brace rule wasn't enforced.http://stackoverflow.com/questions/1900997/expected-expression-before-returnComment by Nathan Fellman on expected expression before returnNathan Fellman2009-12-14T13:47:04Z2009-12-14T13:47:04ZThe error in gcc is "parse error before "return"http://stackoverflow.com/questions/1899362/how-can-i-generate-non-repetitive-random-4-bytes-hex-values-in-perl/1899437#1899437Comment by Nathan Fellman on How can I generate non-repetitive random 4 bytes hex values in Perl? Nathan Fellman2009-12-14T09:34:35Z2009-12-14T09:34:35ZNote that if your random number generator is broken and always returns a small set of numbers, this will yield an infinite loop. You might want to think of an alternative to getting a new random number if the random number generator returned the same value twice, such as multiplying the two previous numbers. Note that this may result in lower entropy, but will solve the problem with infinite loops.http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234Comment by Nathan Fellman on How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-07T06:18:50Z2009-12-07T06:18:50ZSteve's answer is indeed more elegant. http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856675#1856675Comment by Nathan Fellman on How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-07T04:54:43Z2009-12-07T04:54:43ZCan you explain how this works?http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234Comment by Nathan Fellman on How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-06T19:47:15Z2009-12-06T19:47:15Zoh... and I fixed the question to show that I'm working with grayscale.http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234Comment by Nathan Fellman on How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-06T19:32:09Z2009-12-06T19:32:09ZI want to exclude them.http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234Comment by Nathan Fellman on How can I find local maxima in an image in MATLAB?Nathan Fellman2009-12-06T19:16:46Z2009-12-06T19:16:46ZThanks! I see that imregionalmax finds maxima that are greater than or equal to their neighbors. Do you know how I can find only those that are greater and not equal to their neighbors?http://stackoverflow.com/questions/1844669/benefits-of-x87-over-sse/1844710#1844710Comment by Nathan Fellman on Benefits of x87 over SSENathan Fellman2009-12-06T07:12:04Z2009-12-06T07:12:04ZSo your bottom line is: (a) x87 has good legacy support (b) x87 has been well studied.http://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashesComment by Nathan Fellman on How can I get the second-level keys in a Perl hash-of-hashes?Nathan Fellman2009-12-03T12:58:40Z2009-12-03T12:58:40Zanswers <i>shouldn't</i> be in German, since non-German speakers will also want to know the answerhttp://stackoverflow.com/questions/1833082/one-dimensional-gauss-convolution-function-in-matlabComment by Nathan Fellman on one Dimensional gauss convolution function in MatlabNathan Fellman2009-12-02T14:14:23Z2009-12-02T14:14:23Zwhat happens when you execute the <code>exp</code> with a scalar?http://stackoverflow.com/questions/1820144/opening-gzipped-files-for-reading-in-c-without-creating-temporary-files/1820156#1820156Comment by Nathan Fellman on Opening gzipped files for reading in C without creating temporary filesNathan Fellman2009-11-30T14:32:08Z2009-11-30T14:32:08ZYou can use the <code>fdopen</code> function to open a file descripto as a <code>FILE</code> pointer.http://stackoverflow.com/questions/1798704/x86-and-x64-stack-frames/1798736#1798736Comment by Nathan Fellman on x86 and x64 stack framesNathan Fellman2009-11-28T09:30:36Z2009-11-28T09:30:36ZBut that doesn't change between 64-bit and 32-bit compilers. The example in the question is just that, an example. I would assume that <code>i</code> is something that will be used a few times down the line and won't be compiled away.http://stackoverflow.com/questions/1798704/x86-and-x64-stack-framesComment by Nathan Fellman on x86 and x64 stack framesNathan Fellman2009-11-28T09:28:28Z2009-11-28T09:28:28Zdoes it matter <i>why</i>?http://stackoverflow.com/questions/1784853/how-is-the-x64-architecture-different-from-x86/1784929#1784929Comment by Nathan Fellman on How is the x64 architecture different from x86Nathan Fellman2009-11-23T20:03:48Z2009-11-23T20:03:48Zhmm... Then I must be misunderstanding what deprecated means :-). What <i>does</i> it mean?