User joveha - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:55:09Z http://stackoverflow.com/feeds/user/40668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1305297/concatenate-path-and-basename 2 Concatenate path and basename joveha 2009-08-20T10:40:41Z 2009-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#341588 1 Answer by joveha for How to use libapt (or libept) in debian-like system to list packages and get their infos? joveha 2008-12-04T18:16:17Z 2008-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#338990 0 Answer by joveha for Why use hashing to create pathnames for large collections of files? joveha 2008-12-03T22:30:02Z 2008-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-c 2 How to integration-test a network application in C joveha 2008-12-03T18:58:22Z 2008-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#338830 1 Answer by joveha for How to check if my ISP blocks port 25? joveha 2008-12-03T21:44:43Z 2008-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#334931 1 Answer by joveha for new dynamic tools analysis for C-code joveha 2008-12-02T18:21:13Z 2008-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#333784 1 Answer by joveha for which are the must-visit-daily websites for programmers? joveha 2008-12-02T12:15:48Z 2008-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#332691 0 Answer by joveha for gartrip calibration file format/generation joveha 2008-12-02T00:33:19Z 2008-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#332662 3 Answer by joveha for Where can I find an example unzipper using zlib? joveha 2008-12-02T00:14:35Z 2008-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#330568 1 Answer by joveha for Which books made you a better programmer ? joveha 2008-12-01T11:24:43Z 2008-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#317661 0 Answer by joveha for What are the best programming articles? joveha 2008-11-25T15:13:30Z 2008-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#330228 0 Answer by joveha for Does a function exist that searches the unix $PATH variable and returns true if a certain file exists? joveha 2008-12-01T07:37:00Z 2008-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, &amp;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#330205 0 Answer by joveha for Rationale behind return 0 as default value in C/C++ joveha 2008-12-01T07:16:13Z 2008-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#799906 Comment by joveha on How do I force 64 bit integer arithmetic on OS X? joveha 2009-04-29T21:19:36Z 2009-04-29T21:19:36Z I second this. And to print you could use the 'PRI' macros defined in stdint.h printf(&quot;a = %&quot;PRIu64&quot;\n&quot;); http://stackoverflow.com/questions/631516/strlen-on-non-null-terminated-char-string/637899#637899 Comment by joveha on strlen() on non-null-terminated char string? joveha 2009-03-12T15:09:55Z 2009-03-12T15:09:55Z Unfortunately, this isn't part of standard C. http://stackoverflow.com/questions/338880/why-use-hashing-to-create-pathnames-for-large-collections-of-files/338990#338990 Comment by joveha on Why use hashing to create pathnames for large collections of files? joveha 2008-12-04T15:25:52Z 2008-12-04T15:25:52Z Hash tables always have to account for the odd nameclash. Nothing new. It's still better than whatever else your choose as filenames.