User jdkoftinoff - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:20:52Z http://stackoverflow.com/feeds/user/32198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1209771/2d-lua-games-on-iphone/1209863#1209863 0 Answer by jdkoftinoff for 2D Lua Games on iPhone jdkoftinoff 2009-07-30T23:03:53Z 2009-07-30T23:03:53Z <p>I'm trying out SIO2 as it apparently supports lua.</p> <ul> <li><a href="http://sio2interactive.com/GAMES.html" rel="nofollow">http://sio2interactive.com/GAMES.html</a></li> </ul> <p>While it is for 3D and may be overkill for 2d it looks pretty powerful. Just make your models in 2d and fix your camera position.</p> <p>--jdkoftinoff</p> http://stackoverflow.com/questions/1209674/shipping-closed-source-application-for-linux/1209809#1209809 6 Answer by jdkoftinoff for Shipping Closed-Source Application for Linux jdkoftinoff 2009-07-30T22:43:42Z 2009-07-30T22:43:42Z <p>The additional complexity is that you should not link glibc statically, because if you do, the libnss plugin system won't work properly since the glibc that is statically linked may require a different API or version to communicate with the dynamically loaded nss plugins.</p> <p>Follow the thread on trolltech about "Almost Completely Static Binaries":</p> <ul> <li><a href="http://lists.trolltech.com/qt-interest/2008-02/thread00925-0.html" rel="nofollow">http://lists.trolltech.com/qt-interest/2008-02/thread00925-0.html</a></li> </ul> <p>Unfortunately, it is not so straightforward when there are different glibc major versions involved. If you can allow for only a specific glibc major version, then you should link everything static EXCEPT glibc, and you can use the -Wl gcc option to pass options to 'ld' like '-Wl,-Bdynamic' and '-Wl,-Bstatic' for each individual library; see <a href="http://linux.sys-con.com/node/48565" rel="nofollow">http://linux.sys-con.com/node/48565</a> for examples.</p> <p>It is probably best to set up a hudson build server with a bunch of virtual machines running the different linux distributions that you DO want to explicity support and compile the binaries on them.</p> <p>--jdkoftinoff</p> http://stackoverflow.com/questions/1138777/how-to-represent-a-2-d-data-matrix-in-a-database/1138911#1138911 0 Answer by jdkoftinoff for How to represent a 2-D data matrix in a database jdkoftinoff 2009-07-16T16:54:35Z 2009-07-16T16:54:35Z <p>This is one of the reasons why postgresql supports arrays as a data type. See </p> <ul> <li><a href="http://www.postgresql.org/docs/8.4/static/functions-array.html" rel="nofollow">http://www.postgresql.org/docs/8.4/static/functions-array.html</a> and </li> <li><a href="http://www.postgresql.org/docs/8.4/static/arrays.html" rel="nofollow">http://www.postgresql.org/docs/8.4/static/arrays.html</a></li> </ul> <p>Where it shows you can use syntax like ARRAY[[1,2,3],[4,5,6],[7,8,9]] to define the values of a 3x3 matrix or integer val[3][3] to declare a column type to be a 3x3 matrix.</p> <p>Of course this is not at all standard SQL and is Postgresql specific. Other databases may have similar-but-slightly-different implementations.</p> http://stackoverflow.com/questions/1100237/how-do-i-unit-test-for-relative-performance/1100382#1100382 0 Answer by jdkoftinoff for How do I Unit Test for relative performance? jdkoftinoff 2009-07-08T20:30:17Z 2009-07-08T20:30:17Z <p>I do some time measurements on tests for code that is destined for a real time system where a correct answer that took too long to calculate is a failure. </p> <p>All I do is plot the delta cpu time that the test took over the recent builds. Note, CPU time not real time. The actual value doesn't matter too much - what matters is how much it changed. </p> <p>If I commit a change to an algorithm which significantly changed the run time for the test I can easily zoom in to the specific changeset that caused it. What I really care about are these points of interest - not necessarily the absolute values. There are quite often many tradeoffs in a realtime system and these can't always be represented to the test framework as a simple compare.</p> <p>Looking at absolute times and normalizing them at first seems reasonable but in reality the conversion between your system and the target system will be non-linear - for instance cache pressure, swap usage, disk speed on the target system etc may cause the time for the test to explode at a different threshold as your system.</p> <p>If you absolutely need a test that is accurate in this regard, duplicate the target system and use it as a test slave but in a similiar environment as you expect it to be in.</p> <p>In my case it may be actually downloading firmware to a DSP, remotely powercycling it, reading the response from a serial port or seeing no response because it crashed!</p> <p>--jeffk++</p> http://stackoverflow.com/questions/167165/what-c-c-functions-are-most-often-used-incorrectly-and-can-lead-to-buffer-overf/963089#963089 0 Answer by jdkoftinoff for What C/C++ functions are most often used incorrectly and can lead to buffer overflows? jdkoftinoff 2009-06-08T00:11:36Z 2009-06-08T00:11:36Z <p>An additional gotcha in C is the "strncpy()" function. Many people do not realize that it is free to return a string that is not null terminated.</p> http://stackoverflow.com/questions/903754/do-you-still-limit-line-length-in-code/905393#905393 1 Answer by jdkoftinoff for Do you still limit line length in code? jdkoftinoff 2009-05-25T05:00:46Z 2009-05-25T05:00:46Z <p>Unfortunately, I routinely have to deal with legacy source code where in a few cases there is a single line of source code that is more that 3 THOUSAND CHARACTERS WIDE! Seriously.</p> <p>These long lines are almost always C++ constructor functions, in the form of:</p> <pre><code>SomeClass::SomeClass( int a, int b, string c, double d, string e, double f ) : SomeBaseClass( a, b ), m_c( c ), m_d( d ), m_e(e), m_f(f), m_g(), m_h( a * e ), m_i( f*e ), m_j( c + " " e ), m_k(), m_l() { } </code></pre> <p>except with longer parameter names and longer member variable names and more of them.</p> <p>In cases like these, a simple maximum column width rule doesn't help at all. At least not after the fact.... The problem is that the class has too many concerns and that refactoring needs to occur... badly. I guess that if the rule of a maximum line width of 80, 120 or even 160 bytes were given, it would somehow compel the original programmer to realize that something deeper is wrong.</p> http://stackoverflow.com/questions/873658/how-can-i-hook-windows-functions-in-c-c/873705#873705 0 Answer by jdkoftinoff for How can I hook Windows functions in C/C++? jdkoftinoff 2009-05-17T01:31:03Z 2009-05-17T01:31:03Z <p>Take a look at <a href="http://easyhook.codeplex.com/" rel="nofollow">EasyHook</a> - it is more powerful than Detours and it is free.</p> http://stackoverflow.com/questions/873615/giving-c-application-a-http-web-server-functionality/873694#873694 0 Answer by jdkoftinoff for Giving C++ Application a HTTP Web Server Functionality jdkoftinoff 2009-05-17T01:22:47Z 2009-05-17T01:22:47Z <p>I am partial to the <a href="http://pocoproject.org" rel="nofollow">poco library</a> as a starting point.</p> http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/833046#833046 0 Answer by jdkoftinoff for What was your first programming book? jdkoftinoff 2009-05-07T05:46:44Z 2009-05-07T05:46:44Z <p><a href="http://apple2history.org/museum/books%5Fmanuals/a2%5Fredbook.html" rel="nofollow">The Apple 2 RED BOOK</a></p> <p>Sweet16!!</p> <p>f666g</p> <p>sta c030</p> http://stackoverflow.com/questions/818155/sqlite-alternatives-for-c/818194#818194 0 Answer by jdkoftinoff for SQLite Alternatives for C++ jdkoftinoff 2009-05-03T22:31:33Z 2009-05-03T22:31:33Z <p>If SQL syntax is not important to you, I recommend <a href="http://www.equi4.com/metakit/" rel="nofollow">MetaKit</a> - It is a slightly different approach but it quite powerful and I personally know of more than a few commercial projects which use it successfully, even on embedded systems.</p> <p><a href="http://support.articque.com/metakit/metakit%5Ftutorial.html" rel="nofollow">This Tutoria</a>l is quite helpful to get started.</p> http://stackoverflow.com/questions/705454/does-linux-guarantee-the-contents-of-a-file-is-flushed-to-disc-after-close/725742#725742 0 Answer by jdkoftinoff for Does Linux guarantee the contents of a file is flushed to disc after close() ? jdkoftinoff 2009-04-07T13:36:43Z 2009-04-07T13:36:43Z <p>You may be also interested in this <a href="http://tracker.firebirdsql.org/browse/CORE-1476" rel="nofollow">bug report</a> from the firebird sql database regarding fcntl( O_SYNC ) not working on linux.</p> <p>In addition, the question you ask implies a potential problem. What do you mean by writing to the disk? Why does it matter? Are you concerned that the power goes out and the file is missing from the drive? Why not use a UPS on the system or the SAN?</p> <p>In that case you need a journaling file system - and not just a meta-data journaling file system but a full journal even for all the data.</p> <p>Even in that case you must understand that besides the O/S's involvment, <a href="http://hardware.slashdot.org/article.pl?sid=05/05/13/0529252" rel="nofollow">most hard disks lie to you about doing an fsync.</a> - fsync just sends the data to the drive, and it is up to the individual operating system to know how to wait for the drive to flush its own caches.</p> <p>--jeffk++</p> http://stackoverflow.com/questions/678367/c-sockets-library-for-cross-platform/678390#678390 6 Answer by jdkoftinoff for C++ sockets library for cross-platform jdkoftinoff 2009-03-24T17:24:15Z 2009-03-24T17:24:15Z <p>The best socket library out there using modern c++ is:</p> <ul> <li><a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/boost%5Fasio.html" rel="nofollow">Boost::Asio</a></li> </ul> <p>However for older style C++ which is probably more familiar to java users, you may like the socket support in trolltech's QT library:</p> <ul> <li><a href="http://www.qtsoftware.com/products/library/modular-class-library#info%5Fnetworking" rel="nofollow">QT Networking</a></li> </ul> <p>--jdkoftinoff</p> http://stackoverflow.com/questions/647274/good-wiki-software-for-internal-company-use/647365#647365 3 Answer by jdkoftinoff for Good wiki software for internal company use? jdkoftinoff 2009-03-15T05:53:55Z 2009-03-15T05:53:55Z <p>I use or have used <a href="http://trac.edgewall.org/" rel="nofollow">trac</a>, <a href="http://www.mediawiki.org/" rel="nofollow">mediawiki</a>, and <a href="http://www.redmine.org/" rel="nofollow">redmine</a>. trac and redmine are more than just wiki's. MediaWiki is good but the upload/attachment of files was always clunky. With the proper plugins and LaTeX twiddling, I got mediawiki to generate quite nice PDF's directly from the wiki page via Latex. I like MediaWiki because since wikipedia is so big, you are guaranteed that updates will come, security fixes will be timely and most importantly, the process of upgrading will never render your existing wiki pages useless.</p> <p>The bigger problems with all of the wiki's that I've seen and tried, and wiki's in general are:</p> <ul> <li>You really do want the pages stored in a database or SVN repository or similar.</li> <li>The more your organization grows, the more you end up needing fine grained access control of individual pages.</li> <li>Many people who don't even know how to use Microsoft Word effectively will still complain about wiki formatting and will still just upload .DOC files to the wiki files area.</li> <li>You can install a wiki on your intranet but you CAN'T force your coworkers to use it effectively.</li> <li>Wiki's are like a garden. If no one uses it or no one manages it, it becomes stale or overgrown with pages like weeds that are out of date.</li> </ul> http://stackoverflow.com/questions/647345/does-anyone-follow-the-misra-c-specification/647355#647355 2 Answer by jdkoftinoff for Does anyone follow the MISRA C Specification? jdkoftinoff 2009-03-15T05:39:24Z 2009-03-15T05:39:24Z <p>While my projects are not decreed or required to comply with <a href="http://www.misra-cpp.org/" rel="nofollow">MISRA C++</a>, I try to make sure that my code is mostly compliant. There are only a few items in MISRA C++ that I disagree mildly with, and more than a few items that I didn't even know about!</p> <p>So in my mind MISRA is a good thing to at least be aware of.</p> http://stackoverflow.com/questions/634404/complete-solution-for-writing-mac-os-x-application-in-c/634753#634753 0 Answer by jdkoftinoff for Complete solution for writing Mac OS X application in C++ jdkoftinoff 2009-03-11T14:30:34Z 2009-03-11T14:30:34Z <p>Carbon on Mac OS X is effectively deprecated - it does not and will not support 64 bit apps.</p> <p>If you really really want to use c++, use <a href="http://labs.trolltech.com/blogs/category/qtcreator/" rel="nofollow">Qt Creator</a></p> <p>Which is now free and the trolltech SDK includes Qt 4.5, which while it is a c++ framework it internally uses Objective-C to interact with MAC OS X, so then you are not limited by Carbon.</p> <p>The downside is that the trolltech libraries are not standard on the mac, you must provide them with your app.</p> http://stackoverflow.com/questions/537915/drive-an-dac-from-a-stream-that-is-clocked-from-another-source/574154#574154 0 Answer by jdkoftinoff for Drive an DAC from a stream that is clocked from another source? jdkoftinoff 2009-02-22T01:58:25Z 2009-02-22T02:57:16Z <p>If you are concerned about fidelity, instead of dropping or duplicating samples, use a Sample Rate Converter. First, use timestamping to measure the relative frequency ratio between the source sample rate and your DAC's sample rate. Use this ratio to control the sample rate converter. A decent quality sample rate converter can give you 95 db S/N ratio. More computationally expensive algorithms can give you > 120 db S/N ratio.</p> <p>See:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Sample_rate_conversion" rel="nofollow">WIkiPedia's Sample rate conversion</a> article</li> <li><a href="http://www.mega-nerd.com/SRC/" rel="nofollow">libsamplerate</a></li> <li><a href="http://www.analog.com/" rel="nofollow">Analog Devices</a> has papers on high quality sample rate conversion algorithms</li> </ul> <p>--jdkoftinoff </p> http://stackoverflow.com/questions/37671/should-developers-worry-about-ageism/525178#525178 1 Answer by jdkoftinoff for Should developers worry about ageism? jdkoftinoff 2009-02-08T05:04:55Z 2009-02-08T05:04:55Z <p>I'm 39. I have been involved in hiring some people who were less than 26. I found that common negative traits amongst them included:</p> <ul> <li>Failure to design their code before writing it</li> <li>Failure to write documentation</li> <li>Failure to prove that their algorithms are correct</li> <li>Failure to study the problem domain</li> <li>Too quick to partially learn a tool, then stop learning it</li> <li>... And then using that tool for every problem they see, even if it is not a good fit</li> <li>Not good at understanding the 'Big Picture' of a system design</li> <li>Not good at understanding and maintaining old shipping code.</li> </ul> <p>Some of the positive traits were:</p> <ul> <li>Worked hard, often willing to put in overtime for free, even getting close to burnout</li> <li>Worked for much less $$$ than someone more experienced</li> <li>Get easily excited over a project</li> </ul> <p>Of course these are all generalizations, but with many of the younger people I've worked with they ring true. </p> <p>All applicants must prove to me that they have mature development skills. Mature development skills are less likely to be found in an immature developer.</p> <p>--jeffk++</p> http://stackoverflow.com/questions/520527/why-do-some-claim-that-javas-implementation-of-generics-is-bad/522764#522764 0 Answer by jdkoftinoff for Why do some claim that Java's implementation of generics is bad? jdkoftinoff 2009-02-07T00:21:08Z 2009-02-07T00:21:08Z <p>Another side effect of them being compile-time and not run time is that you can't call the constructor of the generic type. So you can't use them to implement a generic factory...</p> <pre><code> public class MyClass { public T getStuff() { return new T(); } } </code></pre> <p>--jeffk++</p> http://stackoverflow.com/questions/381082/can-dynamically-pluggable-modules-be-done-in-vhdl/381821#381821 1 Answer by jdkoftinoff for Can dynamically pluggable modules be done in VHDL? jdkoftinoff 2008-12-19T18:39:14Z 2008-12-19T18:39:14Z <p>If you are using Xilinx FPGA's, this can be supported in some of their chips.</p> <p>See: <a href="http://www.xilinx.com/publications/xcellonline/xcell_55/xc_reconfig55.htm" rel="nofollow">Benefits of Partial Reconfiguration with Xilinx</a></p> <p>--jeffk++</p> http://stackoverflow.com/questions/351314/stuck-on-a-iterator-implementation-of-a-trie/366180#366180 1 Answer by jdkoftinoff for Stuck on a Iterator Implementation of a Trie jdkoftinoff 2008-12-14T04:36:34Z 2008-12-14T04:36:34Z <p>You may want to see my modified trie implementations at:</p> <ul> <li><a href="http://opensource.jdkoftinoff.com/jdks/trac/wiki/jdktrie" rel="nofollow">jdkoftinoff's trie</a></li> </ul> <p>Specifically, you may find the <a href="http://groups.google.com/group/comp.lang.c++.moderated/browse_thread/thread/8770473601ae79d/813eb8d441025ef5" rel="nofollow">discussion</a> I had on comp.lang.c++.moderated about implementing iterators for trie's in a STL compliant way, which is a problem since all stl containers unfortunately are forced to use std::pair&lt;>, and the iterator therefor must contain the value instead of just a reference to the single node in the trie. </p> http://stackoverflow.com/questions/296618/what-is-the-most-common-use-of-the-trie-data-structure/296707#296707 1 Answer by jdkoftinoff for What is the most common use of the "trie" data structure? jdkoftinoff 2008-11-17T20:02:16Z 2008-11-17T20:02:16Z <p>I've been using modified trie's in my <a href="http://www.internetfilter.com/" rel="nofollow">Internet Filter</a> product since 1995. Probably most internet filters on the market utilize something like it. The advantage is that the time to find a match is related to the length of the match, not the number of items in the data structure. Also see my article: <a href="http://www.jdkoftinoff.com/main/Articles/Fast_Tree/" rel="nofollow">Fast Tree</a></p> <p>--jeffk++</p> http://stackoverflow.com/questions/287259/minimum-c-make-file-for-linux/289486#289486 0 Answer by jdkoftinoff for minimum c++ make file for linux jdkoftinoff 2008-11-14T08:18:35Z 2008-11-14T08:18:35Z <p>florin has a good starting point. I didn't like gnu autoconf so I started there and took the concept further and called it the MagicMakefile. I have 3 versions of it from simple to more complex:</p> <ul> <li><a href="http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV3" rel="nofollow">http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV3</a></li> <li><a href="http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV4" rel="nofollow">http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV4</a></li> <li><a href="http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV5" rel="nofollow">http://opensource.jdkoftinoff.com/jdks/trac/wiki/MagicMakefileV5</a></li> </ul> <p>Basically, it assumes you have a standard layout for the source files of your project and uses the wildcard function to create the makefile rules on the fly which are then eval'd, handling header file dependancies, cross compiling, unit tests, install, and packaging.</p> <p>jeff koftinoff</p> http://stackoverflow.com/questions/180601/using-super-in-c/180685#180685 1 Answer by jdkoftinoff for Using "super" in C++ jdkoftinoff 2008-10-07T22:22:43Z 2008-10-07T22:22:43Z <p>One additional reason to use a typedef for the superclass is when you are using complex templates in the object's inheritance.</p> <p>For instance:</p> <pre><code>template &lt;typename T, size_t C, typename U&gt; class A { ... }; template &lt;typename T&gt; class B : public A&lt;T,99,T&gt; { ... }; </code></pre> <p>In class B it would be ideal to have a typedef for A otherwise you would be stuck repeating it everywhere you wanted to reference A's members.</p> <p>In these cases it can work with multiple inheritance too, but you wouldn't have a typedef named 'super', it would be called 'base_A_t' or something like that.</p> <p>--jeffk++</p> http://stackoverflow.com/questions/175507/c-c-web-server-library/176237#176237 5 Answer by jdkoftinoff for C/C++ Web Server Library? jdkoftinoff 2008-10-06T21:19:45Z 2008-10-06T21:19:45Z <p>My current favourite is libpion: <a href="http://www.pion.org/projects/pion-network-library" rel="nofollow" title="pion-network-library">pion-network-library</a></p> <p>which effectively uses the nice boost.asio library for async sockets</p> http://stackoverflow.com/questions/151783/which-cpu-architectures-support-compare-and-swap-cas/151839#151839 4 Answer by jdkoftinoff for Which CPU architectures support Compare And Swap (CAS)? jdkoftinoff 2008-09-30T05:15:13Z 2008-09-30T05:15:13Z <p>Powerpc has more powerful primitives available: "lwarx" and "stwcx"</p> <p>lwarx loads a value from memory but remembers the location. Any other thread or cpu that touches that location will cause the "stwcx", a conditional store instruction, to fail.</p> <p>So the lwarx /stwcx combo allows you to implement atomic increment / decrement, compare and swap, and more powerful atomic operations like "atomic increment circular buffer index"</p> <p>--jeffk++</p> http://stackoverflow.com/questions/100048/i-need-to-join-two-lists-sort-them-and-remove-duplicates-is-there-a-better-way/101034#101034 0 Answer by jdkoftinoff for I need to join two lists, sort them and remove duplicates. Is there a better way to do this? jdkoftinoff 2008-09-19T10:46:52Z 2008-09-19T10:46:52Z <p>Wouldn't the remove-duplicates function operate better if the sort was applied before the remove-duplicates?</p> http://stackoverflow.com/questions/92455/how-can-i-write-a-lock-free-structure/93548#93548 1 Answer by jdkoftinoff for How can I write a lock free structure? jdkoftinoff 2008-09-18T15:24:40Z 2008-09-18T15:24:40Z <p>If you are writing your own lock-free data structures for a multi-core cpu, do not forget about memory barriers! Also, consider looking into <a href="http://en.wikipedia.org/wiki/Software_transactional_memory" rel="nofollow">Software Transaction Memory</a> techniques.</p> http://stackoverflow.com/questions/74391/proving-correctness-of-multithread-algorithms/93424#93424 2 Answer by jdkoftinoff for Proving correctness of multithread algorithms jdkoftinoff 2008-09-18T15:09:27Z 2008-09-18T15:09:27Z <p>"Principles of Concurrent and Distributed Programming", M. Ben-Ari<br> ISBN-13: 978-0-321-31283-9<br> They have in on safari books online for reading:<br> <a href="http://my.safaribooksonline.com/9780321312839" rel="nofollow">http://my.safaribooksonline.com/9780321312839</a></p> http://stackoverflow.com/questions/1545080/correct-c-code-file-extension-cc-vs-cpp/1545089#1545089 Comment by jdkoftinoff on Correct C++ code file extension? .cc vs .cpp jdkoftinoff 2009-10-09T18:00:45Z 2009-10-09T18:00:45Z I decided to switch from using .h to using .hpp for c++ headers; primarily because other tools like editors need to know as well - In addition when using precompiled headers with gcc, it defaults to using C for .h files and C++ for .hpp files unless you use the '-x c++-header' option when precompiling a .h file. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408396#408396 Comment by jdkoftinoff on What's your most controversial programming opinion? jdkoftinoff 2009-08-17T01:33:59Z 2009-08-17T01:33:59Z @david-basarab - C++ compilers are now much better! I use c++ not only for MIDI but for audio DSP algorithms - utilizing C++ templates makes it very powerful to make tunable compile time parameters such as buffer size and layout which allows for automatic SSE/altivec optimizations. The benefit of C++ now is not the language which is always a template-puzzle nowadays, but because the compilers available are better at optimizing real time functions than Haskell, Ada, Scheme and Scala are http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409448#409448 Comment by jdkoftinoff on What's your most controversial programming opinion? jdkoftinoff 2009-08-17T01:28:16Z 2009-08-17T01:28:16Z @BrianPostow, the scary thing is when you realize that this also applies to medical doctors too! http://stackoverflow.com/questions/1264948/link-scope-ipv6-multicast-packets-suddenly-not-routable-on-a-macbook-pro/1267359#1267359 Comment by jdkoftinoff on Link-scope IPv6 Multicast packets suddenly not routable on a MacBook Pro? jdkoftinoff 2009-08-12T16:55:41Z 2009-08-12T16:55:41Z funny, that didn't work, I had to use the '-I' option to specify ethernet address to ping6. jdks-mbp:~ jeffk$ ping6 ff02::1%en0 ping6: UDP connect: No route to host jdks-mbp:~ jeffk$ ping6 -I en0 ff02::1 PING6(56=40+8+8 bytes) fe80::21f:f3ff:fed8:3680%en0 --&gt; ff02::1 16 bytes from fe80::21f:f3ff:fed8:3680%en0, icmp_seq=0 hlim=64 time=0.131 ms http://stackoverflow.com/questions/1239235/how-lazy-can-c-global-initialization-be/1239457#1239457 Comment by jdkoftinoff on How lazy can C++ global initialization be? jdkoftinoff 2009-08-06T15:14:31Z 2009-08-06T15:14:31Z In addition, if the initialization occurs lazily then the compiler must generate code that checks to see if it is initialized and perform the initialization. This can wreak havoc when there are multiple threads - this code must be thread safe and c++ does not officially sanction threads - and when it is made thread safe, this thread safe check and possible initialization may be more computationally expensive than expected. http://stackoverflow.com/questions/1184175/problem-in-hosting-activex-on-vista-in-a-visual-studio-6-c-application Comment by jdkoftinoff on Problem in hosting ActiveX on Vista (in a Visual Studio 6 C++ application) jdkoftinoff 2009-07-31T19:07:03Z 2009-07-31T19:07:03Z Why do you need to still use VS6? http://stackoverflow.com/questions/1209674/shipping-closed-source-application-for-linux/1209809#1209809 Comment by jdkoftinoff on Shipping Closed-Source Application for Linux jdkoftinoff 2009-07-30T22:50:17Z 2009-07-30T22:50:17Z thank you, i did not know that. http://stackoverflow.com/questions/78319/writing-a-book-and-targeting-pdf-and-html/409970#409970 Comment by jdkoftinoff on Writing a book and targeting PDF and HTML jdkoftinoff 2009-07-16T23:17:03Z 2009-07-16T23:17:03Z I'm using Sphinx, not for a book yet but for other papers, and I love it and everyone who sees the PDF output says &quot;Wow! How did you get Word to do that?&quot; ;-) http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310939#310939 Comment by jdkoftinoff on Defend PHP; convince me it isn't horrible jdkoftinoff 2009-07-16T23:14:25Z 2009-07-16T23:14:25Z I don't think the comparison was to slavery... perhaps it was a comparison to wrongful death? Every php project I've seen has &quot;Important security vulerabilities&quot; every two weeks. I can understand some vulnerabilities are not straightforward but php, as a language, positively fosters poor programming practices and vulnerable coding techniques. There are so many other languages out there that are more efficient, safer AND easier to use. http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309386#309386 Comment by jdkoftinoff on Defend PHP; convince me it isn't horrible jdkoftinoff 2009-07-16T23:09:36Z 2009-07-16T23:09:36Z I agree with nerdabilly - The documentation is not just poor but in some cases plain wrong: <a href="http://www.php.net/manual/en/function.date.php" rel="nofollow">php.net/manual/en/function.date.php</a> you can't call date() multiple times in one function - the date changes at midnight and many of these examples would come up with a wrong date/time combo, and when I posted that observation they deleted my posting! http://stackoverflow.com/questions/374147/what-is-boost-missing/374167#374167 Comment by jdkoftinoff on What is Boost missing? jdkoftinoff 2009-05-21T20:28:37Z 2009-05-21T20:28:37Z I interpret this request like I prefer: strings with a program specified maximum size - so something like string s; cin &gt;&gt; s; can not fill all your virtual memory and bandwidth. http://stackoverflow.com/questions/818155/sqlite-alternatives-for-c/818384#818384 Comment by jdkoftinoff on SQLite Alternatives for C++ jdkoftinoff 2009-05-07T13:05:38Z 2009-05-07T13:05:38Z Yup, as long as you don't want to make a commercial closed source program that uses it... http://stackoverflow.com/questions/818155/sqlite-alternatives-for-c/818384#818384 Comment by jdkoftinoff on SQLite Alternatives for C++ jdkoftinoff 2009-05-05T21:34:48Z 2009-05-05T21:34:48Z Watch out for the license, it is more stringent than the GPLv2: <a href="http://www.opensource.org/licenses/sleepycat.php" rel="nofollow">opensource.org/licenses/sleepycat.php</a> : &quot;Redistributions in any form must be accompanied by information on how to obtain complete source code for the DB software and any accompanying software that uses the DB software. &quot; http://stackoverflow.com/questions/818155/sqlite-alternatives-for-c/818194#818194 Comment by jdkoftinoff on SQLite Alternatives for C++ jdkoftinoff 2009-05-03T22:58:04Z 2009-05-03T22:58:04Z Correct, but it is still heavily used, stable and useful. The open source license is MIT based so it allows you to modify and make your modifications closed source. http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652896#652896 Comment by jdkoftinoff on What is the worst real-world macros/pre-processor abuse you've ever come across? jdkoftinoff 2009-03-30T21:52:37Z 2009-03-30T21:52:37Z Haha I just ran into another variant of this on Windows. Calling a method called &quot;FillMemory()&quot; for a memory test class. Actual error: Not enough actual parameters for macro RtlFillmemory. see: <a href="http://msdn.microsoft.com/en-us/library/aa366561(VS.85).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>