User Dan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:12:20Zhttp://stackoverflow.com/feeds/user/8251http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/883717/c-opengl-application-as-a-web-service/883852#8838521Answer by Dan for C++ OpenGL application as a web serviceDan2009-05-19T16:41:14Z2009-05-19T16:41:14Z<p>How about using something like Flex to create a web-enabled 'control interface', with a server backend that streams the opengl rendering as video? Basically, you are redirecting keyboard/mouse input via the Flex app, and using it to display 'realtime' 3D activity using a standard movie component.</p>
<p>The devil's in the details, of course....</p>
http://stackoverflow.com/questions/338679/flash-and-corba/715200#7152001Answer by Dan for Flash and CORBADan2009-04-03T18:57:39Z2009-04-03T18:57:39Z<p>Until somebody writes a CORBA-compliant library for Flex (which you may care to do yourself ;), your best bet may be to build a 'wrapper' web service (accessible via the standard Flex WebService object) that acts as a bridge.</p>
http://stackoverflow.com/questions/105434/is-it-better-to-be-paid-by-the-project-or-hourly/105470#10547028Answer by Dan for Is it better to be paid by the project or hourly?Dan2008-09-19T20:44:17Z2009-03-20T15:32:26Z<p>I divide billing into two phases - research and development</p>
<p>The research phase is billed hourly, and builds a 'comfort-level' with the client as they aren't coughing up wads of cash up-front. During this phase, you work with the client to investigate their problem/needs and reach agreement on the exact nature and scope of the project.</p>
<p>The development phase is a fixed price per project, optionally split up into milestone deliverables.</p>
<p>The rationale behind my approach is this: clients like knowing costs up front, which leans them towards preferring fixed-price bids. However, entering into a project, both you and the client really do not have a solid-enough grasp on the nature and scope of the project, so there's more 'fear of the unknown' attached to a dollar amount (they're uncertain they're going to get what they need for their money).</p>
<p>Pulling clients in the other direction are piecemeal costs, which makes hourly rates attractive. The downside is that there's yet another 'fear of the unknown' here, namely that it's an open-ended invoice.</p>
<p>By using the hourly rate when you are working closest with the client, you give them comfort that they're paying for valuable productivity at a manageable rate. Once you have all agreed on the nature and scope of the project, the fixed price no longer holds the 'fear of the unknown', as they know (and have confidence in) precisely what you're going to do for them. The optional 'milestone deliverables' part increases confidence and client relations - I personally insist upon it to develop good business relationships.</p>
<p>The key (I believe) to the merit of this approach is simply this : you are adopting a proactive role in the management of the client's exposure to risk.</p>
http://stackoverflow.com/questions/582684/security-in-flex-is-it-possible-to-manipulate-downloaded-code-and-execute-web-s/619942#6199423Answer by Dan for Security in Flex – is it possible to manipulate downloaded code and execute web serviceDan2009-03-06T18:36:36Z2009-03-06T18:36:36Z<p>I honestly think you need to <em>seriously</em> reevaluate your development plans. As others here have so correctly stated, you <em>can not</em> rely on the client's integrity.</p>
<p>Simply put, there is <em>no such thing</em> as 'secure, trusted code' outside of the environment you have control over (namely, the server - even then, it's debatable). You have no idea of the software you're actually talking to, so no matter how you may 'tweak' an application-layer protocol, you still have no guarantees that a bad actor isn't simply deceiving you with a reverse-engineered implementation of your 'tweaked' protocol.</p>
<p>Your 'domain of trust' extends only to the web service api and no further. If your service cannot validate the integrity of its operations, then it is a badly designed service.</p>
http://stackoverflow.com/questions/121437/eclipse-netbeans-intellij-idea-ide-choice/121595#1215951Answer by Dan for eclipse netbeans intelliJ Idea - IDE choiceDan2008-09-23T15:05:52Z2008-09-30T15:20:34Z<p>Without wishing to get into an IDE 'war' ;)</p>
<p>I like Netbeans, it has a better 'feel' than Eclipse or Visual Studio. It feels, to me, like an IDE designed <em>by</em> software engineers, <em>for</em> software engineers. Of course, tastes vary, so expect plenty of similar responses in favor of Eclipse et al.</p>
<p>Netbeans' Java support is wonderful. Both the Netbeans framework (platform) and GUI designer are so well integrated into the software dev 'experience' that producing credible professional software is a pleasure. It relieves me of the nagging grunt-work behind manually creating the visual aspect of my software, allowing me to focus on the underlying software model required to actually do real work.</p>
<p>C/C++ support is fair, but could be better. Integration with gcc & gdb needs to tighten up, but this is an issue that simply requires time to iron out. It is not a show-stopper for me. I use Netbeans for my C/C++ development almost exclusively.</p>
<p>Although "Web 2.0" development is not my 'thing', I am very impressed with the high-quality tools provided for developing the entire web-software stack.</p>
<p>As for which IDE will overtake the other....I think they've both gained significant momentum. Deservedly so. Perhaps down the road, one of them will suffer a 'Borlandesque' collapse in its user-base, but for now there are plenty of people that are enthusiastic about both. They're both winners right now :)</p>
<p>Is that fair and even-handed enough?</p>
http://stackoverflow.com/questions/121757/how-do-you-implement-coroutines-in-c/121768#1217680Answer by Dan for How do you implement Coroutines in C++Dan2008-09-23T15:33:10Z2008-09-26T16:00:18Z<p>Does <a href="http://www.akira.ruc.dk/~keld/research/COROUTINE/" rel="nofollow">this</a> point you in the right direction? It seems like an elegant solution that has lasted the test of time.....it's 9 years old!</p>
<p>[update] I'm actually making successful use of it myself. Curiousity got the better of me, so I looked into this solution, and found it was a good fit for a problem I've been working on for some time!</p>
http://stackoverflow.com/questions/131303/linux-how-to-measure-actual-memory-usage-of-an-application-or-process/133520#1335200Answer by Dan for Linux: How to measure actual memory usage of an application or process?Dan2008-09-25T14:02:06Z2008-09-26T15:55:51Z<p>Another vote for Valgrind here, but I would like to add that you can use a tool like Alleyoop to help you interpret the results generated by valgrind.</p>
<p>I use the two tools all the time and always have lean, non-leaky code to proudly show for it ;)</p>
http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/105327#1053272Answer by Dan for How to create a GUID / UUID in Javascript?Dan2008-09-19T20:30:37Z2008-09-26T15:53:49Z<p>From <a href="http://en.wikipedia.org/wiki/Universally_Unique_Identifier" rel="nofollow">good ol' wikipedia</a> there's a link to a <a href="http://www.af-design.com/services/javascript/uuid/" rel="nofollow">javascript implementation</a> of UUID.</p>
<p>It looks fairly elegant, and could perhaps be improved by salting with a hash of the client's IP address. This hash could perhaps be inserted into the html document server-side for use by the client-side javascript.</p>
http://stackoverflow.com/questions/104442/memory-footprint-issues-with-java-jni-and-c-application/104472#1044720Answer by Dan for Memory footprint issues with JAVA, JNI, and C application Dan2008-09-19T18:48:57Z2008-09-26T15:51:07Z<p>Write a C test harness and use valgrind/alleyoop to check for leakage in your C code, and similarly use the java jvisualvm tool.</p>
http://stackoverflow.com/questions/95954/are-delegates-not-just-shorthand-interfaces/96142#961420Answer by Dan for Are delegates not just shorthand interfaces?Dan2008-09-18T19:41:00Z2008-09-26T15:50:46Z<p>Interfaces and delegates are two utterly different things, although I understand the temptation to describe delegates in interface-like terms for ease of understanding...however, not knowing the truth may lead to confusion down the line.</p>
<p>Delegates were inspired (partly) because of the black art of C++ method pointers being inadequate for certain purposes. A classic example is implementing a message-passing or event-handling mechanism. Delegates allow you to define a method signature without any knowledge of a class' types or interfaces - I could define a "void eventHandler(Event* e)" delegate and invoke it on any class that implemented it.</p>
<p>For some insight into this classic problem, and why delegates are desirable <a href="http://www.codeproject.com/KB/cpp/FastDelegate.aspx" rel="nofollow">read this</a> and then <a href="http://www.codeproject.com/KB/cpp/fd.aspx" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/94579/how-to-find-a-mentor/94669#946690Answer by Dan for How to find a mentor?Dan2008-09-18T17:25:53Z2008-09-23T14:42:28Z<p>Outside the workplace, or tight social groups, my impression is that a classic 'mentor' is hard to come by - the days of dedicating ones life to training under a master are somewhat lost.</p>
<p>Depending on how much of a 'cold start' you're launching from, you'll likely need to read a lot to familiarize yourself with one or two languages (maybe take a course?), and then I'd suggest getting involved with the Open Source (OSS) community. There, you'll be exposed to the full sourcecode of real, working products, that you can compile, run, play with, test, debug, and eventually contribute to - maybe little tweaks at first, but you'll soon find your feet.</p>
<p>I guess my ultimate answer is - the OSS community can be your 'mentor'.</p>
http://stackoverflow.com/questions/95909/client-view-of-everyone-looking-at-a-webpage/96009#960090Answer by Dan for Client View of Everyone Looking at a WebpageDan2008-09-18T19:25:52Z2008-09-23T14:41:33Z<p>How about having a tiny flash app on the page that streams a minuscule 'heartbeat' stream of data from the server....just enough to allow the server to know when a stream had been dropped, and hence when the client had navigated away from the page.</p>
http://stackoverflow.com/questions/96285/in-c-i-cannot-grasp-pointers-and-classes/96635#966350Answer by Dan for In C++ I Cannot Grasp Pointers and ClassesDan2008-09-18T20:35:09Z2008-09-23T14:40:11Z<p>In a sense, you can consider "pointers" to be one of the two most fundamental types in software - the other being "values" (or "data") - that exist in a huge block of uniquely-addressable memory locations. Think about it. Objects and structs etc don't really exist in memory, only values and pointers do. In fact, a pointer is a value too....the value of a memory address, which in turn contains another value....and so on.</p>
<p>So, in C/C++, when you declare an "int" (intA), you are defining a 32bit chunk of memory that contains a value - a number. If you then declare an "int pointer" (intB), you are defining a 32bit chunk of memory that contains the address of an int. I can assign the latter to point to the former by stating "intB = &intA", and now the 32bits of memory defined as intB, contains an address corresponding to intA's location in memory.</p>
<p>When you "dereference" the intB pointer, you are looking at the address stored within intB's memory, finding that location, and then looking at the value stored there (a number).</p>
<p>Commonly, I have encountered confusion when people lose track of exactly what it is they're dealing with as they use the "&", "*" and "->" operators - is it an address, a value or what? You just need to keep focused on the fact that memory addresses are simply locations, and that values are the binary information stored there.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/65909#659097Answer by Dan for Confessions of your worst WTF Moment. (What not to do.)Dan2008-09-15T19:20:49Z2008-09-15T19:20:49Z<p>Poured a glass of red wine into a laptop. The leaden slosh of horror I experienced has traumatized me to this day.</p>
<p>If you ever have the manic urge to totally deadify a laptop, I can heartily recommend it.</p>
http://stackoverflow.com/questions/65278/how-much-experience-should-you-have-before-trying-to-freelance/65399#653992Answer by Dan for How much experience should you have before trying to freelance?Dan2008-09-15T18:24:02Z2008-09-15T18:24:02Z<p>Play to your strengths. Honestly evaluate your core competencies. Remember that in this highly 'networked' age, it is entirely possible to leave a considerable stink in the wake of a project you fumble. That kind of stink can linger and turn others' noses in the future.</p>
<p>You can always expand your services as you 'grow'. Be conservative at first and concentrate on really doing a great job and satisfying the client. Earn reputation. As you gain experience and confidence over the years, you should find that you develop a mature instinct for assessing risk - taking on higher pressure, more lucrative, projects, that may involve a degree of 'sticking your neck out'.</p>
<p>There's no 'golden rule' that I'm aware of. If you sincerely believe you have something to offer, go for it! Fortune favors the brave etc ;-)</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/63982#639824Answer by Dan for Learning to write a compilerDan2008-09-15T15:32:15Z2008-09-15T16:38:28Z<p>Another important chunk of knowledge can be found in this free PDF (the newest 2008 edition is non-free)</p>
<p><a href="http://www.cs.vu.nl/~dick/PTAPG.html" rel="nofollow">Parsing Techniques - A Practical Guide</a></p>
<p>[update] Another nice free resource to introduce you to compiler construction</p>
<p><a href="http://www.cs.man.ac.uk/~pjj/farrell/compmain.html" rel="nofollow">Compiler Basics</a></p>
http://stackoverflow.com/questions/926613/organizing-emailsComment by Dan on Organizing emailsDan2009-05-29T15:38:53Z2009-05-29T15:38:53Z(I've been overdoing thedailywtf.com a tad, time for a nap)http://stackoverflow.com/questions/926613/organizing-emailsComment by Dan on Organizing emailsDan2009-05-29T15:37:48Z2009-05-29T15:37:48ZPrint out all the emails, put them one-by-one on a wooden table, photograph them, scan the photos, then put them on facebook.http://stackoverflow.com/questions/926613/organizing-emailsComment by Dan on Organizing emailsDan2009-05-29T15:35:26Z2009-05-29T15:35:26ZSelect all emails, hit reply, and ask them to resend in HTML format. Write a little script to put the contents on a website, then use Google ;)http://stackoverflow.com/questions/835537/how-to-deal-with-interruptions-at-work/835797#835797Comment by Dan on How to deal with interruptions at workDan2009-05-07T17:05:22Z2009-05-07T17:05:22Zlol...man....did "Office Space" hit the bullseye or what?! :Dhttp://stackoverflow.com/questions/835537/how-to-deal-with-interruptions-at-workComment by Dan on How to deal with interruptions at workDan2009-05-07T16:58:03Z2009-05-07T16:58:03ZDevelop an eye-twitch and talk about your gun collection ;)http://stackoverflow.com/questions/798545/what-is-the-java-operator-called-and-what-does-it-doComment by Dan on What is the Java ?: operator called and what does it do?Dan2009-04-28T16:34:45Z2009-04-28T16:34:45Zanswer_to_question = (recognize_operator) ? (social_acceptance) : (condescending_finger_wag)http://stackoverflow.com/questions/9773/do-programmers-need-a-unionComment by Dan on Do programmers need a union?Dan2009-04-28T16:27:40Z2009-04-28T16:27:40ZPeople can unionize all they want, and the 'union' will stand or fall on its own merits - where I object is when unions use coercive government power to make it illegal to work without being a member.
Personally, I don't consider software engineering as being suitable to unionization - too highly skilled and flexible. We already have groups like ACM and IEEE for 'standards', which serve a purpose.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423847#423847Comment by Dan on What's your favorite "programmer ignorance" pet peeve?Dan2009-03-16T19:08:32Z2009-03-16T19:08:32ZIsn't MVC on channel 271?http://stackoverflow.com/questions/650654/what-are-some-good-resources-for-designing-a-web-services-based-architecture-thatComment by Dan on What are some good resources for designing a web-services based architecture that can scale well?Dan2009-03-16T18:57:41Z2009-03-16T18:57:41ZYou have half a million people averaging 500 views per hour? Are they ADHD monkeys on crack? ;)http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424078#424078Comment by Dan on What's your favorite "programmer ignorance" pet peeve?Dan2009-01-08T19:08:07Z2009-01-08T19:08:07ZI would establish a set of booleans, each assigned from one of the evaluated conditions, followed by some logic to deal correctly with the implications of various permutations of results. Otherwise, your return value is based on the entirely arbitrary order in which the conditions were coded.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424078#424078Comment by Dan on What's your favorite "programmer ignorance" pet peeve?Dan2009-01-08T19:04:55Z2009-01-08T19:04:55ZWhen you have a sequence of if statements, each with a dependent return, how do you know that multiple conditions do not evaluate true? Have you formally proved that they are mutually exclusive?http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424078#424078Comment by Dan on What's your favorite "programmer ignorance" pet peeve?Dan2009-01-08T19:02:36Z2009-01-08T19:02:36ZI am a grave 'rule skeptic', and critically eye all 'rules' that pass under my nose...hammering most of them. I generally concur with Anthony Steele's view of the 'one return rule', although his 'multiple return' example raises issues all its own.http://stackoverflow.com/questions/103654/why-dont-languages-raise-errors-on-integer-overflow-by-default/103711#103711Comment by Dan on Why don't languages raise errors on integer overflow by default?Dan2008-12-17T15:49:43Z2008-12-17T15:49:43ZNot to mention the inherent hazard of relying on a platform-specific low-level detail like this. What happens if this is recompiled on a 64-bit platform? Eek.http://stackoverflow.com/questions/121757/how-do-you-implement-coroutines-in-c/121805#121805Comment by Dan on How do you implement Coroutines in C++Dan2008-09-26T15:59:45Z2008-09-26T15:59:45ZHere's a nice standard C++ solution that doesn't require involving Boost :
<a href="http://www.akira.ruc.dk/~keld/research/COROUTINE/" rel="nofollow">akira.ruc.dk/~keld/research/COROUTINE</a>http://stackoverflow.com/questions/131303/linux-how-to-measure-actual-memory-usage-of-an-application-or-process/131346#131346Comment by Dan on Linux: How to measure actual memory usage of an application or process?Dan2008-09-26T15:55:36Z2008-09-26T15:55:36ZTo interpret the results generated by valgrind, I can recommend alleyoop. It isn't too fancy, and tells you simply what you need to know to locate sources of leaks. A nice pair of utilities.