User njsf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:53:49Zhttp://stackoverflow.com/feeds/user/4995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1263899/where-do-you-track-the-developments-of-new-c-standards/1263938#12639382Answer by njsf for Where do you track the developments of new c++ standards?njsf2009-08-12T02:31:54Z2009-08-12T02:31:54Z<p>A lot of insiders to the standards working group discuss and post at <a href="http://groups.google.com/group/comp.std.c++/topics?pli=1" rel="nofollow">comp.std.c++</a> so I guess that would qualify.</p>
<p>Another good place is Herb Sutter <a href="http://www.gotw.ca/" rel="nofollow">homepage</a> and <a href="http://herbsutter.wordpress.com/" rel="nofollow">blog</a>.</p>
http://stackoverflow.com/questions/1152340/why-are-developers-generally-opposed-to-purchasing-software-tools/1152346#115234616Answer by njsf for Why are developers generally opposed to purchasing software tools?njsf2009-07-19T22:57:11Z2009-07-20T08:33:27Z<p>As a developer I do not see it as generally opposed, as much as "leveraging" the learning investment.</p>
<p>If you are in a job, and you use an expensive tool, the likelihood you'll be able to use the same tool in another job will be less than if the tool is free.</p>
<p>It all boils down to cost-benefit analysis IMO.</p>
<p>If you have a free tool which gets you 95% of the requirements and you can leverage the learning of that tool, you will prefer that over a tool which costs money, gets you 99% of the requirements and you may not use it again.</p>
<p>That is why, for instance, once a developer sets up with his editing environment (Emacs, vi, Eclipse, Visual Studio, whatever) you will have a lot of resistance to changing it. The productivity will suffer immediately due to all that "finger memory" lost.</p>
<p>Another typical examples of tools that free solutions are preferred by developers are expensive source control tools like ClearCase.</p>
<p>On the other hand, I have seen developers advising and like to use some well established and expensive tools like Purify, and know that sooner or later knowing how to use them well will benefit them. In the particular space of purify, developers will also advise using free tools, because their use is not mutually exclusive from the commercial ones. </p>
<p>Update (due to clarified scope of question):
With tools in the sub US$100 category, even though it is a small enough amount they could pay themselves or expense the resistance comes from:</p>
<ol>
<li>Who will own the license ? Me or the company?</li>
<li>If the company owns the license to software, if I go to another job, what amount of trouble will I have to get the buy of a license approved ?</li>
<li>If I own the license, will a new company allow me to install the software on their machine ?</li>
</ol>
<p>For all these reasons, the "free" route offers a slightly better return, as the money obstacle of 2 and 3 will be more easily overcome :-)</p>
<p>I also agree with JFV, that sometimes the existing tools do not offer all the capability you'd want, and you think you would develop something better, and that takes away a lot of the perceived value of those tools.</p>
<p>Expanding on that thought, the possibility of developing your own tool, also increases the value of existing open source tools, because the developer can always dive into the source and coerce it to do the additional thing he needs. This may be more work than the developer anticipates, but still possible, whereas a commercial, close-source you'd have to wait for it to be developed or develop the tool from scratch yourself.</p>
http://stackoverflow.com/questions/1150153/why-cant-i-write-f1-1-to-get-elements-1-last/1150204#11502040Answer by njsf for Why can't I write @F[1..-1] to get elements 1..last?njsf2009-07-19T16:08:14Z2009-07-19T16:08:14Z<p>The [] operator will accept either a single index or a range.</p>
<p>-1 is accepted as index to mean the index of last element. The proper way is $#F.</p>
<p>A range of 1..-1 is empty, and that is why it returns nothing, because the range evaluation is separate from the evaluation of the index.</p>
http://stackoverflow.com/questions/1135565/is-it-acceptable-for-an-api-to-have-documented-bad-behaviors/1135626#11356260Answer by njsf for Is it acceptable for an API to have documented bad behaviors?njsf2009-07-16T05:51:33Z2009-07-16T05:51:33Z<p>As others, I believe in graceful fail over a crash. If the nature of the failure is totally dependent on values calculated with the inside of the API implementation, it should be a graceful failure. However one must also consider that when the failure is a consequence of bad input, you may have to just rely on documentation, as prevention may hurt the performance of common case for the safety of the odd ball case. This may be worthwhile if your software is to be run in mission-critical circumstances.</p>
<p>So...</p>
<ol>
<li><p>If the API receives a pointer, it is likely that either it is impossible (usual case) or too computationally expensive to determine the validity of the pointer (in the cases where the API controls the lifetime of the memory pointed to, because it would have to be tracked and searched)</p></li>
<li><p>It is easy to fend off most "sigbus" due to alignment from the input arguments, by checking the modulus of the address with the alignment for the platform. Note that verification will be mostly platform dependent. If you work on multiple platforms this will probably will become bug prone.</p></li>
<li><p>As far as memory leaks, the best you can hope for is to document really well the ownership protocol of the memory. Hard to "gracefully" fail there. You can actually think of the memory leak as the "graceful" failure.</p></li>
</ol>
http://stackoverflow.com/questions/1089176/is-sizet-always-unsigned/1089289#10892891Answer by njsf for is size_t always unsigned?njsf2009-07-06T21:26:13Z2009-07-06T21:26:13Z<p>The size_t should follow the same definition as the C standard, and in several places in the C++ standard it implies it's unsigned natura (particularly in the allocator template argument definitions).</p>
<p>On the C++ Standard, section 18.1 (ISO/IEC 14882 - First edition 1998-01-01):</p>
<p>Table 15 lists as defined types: ptrdiff_t and size_t</p>
<p>3 The contents are the same as the Standard C library header , with the following changes:
4 The macro NULL is an implementation-defined C++ null pointer constant in this International Standard (4.10).</p>
<p>The macro offsetof accepts a restricted set of type arguments in this International Standard. type
shall be a POD structure or a POD union (clause 9). The result of applying the offsetof macro to a field that
is a static data member or a function member is undefined.
SEE ALSO: subclause 5.3.3, Sizeof, subclause 5.7, Additive operators, subclause 12.5, Free store, and ISO
C subclause 7.1.6.</p>
http://stackoverflow.com/questions/960418/what-does-this-software-quote-mean/960421#9604212Answer by njsf for What does this software quote mean?njsf2009-06-06T20:15:39Z2009-06-06T20:15:39Z<p>I believe the point here is not on what the system does, but on the data it operates on and what those operations are.</p>
<p>This provides two major thinking shifts:</p>
<ul>
<li>You think of the data and concepts first</li>
<li>You think of operations on that data</li>
</ul>
<p>With those two "baselines" you will better prepared to organize a system to achieve your goals so that operations on data are well understood and make sense.</p>
<p>In effect, he is laying the ground work to be able to write the "contracts" on the code you write.</p>
http://stackoverflow.com/questions/944579/tempnam-equivalent-in-c/944641#9446410Answer by njsf for tempnam equivalent in C++njsf2009-06-03T13:07:55Z2009-06-03T13:07:55Z<pre><code>#include <cstdio>
using std::tmpnam;
using std::tmpfile;
</code></pre>
<p>You should also check this <a href="http://stackoverflow.com/questions/499636/c-how-to-create-a-stdofstream-to-a-temp-file">previous question on StackOverflow</a> and avoid race conditions on creating the files using mkstemp, so I would recommend using std::tmpfile</p>
http://stackoverflow.com/questions/938590/resizing-dynamic-stack-allocations-in-c/938670#9386700Answer by njsf for Resizing dynamic stack allocations in C++njsf2009-06-02T09:34:01Z2009-06-02T09:37:58Z<p>Hi Jonas,</p>
<p>Since alloca allocations are cummulative, I suggest you do a first alloca to store the "this" pointer, thus becoming the "base" of the stack, keep track of how many elements your stack can hold and allocate only the size needed:</p>
<pre><code>inline void travel(param &p){
BoundingBoxNode* stack = alloca(sizeof(BoundingBoxNode*)*3);
int stack_size = 3, stack_idx = 0;
stack[stk_idx] = this;
do {
BoundingBoxNode* current = stack[stk_idx];
if( current->intersect(p)){
int need = current->left ? ( current->right ? 2 : 1 ) : 0;
if ( stack-size - stk_idx < need ) {
// Let us simplify and always allocate enough for two
alloca(sizeof(BoundingBoxNode*)*2);
stack_size += 2;
}
if(current->left){
stack[stack_idx++] = current->left;
}
if(current->right){
stack[stack_idx++] = current->right;
}
}
stack_idx--;
} while(stack_idx > 0)
};
</code></pre>
http://stackoverflow.com/questions/934529/c-inline-functions-using-gcc-why-the-call/934556#93455616Answer by njsf for C++ inline functions using GCC - why the CALL?njsf2009-06-01T12:06:39Z2009-06-01T12:06:39Z<p>Like Michael Kohne mentioned, the inline keyword is always a hint, and GCC in the case of your function decided not to inline it.</p>
<p>Since you are using Gcc you can force inline with the __attribute((always_inline)).</p>
<p>Example:</p>
<pre><code> /* Prototype. */
inline void foo (const char) __attribute__((always_inline));
</code></pre>
<p>Source:<a href="http://gcc.gnu.org/onlinedocs/gcc/Inline.html" rel="nofollow">GCC inline docs</a></p>
http://stackoverflow.com/questions/902984/your-criteria-in-using-a-new-technology-or-programming-language/902991#9029910Answer by njsf for Your criteria in using a new technology or programming languagenjsf2009-05-24T03:13:03Z2009-05-24T03:13:03Z<ol>
<li>Should be capable of solving the problem</li>
<li>Should be more adequate to solve the problem than other alternatives</li>
<li>Should be fun</li>
<li>Should have prompt support, either from a community or the company promoting it</li>
</ol>
http://stackoverflow.com/questions/902591/how-to-attach-a-file-using-mail-command-on-linux/902628#9026280Answer by njsf for How to attach a file using mail command on Linux?njsf2009-05-23T22:21:54Z2009-05-23T22:21:54Z<p>My answer needs base64 in addition to mail, but some uuencode versions can also do base64 with -m, or you can forget about mime and use the plain uuencode output...</p>
<pre><code> FROM=me@mydomain.com
TO=someone@mydomain.com
SUBJECT="Auto emailed"
MIME="application/x-gzip" # Adjust this to the proper mime-type of file
FILE=somefile.tar.gz
ENCODING=base64
boundary="---my-unlikely-text-for-mime-boundary---$$--"
(cat <<EOF
From: $FROM
To: $REPORT_DEST
Subject: $SUBJECT
Date: $(date +"%a, %e %Y %T %z")
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="$boundary"
Content-Disposition: inline
--$boundary
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
This email has attached the file
--$boundary
Content-Type: $MIME;name="$attachment"
Content-Disposition: attachment;filename="$attachment"
Content-Transfer-Encoding: $ENCODING
EOF
base64 $attachment
echo ""
echo "--$boundary--" ) | mail
</code></pre>
http://stackoverflow.com/questions/846730/tricky-brace-expansion-in-shell/846771#846771-1Answer by njsf for Tricky brace expansion in shellnjsf2009-05-11T05:08:11Z2009-05-11T05:08:11Z<p>Taking inspiration from the answers above:</p>
<pre><code>$ TEST=quick,man,strong
$ touch $(eval echo {$TEST}ly)
</code></pre>
http://stackoverflow.com/questions/312957/how-would-i-use-the-and-operators-for-binary-data-in-c/312972#3129722Answer by njsf for How would I use the >> and << operators for binary data in C++?njsf2008-11-23T21:20:10Z2008-11-23T21:20:10Z<p>Sure it can be done. Just define your own operator>> and operator<< so they do "the right thing"...</p>
<p>I would make it so I would have methods in the class, like toStream(ostream& os) and fromStream(istream& ), then define </p>
<pre><code>istream& operator>> (istream& is, T& t)
{
t.fromStream(is);
return t;
}
ostream& operator<< (ostream& os, const T& t)
{
t.toStream(os);
return t;
}
</code></pre>
http://stackoverflow.com/questions/312915/procmail-troubles/312966#3129660Answer by njsf for Procmail Troublesnjsf2008-11-23T21:14:24Z2008-11-23T21:14:24Z<p>If you wish to process email you already have, you will need to:</p>
<ol>
<li>Exit any mail clients</li>
<li>Move away your current Inbox (mv /var/spool/mail/username /tmp/mail.username )</li>
<li>formail +1 -ds procmail < /tmp/mail.username</li>
</ol>
http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/312587#3125870Answer by njsf for File handler's limit crossing 256njsf2008-11-23T14:50:23Z2008-11-23T14:50:23Z<p>Like Evan Teran mentioned, solaris libc has this "odd" limitation on FILE that it can only handle file handles under 256.</p>
<p>This is regardless the limit you can set with ulimit.
You can set this limit from withing your program with:</p>
<pre><code>#include <sys/resource.h>
struct rlimit rl;
getrlimit(RLIMIT_NOFILE,&rl);
rl.rlim_cur = 1024; /* change it to 1024 - note has to be < than rl.rlim_max */
setrlimit(RLIMIT_NOFILE,&rl);
</code></pre>
<p>Now, I would also stop using FILE* and use open instead of fopen, etc etc.
For the cases you really, really need to use FILE*, on several projects I worked, at the start of the program several file descriptors were "reserved" by doing a socket call, and we had a small library to get a FILE* using these, by closing one of the sockets and right after that doing a fopen, which will use the just closed fd. Of course one would also need to close the FILE* with a special function that would fclose and then get the fd right away using socket ;-)</p>
http://stackoverflow.com/questions/172587/what-is-the-difference-between-g-and-gcc/172613#1726131Answer by njsf for What is the difference between g++ and gcc?njsf2008-10-05T20:35:31Z2008-10-05T20:35:31Z<p>The only notable difference is that i you pass a .c to gcc it will compile as C, whereas g++ will always treat it as C++</p>
http://stackoverflow.com/questions/172266/what-are-the-best-resources-to-start-learning-perl/172298#1722986Answer by njsf for What are the best resources to start learning Perl?njsf2008-10-05T17:05:35Z2008-10-05T17:05:35Z<p>I find the Camel Book most useful as reference, but you also have to realize that ~95% of its contents is word for word taken from perldoc.</p>
<p>If you need a concise, show me the basics, <a href="http://oreilly.com/catalog/9780596520106/index.html" rel="nofollow">Learning Perl</a> or the llama book is still the best. But I would also get the Camel Book, because it is handy :-)</p>
http://stackoverflow.com/questions/172138/setup-multi-languages-wordpress/172154#1721540Answer by njsf for Setup multi languages wordpressnjsf2008-10-05T15:42:12Z2008-10-05T15:42:12Z<p>I have used the xlanguage plugin and I am happy with it.
<a href="http://hellosam.net/project/xlanguage" rel="nofollow">xlanguage site</a></p>
http://stackoverflow.com/questions/172110/how-to-elegantly-print-the-date-in-rfc822-format-in-perl/172119#17211914Answer by njsf for How to elegantly print the date in RFC822 format in Perlnjsf2008-10-05T15:12:41Z2008-10-05T15:12:41Z<pre><code>use POSIX qw(strftime);
print strftime("%a, %d %b %Y %H:%M:%S %z", localtime(time())) . "\n";
</code></pre>
http://stackoverflow.com/questions/171490/getting-256-colors-out-of-ruby-ncurses/171503#1715032Answer by njsf for Getting 256 colors out of ruby-ncursesnjsf2008-10-05T04:42:22Z2008-10-05T05:34:03Z<p>I am not sure if this would be all the story, but make sure your terminal capabilities do indeed provide for the 256 colors description.</p>
<p>What is the TERM environment variable value? Try setting it to xterm-256color and rerun it.
ncurses should then get the proper color escape sequences.</p>
<p>You can also test the terminal capabilities and terminal color output with the program we use at SXEmacs development:</p>
<p><a href="http://www.triatlantico.org/tmp/tty-colors.c" rel="nofollow">http://www.triatlantico.org/tmp/tty-colors.c</a></p>
<p>Compile with gcc -o tty-colors tty-colors.c -lncurses</p>
<p>EDIT:
Note that just because the scripts that are found on the net output the 256 colors, that is not "all set".
Curses programs rely on terminfo and termcap and the TERM environment variable to find out how to interact with the terminal.
So in order for a curses app to be able to use the 256 colors one should set the TERM variable to an existing terminal name which supports 256 colors.
The C program above will show you <em>what</em> ncurses thinks about your terminal, not just output the xterm sequences like most scripts do [even the one from X.org]</p>
http://stackoverflow.com/questions/171506/make-and-build-utilities-on-centos-rhel/171534#1715344Answer by njsf for Make and build utilities on CentOS/RHEL?njsf2008-10-05T05:12:37Z2008-10-05T05:12:37Z<p>I just double checked and CentOS 5.2 already includes make!</p>
<p>I found it also in one of the online mirrors, if it is easier for you:</p>
<p><a href="http://centos.cogentcloud.com/5.2/os/i386/CentOS/make-3.81-3.el5.i386.rpm" rel="nofollow">http://centos.cogentcloud.com/5.2/os/i386/CentOS/make-3.81-3.el5.i386.rpm</a></p>
<p>if you installed the 64 bit version: </p>
<p><a href="http://centos.cogentcloud.com/5.2/os/x86_64/CentOS/make-3.81-3.el5.x86_64.rpm" rel="nofollow">http://centos.cogentcloud.com/5.2/os/x86_64/CentOS/make-3.81-3.el5.x86_64.rpm</a></p>
http://stackoverflow.com/questions/170600/unix-socket-implementation-for-java/170633#1706337Answer by njsf for UNIX socket implementation for Java?njsf2008-10-04T16:46:07Z2008-10-04T16:46:07Z<p>Checkout the JUDS library. It is a Java Unix Domain Socket library...</p>
<p><a href="http://code.google.com/p/juds/" rel="nofollow">http://code.google.com/p/juds/</a></p>
http://stackoverflow.com/questions/163591/bash-autocompletion-in-emacs-shell-mode/165506#1655061Answer by njsf for Bash autocompletion in Emacs shell-modenjsf2008-10-03T02:55:07Z2008-10-03T03:55:14Z<p>Like Matli said, it is not an easy task, since bash is started with --noediting and TAB is bound to comint-dynamic-complete.</p>
<p>One could possibly rebind TAB to self-insert-command in shell-comand-hook with local-set-key
and make shell-mode not start with --noediting by M-x customize-variable RET explicit-bash-args, but I suspect that it will not sit well with all other editing.</p>
<p>You might want to try term-mode, but it has another set of problems, because some of the other regular keybindings are overtaken by term-mode.</p>
<p>EDIT: By other regular keybidings being overtaken by term-mode, I mean all but C-c which becomes the escape to be able to switch buffers. So instead of C-x k to kill the buffer you'd have to C-c C-x k. Or to switch to another buffer 'C-c C-x o' or 'C-c C-x 2'</p>
http://stackoverflow.com/questions/160974/how-to-typedef-a-pointer-to-method-which-returns-a-pointer-the-method/161040#1610407Answer by njsf for How to typedef a pointer to method which returns a pointer the method?njsf2008-10-02T05:56:21Z2008-10-02T05:56:21Z<p>Using just typedef:</p>
<pre><code>class StateMachine {
public:
class StateMethod;
typedef StateMethod (StateMachine::*statemethod)();
class StateMethod {
statemethod method;
StateMachine& obj;
public:
StateMethod(statemethod method_, StateMachine *obj_)
: method(method_), obj(*obj_) {}
StateMethod operator()() { return (obj.*(method))(); }
};
StateMethod stateA() { return StateMethod(&StateMachine::stateA, this); }
StateMethod stateB() { return StateMethod(&StateMachine::stateB, this); }
};
</code></pre>
http://stackoverflow.com/questions/151652/creating-system-wide-vista-keyboard-shortcuts-and-macros/151668#1516681Answer by njsf for creating system wide vista keyboard shortcuts and macrosnjsf2008-09-30T03:33:35Z2008-09-30T03:33:35Z<p>AutoHotKey is the most configurable I know...</p>
<p><a href="http://www.autohotkey.com" rel="nofollow">http://www.autohotkey.com</a></p>
<p>[EDIT]
Another neat utility is Microsoft Keyboard Layout creator</p>
<p><a href="http://www.microsoft.com/globaldev/tools/msklc.mspx" rel="nofollow">http://www.microsoft.com/globaldev/tools/msklc.mspx</a></p>
http://stackoverflow.com/questions/136703/is-there-a-one-liner-to-read-in-a-file-to-a-string-in-c/136883#1368832Answer by njsf for Is there a one-liner to read in a file to a string in C++?njsf2008-09-25T23:34:59Z2008-09-25T23:34:59Z<p>How about:</p>
<pre><code>#include <fstream>
#include <sstream>
#include <iostream>
using namespace std;
int main( void )
{
stringstream os(stringstream::out);
os << ifstream("filename.txt").rdbuf();
string s(os.str());
cout << s << endl;
}
</code></pre>
http://stackoverflow.com/questions/131955/keyboard-shortcut-to-paste-clipboard-content-into-command-prompt-window-win-xp/131997#1319970Answer by njsf for Keyboard shortcut to paste clipboard content into command prompt window (Win XP)njsf2008-09-25T07:46:07Z2008-09-25T07:46:07Z<p>You could try using <a href="http://lifehacker.com/software/texter/lifehacker-code-texter-windows-238306.php" rel="nofollow" title="Texter">Texter</a> and create something unlikely like:</p>
<p>./p , triggered by space and replacing the text with %c</p>
<p>I just tested it and it works fine. The only gotcha is to use a rare sequence, as Texter cannot restrict this to just cmd.</p>
<p>There are probably other utilities of this kind which could work, and even <a href="http://www.autohotkey.com" rel="nofollow" title="AutoHotKey">AutoHotKey</a>, upon which Texter is built could do it better, but Texter is easy :-)</p>
http://stackoverflow.com/questions/131756/poetry-for-programmers/131946#1319461Answer by njsf for Poetry for programmers?njsf2008-09-25T07:29:47Z2008-09-25T07:29:47Z<p>Featured in the "Programming Perl" book [aka Camel Book], it actually is valid Perl...</p>
<pre><code>#!/usr/bin/perl
APPEAL:
listen (please, please);
open yourself, wide;
join (you, me),
connect (us,together),
tell me.
do something if distressed;
@dawn, dance;
@evening, sing;
read (books,$poems,stories) until peaceful;
study if able;
write me if-you-please;
sort your feelings, reset goals, seek (friends, family, anyone);
do*not*die (like this)
if sin abounds;
keys (hidden), open (locks, doors), tell secrets;
do not, I-beg-you, close them, yet.
accept (yourself, changes),
bind (grief, despair);
require truth, goodness if-you-will, each moment;
select (always), length(of-days)
# listen (a perl poem)
# Sharon Hopkins
# rev. June 19, 1995
</code></pre>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/131892#1318922Answer by njsf for Recommended Books for Software Engineeringnjsf2008-09-25T07:21:01Z2008-09-25T07:21:01Z<p>For such a broad overview I'd recommend either of these two classics:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/007301933X" rel="nofollow">Software Engineering: A Practicioners approach - Roger Pressman</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0321313798" rel="nofollow">Software Engineering - Ian Sommervile</a></li>
</ul>
<p>But I do agree with some of the previous recommendations:</p>
<ul>
<li>The Pragmatic Programmer</li>
<li>Mythical Man Month - Fred Brooks</li>
<li>Code Complete - Steve McConnel</li>
</ul>
<p>Some good, but OO specific:</p>
<ul>
<li>Object Oriented Software Engineering - Ivar Jacobson</li>
<li>Design Patterns - Gamma et al.</li>
</ul>
http://stackoverflow.com/questions/131608/do-you-use-a-single-editor-well/131683#1316832Answer by njsf for Do you use a single editor (well)?njsf2008-09-25T06:09:01Z2008-09-25T06:09:01Z<p>I use SXEmacs (would use any other Emacsen) to almost everything, from source code editing, compile triggering, browsing code, irc, IM, email and some browsing. The only thing I cannot do well is browse sites with a lot of JavaScript (which is a lot these days :( )</p>
<p>What keeps me using Emacsen is the powerful configurability and the community that keeps on developing packages and elisp features, and shares nifty little configuration snippets.</p>
<p>In order to gauge the extent of the stuff it can do, checkout <a href="http://emacswiki.org" rel="nofollow">http://emacswiki.org</a></p>
http://stackoverflow.com/questions/1236618/linux-command-for-removing-all-files/1236621#1236621Comment by njsf on Linux command for removing all ~ filesnjsf2009-08-06T02:17:46Z2009-08-06T02:17:46ZThis one would also remove a~b etc
http://stackoverflow.com/questions/1182534/dynamically-store-lines-of-strings-using-c/1182625#1182625Comment by njsf on Dynamically store lines of strings using Cnjsf2009-07-25T18:11:51Z2009-07-25T18:11:51ZOuch. Your recommendation uses arrays that get realloc'ed with growth and whatnot. Not to mention that the code is not that commented (maybe because they want to sell the book) ?
That data structure would be ok for a small number of strings, but it has poor performance characteristics.
http://stackoverflow.com/questions/1152340/why-are-developers-generally-opposed-to-purchasing-software-tools/1152346#1152346Comment by njsf on Why are developers generally opposed to purchasing software tools?njsf2009-07-19T23:50:10Z2009-07-19T23:50:10ZI also took JFV response as saying he build the tools himself.
I just expanded on his response to say that in addition to that, and as an alternative, developers would favor open source, because they could both take an existing tool and then expand on it to fit better the needs, without all the heavy lifting up front.
I will edit the punctuation to make this clearer. Thankshttp://stackoverflow.com/questions/1139546/an-overloaded-operator-takes-function-pointer-as-parameter-how-do-i-retrieve-arg/1139619#1139619Comment by njsf on An overloaded operator takes function pointer as parameter, how do i retrieve arguments of function pointernjsf2009-07-17T00:38:52Z2009-07-17T00:38:52ZYeah, your answer is correct.. I up voted.http://stackoverflow.com/questions/1117066/installing-c-boost-on-mac-osx-leopard-port-fails/1117087#1117087Comment by njsf on installing c++ boost on mac osx leopard -- port failsnjsf2009-07-12T22:37:49Z2009-07-12T22:37:49ZI agree. I have not had problems installing boost from ports in a long time, and 1.35 is <i>old</i>, 1.39 is the latest, 1.38 is known to be stablehttp://stackoverflow.com/questions/1057490/current-directory-doesnt-appear-in-title-bar-when-running-under-screen/1057530#1057530Comment by njsf on current directory doesn't appear in title bar when running under screennjsf2009-06-30T05:27:27Z2009-06-30T05:27:27ZIf instead of %t %h is used, then the sequence from the OP will show on the hardstatushttp://stackoverflow.com/questions/1017755/c-static-const-variable-and-destructionComment by njsf on C++ static const variable and destructionnjsf2009-06-19T12:52:47Z2009-06-19T12:52:47ZHave you actually used this code ? No include for the std::string class, no A:: scoping for CONST_STR, missing close parentesis on the assert for ~A...http://stackoverflow.com/questions/944516/what-are-the-most-used-string-types-in-c-and-how-to-convert-between-themComment by njsf on What are the most-used string types in C++ and how to convert between them?njsf2009-06-03T12:56:07Z2009-06-03T12:56:07ZThe title should include Visual C++ instead of C++ because the nature of the question deals with string types specific to a Windows environment.http://stackoverflow.com/questions/934529/c-inline-functions-using-gcc-why-the-call/934556#934556Comment by njsf on C++ inline functions using GCC - why the CALL?njsf2009-06-02T22:29:45Z2009-06-02T22:29:45ZAgreed. I guess I am still an optimist and believe most people have some common sense ;-)http://stackoverflow.com/questions/873473/is-there-any-situation-in-which-it-would-be-useful-or-necessary-to-double-link/873482#873482Comment by njsf on Is there any situation in which it would be useful or necessary to "double link" header files? (C++)njsf2009-05-16T23:09:23Z2009-05-16T23:09:23Z"Empty class" declarations are actually called forward declarations FYIhttp://stackoverflow.com/questions/846730/tricky-brace-expansion-in-shell/846751#846751Comment by njsf on Tricky brace expansion in shellnjsf2009-05-11T05:06:48Z2009-05-11T05:06:48ZThat did not work for me
maybe if xargs touch is used instead of touch - ?http://stackoverflow.com/questions/647032/unable-to-change-the-default-editor-in-terminal/647033#647033Comment by njsf on Unable to change the default editor in terminalnjsf2009-03-15T01:19:52Z2009-03-15T01:19:52ZIt has to be:
EDITOR=vim
export EDITOR
or if you use bash just
export EDITOR=vimhttp://stackoverflow.com/questions/185899/what-is-the-difference-between-a-symbolic-link-and-a-hard-link/185908#185908Comment by njsf on What is the difference between a symbolic link and a hard link?njsf2008-10-09T04:16:17Z2008-10-09T04:16:17ZAlso, when you remove the file you link to, a symbolic link gets broken, a hard link remains valid, because it "keeps" the file in the file system.http://stackoverflow.com/questions/172303/is-there-a-regular-expression-to-detect-a-valid-regular-expression/172338#172338Comment by njsf on Is there a regular expression to detect a valid regular expression?njsf2008-10-05T17:47:23Z2008-10-05T17:47:23ZThanks for the link on Russ Cox articlehttp://stackoverflow.com/questions/171126/learning-c-and-or-c-from-beginner-to-advanced/171151#171151Comment by njsf on Learning C and/or C++ from beginner to advancednjsf2008-10-05T06:40:44Z2008-10-05T06:40:44ZI wold not start with Scott Meyers books, as they cover more than just the basic inner workings, and go into "gotcha" territory possibly making you think C++ is more complicated than it really is.
I personally liked Lippman style on C++ Primer when I was starting.