User joveha - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T04:55:09Zhttp://stackoverflow.com/feeds/user/40668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1305297/concatenate-path-and-basename2Concatenate path and basenamejoveha2009-08-20T10:40:41Z2009-08-20T10:46:37Z
<p><em>basename(3)</em> and <em>dirname(3)</em> can split an absolute path into its respective components.</p>
<p>Short of using <em>snprintf(3)</em>, is there a natural posix-compliant library call that does the inverse - takes a directory and a filename and concatenates them?</p>
<p>Manually concatenation works fine for me, but can get a little tedious at times.</p>
http://stackoverflow.com/questions/341520/how-to-use-libapt-or-libept-in-debian-like-system-to-list-packages-and-get-thei/341588#3415881Answer by joveha for How to use libapt (or libept) in debian-like system to list packages and get their infos?joveha2008-12-04T18:16:17Z2008-12-04T18:16:17Z<p>Take a look at how apt-cache(8) is implemented. Obtaining the source with apt is easy:</p>
<pre><code># apt-get source apt
</code></pre>
<p>In the source file <code>cmdline/apt-cache.cc</code> theres is a function called <code>DumpPackage()</code> which extracts information from a named file in the cache.</p>
http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338990#3389900Answer by joveha for Why use hashing to create pathnames for large collections of files?joveha2008-12-03T22:30:02Z2008-12-03T22:30:02Z<p>Hashes also gives a unique'ness to the pathname. Very few name clashes.</p>
http://stackoverflow.com/questions/338347/how-to-integration-test-a-network-application-in-c2How to integration-test a network application in Cjoveha2008-12-03T18:58:22Z2008-12-03T22:24:09Z
<p>I've never managed to move from unit-testing to integration-testing in any graceful or automated way when it comes to network code.</p>
<p><strong>So my question is</strong>: Given a simple single-threaded client/server based network application, how would you go about integrating both client and server into your currently favorite testing suite (I currently use <a href="http://check.sourceforge.net/" rel="nofollow">check</a>).</p>
<p>I am of course willing to change unit-test suite to accomplish my goal.</p>
<p><strong>Edit</strong>: While I appreciate the answers, I was more looking for some magical way of integrating integration-testing into my unit-test framework (if it's possible at all). Like if <em>fork</em>() or something could be applied without getting too many side effects.</p>
http://stackoverflow.com/questions/328914/how-to-check-if-my-isp-blocks-port-25/338830#3388301Answer by joveha for How to check if my ISP blocks port 25?joveha2008-12-03T21:44:43Z2008-12-03T21:49:51Z<p>Probing a server that listens on your desired port is of course the best option, as abatishchev has shown.</p>
<p>In the case where you can't find an "echo" service on your desired port or <em>you want to know who is blocking you</em> on the path you can resort to <em>firewalking</em>. Firewalking probes the path by starting with a Time-To-Live (TTL) set to zero and then icrementing it by one each iteration. When you stop getting "ICMP TTL Exceeded" messages that means the next hop in the chain is filtering your packets.</p>
<p>You can use <a href="http://www.hping.org/" rel="nofollow">hping3</a> to do this:</p>
<pre><code>:~$ hping3 -z -T -p 25 server.com
</code></pre>
<p>or use <a href="http://www.packetfactory.net/projects/firewalk/" rel="nofollow">Firewalk</a> which was created for exactly this.</p>
<p><strong>Edit</strong>: Any NAT devices on the route will silently destroy your results since the TTL is reset to whatever sane value the router sees fit.</p>
http://stackoverflow.com/questions/334653/new-dynamic-tools-analysis-for-c-code/334931#3349311Answer by joveha for new dynamic tools analysis for C-code joveha2008-12-02T18:21:13Z2008-12-02T18:21:13Z<p>Have a peek at <a href="http://lcamtuf.coredump.cx/fenris/whatis.shtml" rel="nofollow">Fenris</a>. Maybe not a valgrind replacement, but still very cool :) In fact, nearly all the tools <a href="http://lcamtuf.coredump.cx/" rel="nofollow">Michal Zalewski</a> creates are really....creative (sorry).</p>
http://stackoverflow.com/questions/333701/which-are-the-must-visit-daily-websites-for-programmers/333784#3337841Answer by joveha for which are the must-visit-daily websites for programmers?joveha2008-12-02T12:15:48Z2008-12-02T12:15:48Z<p>I find these interesting:</p>
<ul>
<li><a href="http://blogs.msdn.com/oldnewthing/default.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing</a> </li>
<li><a href="http://realtimecollisiondetection.net/blog/" rel="nofollow">http://realtimecollisiondetection.net/blog/</a></li>
</ul>
http://stackoverflow.com/questions/332614/gartrip-calibration-file-format-generation/332691#3326910Answer by joveha for gartrip calibration file format/generationjoveha2008-12-02T00:33:19Z2008-12-02T00:33:19Z<p>Do you mean route files as in "Calibration" files? In that case, <a href="http://www.gpsbabel.org/" rel="nofollow">gpsbabel</a> can convert between a gazillion formats. </p>
http://stackoverflow.com/questions/332645/where-can-i-find-an-example-unzipper-using-zlib/332662#3326623Answer by joveha for Where can I find an example unzipper using zlib?joveha2008-12-02T00:14:35Z2008-12-02T00:14:35Z<p>The zlib-bin source package on my system (linux) has some example programs called "minizip" and "miniunzip" which shows just that.</p>
http://stackoverflow.com/questions/330412/which-books-made-you-a-better-programmer/330568#3305681Answer by joveha for Which books made you a better programmer ?joveha2008-12-01T11:24:43Z2008-12-01T12:00:58Z<p>These two books helped me immensely in creating safer code. The contain hints on just about any pitfalls you might unawaringly be getting yourself into while writing C or C++. I highly recommend both.</p>
<ul>
<li><a href="http://www.cert.org/books/secure-coding/" rel="nofollow">Secure Coding in C and C++</a></li>
<li><a href="http://www.informit.com/store/product.aspx?isbn=0321563212" rel="nofollow">CERT C Secure Coding Standard</a></li>
</ul>
<p>The last one is freely available on-line <a href="http://www.securecoding.cert.org/confluence/display/seccode/CERT+C+Secure+Coding+Standard" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/317661#3176610Answer by joveha for What are the best programming articles?joveha2008-11-25T15:13:30Z2008-12-01T07:47:46Z<p><a href="http://www.securecoding.cert.org/confluence/display/seccode/CERT+Secure+Coding+Standards" rel="nofollow">Cert Secure Coding Standards</a> is a gem</p>
<p>Edit: fixed the link.</p>
http://stackoverflow.com/questions/328521/does-a-function-exist-that-searches-the-unix-path-variable-and-returns-true-if-a/330228#3302280Answer by joveha for Does a function exist that searches the unix $PATH variable and returns true if a certain file exists?joveha2008-12-01T07:37:00Z2008-12-01T07:37:00Z<p>Once you have an absolute (canonicalized) pathname, you can use either <strong>stat</strong>(2) or <strong>access</strong>(2) to see if the file exists.</p>
<p>With stat:</p>
<pre><code>struct stat st;
if (stat(path, &st)) {
// path doesn't exist
}
</code></pre>
<p>With access:</p>
<pre><code>if (access(path, F_OK)) {
// path doesn't exist
}
</code></pre>
http://stackoverflow.com/questions/329950/rationale-behind-return-0-as-default-value-in-c-c/330205#3302050Answer by joveha for Rationale behind return 0 as default value in C/C++joveha2008-12-01T07:16:13Z2008-12-01T07:16:13Z<p>Besides all the fine points made by previous posters, it also cleans up the code considerably when a function returns 0 on success.</p>
<p>Consider:</p>
<pre><code>if ( somefunc() ) {
// handle error
}
</code></pre>
<p>is much cleaner than:</p>
<pre><code>if ( !somefunc() ) {
// handle error
}
</code></pre>
<p>or:</p>
<pre><code>if ( somefunc() == somevalue ) {
// handle error
}
</code></pre>
http://stackoverflow.com/questions/799884/how-do-i-force-64-bit-integer-arithmetic-on-os-x/799906#799906Comment by joveha on How do I force 64 bit integer arithmetic on OS X?joveha2009-04-29T21:19:36Z2009-04-29T21:19:36ZI second this.
And to print you could use the 'PRI' macros defined in stdint.h
printf("a = %"PRIu64"\n");http://stackoverflow.com/questions/631516/strlen-on-non-null-terminated-char-string/637899#637899Comment by joveha on strlen() on non-null-terminated char string?joveha2009-03-12T15:09:55Z2009-03-12T15:09:55ZUnfortunately, this isn't part of standard C.http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338990#338990Comment by joveha on Why use hashing to create pathnames for large collections of files?joveha2008-12-04T15:25:52Z2008-12-04T15:25:52ZHash tables always have to account for the odd nameclash. Nothing new. It's still better than whatever else your choose as filenames.