User Nathan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:32:30Zhttp://stackoverflow.com/feeds/user/17009http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1768620/how-do-i-show-what-fields-a-struct-has-in-gdb/1770422#17704223Answer by Nathan for How do I show what fields a struct has in gdb?Nathan2009-11-20T13:28:49Z2009-11-20T13:28:49Z<p>You can use the gdb command "ptype" to print out the definition of a struct or class.</p>
http://stackoverflow.com/questions/1676593/memory-leaks-during-development/1676628#16766282Answer by Nathan for memory leaks during developmentNathan2009-11-04T21:05:30Z2009-11-04T21:12:31Z<p>What operating system are you running? Most operating systems these days will clean up leaked memory for a process when the process exits. It is possible that the memory you are seeing in use is actually being used for the filesystem cache. This is nothing to worry about -- the OS will reclaim this memory if necessary.</p>
<p>From: <a href="http://learnlinux.tsf.org.za/courses/build/internals/ch05.html" rel="nofollow">http://learnlinux.tsf.org.za/courses/build/internals/ch05.html</a></p>
<blockquote>
<p>The amount of free memory indicated by
the free command includes the current
size of the buffer cache in its
calculation. This is misleading, as
the amount of free memory indicated
will often be very low, as the buffer
cache soon fills most of user memory.
Don't' panic. Applications are
probably not crowding your RAM; it is
merely the buffer cache that is taking
up all available space. The buffer
cache counts as memory space available
for application use (remembering that
it will be shrunk as required), so
subtract the size of the buffer cache
to see the real amount of free memory
available for application use</p>
</blockquote>
http://stackoverflow.com/questions/1664735/set-div-height-to-100-of-parent3Set div height to 100% of parentNathan2009-11-03T01:45:22Z2009-11-03T06:51:03Z
<p>I want the following layout for my web page:</p>
<pre><code>| header |
| navigation | details |
| | |
</code></pre>
<p>Where the navigation pane (content dynamically generated) contains hundreds of elements. I want a vertical scroll bar to be created on the navigation pane such that the pane has the height of the window minus the height of the header.</p>
<p>My page roughly has the following structure:</p>
<pre><code><div id=header></div>
<div id=content>
<div id=navigation></div>
<div id=details></div>
</div>
</code></pre>
<p>With the following CSS:</p>
<pre><code>#navigation {
float: left;
width: 400px;
height: 100%;
overflow: auto;
}
#details {
margin-left: 420px;
}
</code></pre>
<p>This mostly works except that the navigation pane gets 100% of the height of the window, not 100% of the height of the window minus the height of the header. I'd rather not explicitly set the height of the header if I can avoid it. I am completely new to web development so I don't mind doing some reading. What do I need to do to achieve the layout that I want? </p>
http://stackoverflow.com/questions/1645970/how-to-make-a-custom-nsformatter-work-correctly-on-snow-leopard0How to make a custom NSFormatter work correctly on Snow Leopard?Nathan2009-10-29T19:22:45Z2009-10-29T19:22:45Z
<p>I have a custom NSFormatter attached to several NSTextFields who's only purpose is to uppercase the characters as they are typed into field. The entire code for my formatter is included below. </p>
<p>The <code>stringForObjectValue()</code> and <code>getObjectValue()</code> implementations are no-ops and taken pretty much directly out of Apple's documentation. I'm using the <code>isPartialStringValid()</code> method to return an uppercase version of the string. This code works correctly in 10.4 and 10.5. When I run it on 10.6, I get "strange" behaviour where text fields aren't always render the characters that are typed and sometimes are just displaying garbage. I've tried enabling NSZombie detection and running under Instruments but nothing was reported. I see errors like the following in "Console":</p>
<pre><code>HIToolbox: ignoring exception '*** -[NSCFString replaceCharactersInRange:withString:]: Range or index out of bounds' that raised inside Carbon event dispatch
(
0 CoreFoundation 0x917ca58a __raiseError + 410
1 libobjc.A.dylib 0x94581f49 objc_exception_throw + 56
2 CoreFoundation 0x917ca2b8 +[NSException raise:format:arguments:] + 136
3 CoreFoundation 0x917ca22a +[NSException raise:format:] + 58
4 Foundation 0x9140f528 mutateError + 218
5 AppKit 0x9563803a -[NSCell textView:shouldChangeTextInRange:replacementString:] + 852
6 AppKit 0x95636cf1 -[NSTextView(NSSharing) shouldChangeTextInRanges:replacementStrings:] + 1276
7 AppKit 0x95635704 -[NSTextView insertText:replacementRange:] + 667
8 AppKit 0x956333bb -[NSTextInputContext handleTSMEvent:] + 2657
9 AppKit 0x95632949 _NSTSMEventHandler + 209
10 HIToolbox 0x93379129 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1567
11 HIToolbox 0x933783f0 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 411
12 HIToolbox 0x9339aa81 SendEventToEventTarget + 52
13 HIToolbox 0x933fc952 SendTSMEvent + 82
14 HIToolbox 0x933fc2cf SendUnicodeTextAEToUnicodeDoc + 700
15 HIToolbox 0x933fbed9 TSMKeyEvent + 998
16 HIToolbox 0x933ecede TSMProcessRawKeyEvent + 2515
17 AppKit 0x95632228 -[NSTextInputContext handleEvent:] + 1453
18 AppKit 0x9562e088 -[NSView interpretKeyEvents:] + 209
19 AppKit 0x95631b45 -[NSTextView keyDown:] + 751
20 AppKit 0x95563194 -[NSWindow sendEvent:] + 5757
21 AppKit 0x9547bceb -[NSApplication sendEvent:] + 6431
22 AppKit 0x9540f6fb -[NSApplication run] + 917
23 AppKit 0x95407735 NSApplicationMain + 574
24 macsetup 0x00001f9f main + 24
25 macsetup 0x00001b75 start + 53
)
</code></pre>
<p>Can anybody shed some light on what is happening? Am I just using NSFormatter incorrectly?</p>
<pre><code>-(NSString*) stringForObjectValue:(id)object {
if( ![object isKindOfClass: [ NSString class ] ] ) {
return nil;
}
return [ NSString stringWithString: object ];
}
-(BOOL)getObjectValue: (id*)object forString: string errorDescription:(NSString**)error {
if( object ) {
*object = [ NSString stringWithString: string ];
return YES;
}
return NO;
}
-(BOOL) isPartialStringValid: (NSString*) cStr newEditingString: (NSString**) nStr errorDescription: (NSString**) error {
*nStr = [NSString stringWithString: [cStr uppercaseString]];
return NO;
}
</code></pre>
http://stackoverflow.com/questions/1495702/using-gdb-in-emacs-v23/1498240#14982402Answer by Nathan for Using gdb in emacs v23Nathan2009-09-30T13:49:18Z2009-09-30T13:49:18Z<p>Here's a wild guess:</p>
<p>Emacs's gud-mode requires that gdb gets run with annotations turned on so that it can properly parse the output. I've been bit by this when rewriting the default line emacs spits out after hitting M-x gdb. Make sure that "--annotate=3" is included on your gdb command line and see if that helps.</p>
http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows1python tab completion in windowsNathan2009-07-04T03:11:37Z2009-08-10T16:51:00Z
<p>I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code like the following to specify a list of possible completions when I hit the TAB key:</p>
<pre><code>import readline
readline.parse_and_bind( 'tab: complete' )
readline.set_completer( ... )
</code></pre>
<p>How can I do this on Windows? I'd like to avoid relying on 3rd-party packages if possible. If no solution exists is it possible to simply trap TAB key press so that I can implement my own from scratch?</p>
http://stackoverflow.com/questions/582698/understanding-symbolic-debugger/1145964#11459640Answer by Nathan for Understanding Symbolic Debugger Nathan2009-07-17T22:31:37Z2009-07-17T22:31:37Z<p>Check out the DWARF Debugging specification for an in-depth description of all the debugging information generated by gcc and how the debugger makes use of it.</p>
<p><a href="http://dwarfstd.org/Dwarf3.pdf" rel="nofollow">DWARF 3 Debugging Specification</a></p>
http://stackoverflow.com/questions/855549/can-i-start-a-script-so-its-independent-of-its-parent-process-on-linux/855626#8556260Answer by Nathan for Can I start a script so it's independent of its parent process on Linux?Nathan2009-05-13T01:14:13Z2009-05-13T01:14:13Z<p>You can use the "disown" built-in in bash to detach a job from the shell that spawned it. See: <a href="http://www.faqs.org/docs/bashman/bashref%5F79.html" rel="nofollow">http://www.faqs.org/docs/bashman/bashref_79.html</a></p>
http://stackoverflow.com/questions/482073/make-a-copy-of-an-unknown-concrete-type-in-c2Make a copy of an unknown concrete type in c++Nathan2009-01-27T01:42:15Z2009-02-04T06:07:37Z
<p>Suppose we have the following class hierarchy:</p>
<pre><code>class Base {
...
};
class Derived1 : public Base {
...
};
class Derived2 : public Base {
...
};
</code></pre>
<p>Given a <code>Base*</code> which could point to either a <code>Derived1</code> or <code>Derived2</code> object how can I make a copy of the actual object given that it's concrete type is unknown. I thought of defining copy constructors but I don't think this is possible without knowing the actual types involved. The only solution I can think of is defining a <code>clone()</code> method on each type in the hierarchy. Can anybody think of something more elegant?</p>
http://stackoverflow.com/questions/406729/what-are-some-examples-of-lisp-being-used-in-production-outside-of-ai-and-academ/486338#4863381Answer by Nathan for What are some examples of LISP being used in production, outside of AI and academia?Nathan2009-01-28T03:01:46Z2009-01-28T03:01:46Z<p>The <a href="http://en.wikipedia.org/wiki/Sawfish_(window_manager)" rel="nofollow">sawfish window manager</a> which used to be included in Gnome was written in a LISP dialect.</p>
http://stackoverflow.com/questions/91071/emacs-switch-active-window/96540#965404Answer by Nathan for Emacs, switch active windowNathan2008-09-18T20:27:11Z2008-09-18T20:27:11Z<p>You might also want to try using windmove which lets you navigate to the window of your choice based on geometry. I have the following in my .emacs file to change windows using C-x arrow-key.</p>
<pre><code>(global-set-key (kbd "C-x <up>") 'windmove-up)
(global-set-key (kbd "C-x <down>") 'windmove-down)
(global-set-key (kbd "C-x <right>") 'windmove-right)
(global-set-key (kbd "C-x <left>") 'windmove-left)
</code></pre>
http://stackoverflow.com/questions/88399/how-do-i-duplicate-a-whole-line-in-emacs/88828#888289Answer by Nathan for How do I duplicate a whole line in Emacs?Nathan2008-09-18T00:08:14Z2008-09-18T00:08:14Z<p>In addition to the previous answers you can also define your own function to duplicate a line. For example, putting the following in your .emacs file will make C-d duplicate the current line.</p>
<pre><code>(defun duplicate-line()
(interactive)
(move-beginning-of-line 1)
(kill-line)
(yank)
(open-line 1)
(next-line 1)
(yank)
)
(global-set-key (kbd "C-d") 'duplicate-line)
</code></pre>
http://stackoverflow.com/questions/1664735/set-div-height-to-100-of-parent/1665639#1665639Comment by Nathan on Set div height to 100% of parentNathan2009-11-03T15:53:52Z2009-11-03T15:53:52ZI said that I'd rather not set the height of the header because I don't want to have to know it. My current page header is just some 50pt text, but I might replace this with a graphic later on. I was hoping that I wouldn't need to modify the height/padding property of the navigation div every time I change the header.http://stackoverflow.com/questions/1664735/set-div-height-to-100-of-parent/1664908#1664908Comment by Nathan on Set div height to 100% of parentNathan2009-11-03T02:45:42Z2009-11-03T02:45:42ZI've tried this as per cballou's suggestion. It doesn't seem to be working for me. It looks like height: 100% is referring to the height of the entire document, not the height of the document minus the height of the pagehead.http://stackoverflow.com/questions/1664735/set-div-height-to-100-of-parentComment by Nathan on Set div height to 100% of parentNathan2009-11-03T02:19:17Z2009-11-03T02:19:17Zoverflow:scroll gives the same effect. I can see the header, but the scroll bar appears to be the height of the entire window, not the height of just the navigation div.http://stackoverflow.com/questions/1664735/set-div-height-to-100-of-parent/1664743#1664743Comment by Nathan on Set div height to 100% of parentNathan2009-11-03T01:53:07Z2009-11-03T01:53:07ZSetting the height of the body and content elements doesn't seem to help. What do you mean by "it does not take into consideration the positioning of the header"?http://stackoverflow.com/questions/1495702/using-gdb-in-emacs-v23/1498240#1498240Comment by Nathan on Using gdb in emacs v23Nathan2009-10-05T00:03:12Z2009-10-05T00:03:12ZM-x gdb is still supported, and I use it all the time. Your problem is indicative of not having annotations turned on (--annotate=3 on the gdb command line). With gud-gdb you don't get the "visual" features of gdb in emacs. This includes things like the dedicated stack and local variable buffers in "gdb many windows mode". Maybe something in your emacs configuration is breaking visual mode, have you tried starting emacs with "-q" switch to prevent loading your config file?http://stackoverflow.com/questions/1495702/using-gdb-in-emacs-v23/1498240#1498240Comment by Nathan on Using gdb in emacs v23Nathan2009-10-01T19:12:42Z2009-10-01T19:12:42ZI use gdb in emacs-23.1 without any problems. What happens if you use text mode instead of graphical mode by using M-x gud-gdb? Be sure not to remove the --fullname option from the gdb command line.