jdkoftinoff

355
reputation
108 views

Registered User

name jdkoftinoff
member for 1 year
seen Dec 1 at 7:31
website
location
age
Oct
9
comment Correct C++ code file extension? .cc vs .cpp
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.
Sep
19
awarded  Yearling
Aug
17
comment What’s your most controversial programming opinion?
@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
Aug
17
comment What’s your most controversial programming opinion?
@BrianPostow, the scary thing is when you realize that this also applies to medical doctors too!
Aug
12
comment Link-scope IPv6 Multicast packets suddenly not routable on a MacBook Pro?
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 --> ff02::1 16 bytes from fe80::21f:f3ff:fed8:3680%en0, icmp_seq=0 hlim=64 time=0.131 ms
Aug
6
comment How lazy can C++ global initialization be?
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.
Jul
31
comment Problem in hosting ActiveX on Vista (in a Visual Studio 6 C++ application)
Why do you need to still use VS6?
Jul
31
accepted 2D Lua Games on iPhone
Jul
30
answered 2D Lua Games on iPhone
Jul
30
comment Shipping Closed-Source Application for Linux
thank you, i did not know that.
Jul
30
answered Shipping Closed-Source Application for Linux
Jul
16
comment Writing a book and targeting PDF and HTML
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 "Wow! How did you get Word to do that?" ;-)
Jul
16
comment Defend PHP; convince me it isn’t horrible
I don't think the comparison was to slavery... perhaps it was a comparison to wrongful death? Every php project I've seen has "Important security vulerabilities" 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.
Jul
16
comment Defend PHP; convince me it isn’t horrible
I agree with nerdabilly - The documentation is not just poor but in some cases plain wrong: php.net/manual/en/function.date.php 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!
Jul
16
answered How to represent a 2-D data matrix in a database
Jul
8
answered How do I Unit Test for relative performance?