User akauppi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:23:15Zhttp://stackoverflow.com/feeds/user/14455http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797203/how-to-load-an-external-javascript-script-to-pure-svg-document1How to load an external JavaScript script to (pure) SVG document?akauppi2009-11-25T14:22:07Z2009-11-25T14:26:48Z
<p>I have fairly large script within an .svg file and I'd like to get it out of the CDATA section into an external file. How to achieve this?</p>
<p>The HTML regular does not work:</p>
<pre><code><script type="text/javascript" src="Track_animation.js" />
</code></pre>
<p>The documentation I have been able to find only concerns with JS embedded within the SVG itself. Is use of external scripts even possible?</p>
<p>Using OS X and Safari 4.0.4 for rendering.</p>
http://stackoverflow.com/questions/1797203/how-to-load-an-external-javascript-script-to-pure-svg-document/1797215#17972151Answer by akauppi for How to load an external JavaScript script to (pure) SVG document?akauppi2009-11-25T14:24:00Z2009-11-25T14:26:48Z<p>Seems <a href="http://www.w3.org/TR/SVGMobile12/script.html#ScriptElementHrefAttribute" rel="nofollow"><code>xlink:href</code></a> works (keeping the entry here, since it might help others):</p>
<pre><code><script xlink:href="Track_animation.js" />
</code></pre>
http://stackoverflow.com/questions/1754146/how-to-get-handle-to-entries-within-svg-g-group0How to get handle to entries within SVG <g> group?akauppi2009-11-18T07:02:56Z2009-11-18T08:37:50Z
<p>Within a document, I can use <code>document.getElementById()</code> to get a handle to a particular unique element.</p>
<p>How can I do the same for a group, given as a parameter.</p>
<pre><code> <g id="right_hook">
<circle id="wheeltap" r="3" stroke-width="1" />
<path d="M 0 0 L 200 0 A 5,5 0 0,1 200,20" stroke-width="4" />
</g>
</code></pre>
<p>If I pass this group to a function:</p>
<pre><code> function some( hook ) {
var tap1= hook.wheeltap; // does not work
var tap2= hook.getElementById("wheeltap); // does not work
</code></pre>
<p>What does?</p>
<p>Reason I do this is I have multiple similar objects which I want to animate in JavaScript. I can of course give each of their subobjects globally unique names (s.a. "<code>right_hook_wheeltap</code>", "<code>left_hook_wheeltap</code>" but that sucks).</p>
http://stackoverflow.com/questions/176235/are-there-any-recent-lua-to-javascript-converters-or-interpreters-somewhere/1598695#15986950Answer by akauppi for Are there any recent Lua to JavaScript converters or interpreters somewhere?akauppi2009-10-21T04:18:04Z2009-10-21T04:18:04Z<p>One way of doing this could be using <a href="http://luaforge.net/projects/luasuper" rel="nofollow">LuaSub</a> and generating JavaScript instead of Lua output. This can be done, with reasonable effort (currently LuaSub does not do it).</p>
<p>Places where JS cannot be bent to Lua's requirements could be discovered at compile time, and cause an error.</p>
<p>I am going to be doing a lot of JS+SVG in the future and if the JS side turns out a headache this may be a thing to try. If anyone else wants to have a go, please do so. The LuaSub source is there for you.</p>
<p>Originally, LuaSub was crafted as a syntax extender for Lua 5.1, to introduce ease-of-use concepts (s.a. increment, type check) without braking compatibility with standard Lua or needing to patch it. It is similar to <a href="http://metalua.luaforge.net" rel="nofollow">MetaLua</a> in this (which has become more commonplace, it seems).</p>
http://stackoverflow.com/questions/1410226/is-there-any-use-for-c-throw-decoration1Is there any use for C++ throw decoration?akauppi2009-09-11T10:46:41Z2009-09-11T13:33:58Z
<p>I've started using C++ exceptions in a uniform manner, and now I'd like the compiler (g++) to check that there are no "exception leaks". The <code>throw</code> decoration should do this, like <code>const</code> does for constness of class methods.</p>
<p>Well, it doesn't.</p>
<p>Using <code>throw</code> is still documentary, but may even be dangerously misleading if others think a function cannot throw other exceptions than those listed in its documentation.</p>
<p>Can g++ somehow be persuaded to be more strict on its throw-checking, i.e. really making sure a function decorated as <code>throw()</code> will never-ever throw anything.</p>
<p>Edit:
Found <a href="http://stackoverflow.com/questions/88573/should-i-use-an-exception-specifier-in-c">this question</a> handling the subject widely.</p>
http://stackoverflow.com/questions/1383768/cloning-lua-state/1385209#13852091Answer by akauppi for Cloning Lua stateakauppi2009-09-06T08:26:03Z2009-09-06T08:26:03Z<p>There's also Lanes (<a href="http://luaforge.net/frs/?group%5Fid=265" rel="nofollow">download</a>, <a href="http://kotisivu.dnainternet.net/askok/bin/lanes/" rel="nofollow">docs</a>) and within the <a href="http://kotisivu.dnainternet.net/askok/bin/lanes/comparison.html" rel="nofollow">comparison</a> to all similar products I know.</p>
<p>About Rings the comparison sheet says:</p>
<blockquote>
<p>Rings offers separate Lua states, but
no multithreading. This makes it
simple, but it won't use more than one
CPU core.</p>
</blockquote>
<p><em>Note: The comparison sheet says Lanes would only marshal 'non-cyclic tables'. It does do cycles, and does marshall functions, upvalues etc. And it does the copies between Lua states as direct copies, not needing to stringify the contents in the middle. This makes it fast.</em></p>
http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1197381#11973811Answer by akauppi for Why aren't more applications written in multiple languages?akauppi2009-07-28T23:52:57Z2009-07-28T23:52:57Z<p>I've used a mix of C and Lua (or C++ and Lua) in recent projects. I feel it liberating to get two languages with <em>different pros and cons</em> to balance with. The Lua code gets mostly compiled (baked in) into the same exe, so the end result is just one binary.</p>
<p>Comments on difficulty of debugging this, and understanding all of it, are valid. It does keep the source line count low, though.</p>
<p>Apple's Objective-C does pretty much the same "amalgam" approach, but switching the mindset line by line. I find that difficulty. Lua and C(++) allows me to switch the mindset by source file.</p>
http://stackoverflow.com/questions/1192413/any-reason-to-not-ask-an-interviewee-to-write-code/1192475#11924751Answer by akauppi for Any reason to not ask an interviewee to write code?akauppi2009-07-28T07:46:28Z2009-07-28T07:46:28Z<p>I've been asked to do this once. And it was actually a good way of doing it.</p>
<p>The customer had given a short assignment and said the program shall be in Perl. That's all there was, really.</p>
<p>I made the initial version in Lua and ensured it worked; then rewrote everything in Perl (this is because I had never used Perl before) and sent it to them for review. I got the job.</p>
<p>So what I'd suggest is giving the assignment not in-situ but as an email before the actual meeting. This gives the interviewee time to think about the case and properly test the results. Most results you get <em>will</em> have bugs, which in itself tells a lot about the person.</p>
<p>You may also ask how long it took to make the code.</p>
<p>If wanting to have people code in-situ, one should give them their favorite editor and -say- 30 minutes time all by themselves. And Internet. And any known reference books they normally use. So... it might not be worth it?</p>
http://stackoverflow.com/questions/1092041/are-any-mp3-encoder-libraries-pic-microcontroller-compatible/1186929#11869290Answer by akauppi for Are any MP3 encoder libraries PIC microcontroller compatible?akauppi2009-07-27T07:41:52Z2009-07-27T12:12:01Z<p>I know this is not PIC, but...</p>
<p><a href="http://www.atmel.com/dyn/products/devices.asp?family%5Fid=682" rel="nofollow">AVR32</a> has new "UC3A3" members that are <em>intended</em> for MP3 playback. I'd at least have a look at that platform, first. They should be able to give reference designs.</p>
<p>Why PIC?</p>
<p>Addendum: AVR32 is rather powerful, and it gives utterly good kick-per-watt. I wouldn't see any problem using it for MP3 encoding (recording) as well.</p>
<p>This <a href="http://remotemediaconnect.googlecode.com/files/EVK1100%20-%20Audioplayer.pdf" rel="nofollow">Atmel Application Note</a> seems to mention MP3 encoding. <em>"The MP3 decoder source code is provided under GPL style license."</em></p>
<p><a href="http://www.embeddedrelated.com/usenet/embedded/show/90961-1.php" rel="nofollow">Here</a> and <a href="http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=55645" rel="nofollow">here</a> are some comments that may be relevant reading. </p>
http://stackoverflow.com/questions/1136716/web-development-with-version-control-workflow/1136782#11367822Answer by akauppi for Web-development with version control workflow.akauppi2009-07-16T10:45:05Z2009-07-16T10:45:05Z<p>I'd recommend looking at post commit hooks, like nickd suggests. You can even reject a commit, if it fails to build (say you generate HTML files from some 'source' files and if that build fails you can expect the person to fix that prior to a commit).</p>
<blockquote>
<ul>
<li>how do we make web-dev update after SVN commit?</li>
<li>how to deploy patches to production server?</li>
</ul>
</blockquote>
<p>Either automatically, via the hook, or you can consider a manual "svn update" on the production machines, which gives you control of when, which revision and so forth to take into use.</p>
<p>The <a href="http://svnbook.red-bean.com/" rel="nofollow">SVN book</a> is great reading. One can read only the relevant sections and come later back for more. Are you using trunk and tags - they are bread and butter for svn usage and release control.</p>
http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflows1Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T16:05:30Z2009-07-14T10:03:40Z
<p>I need to use MediaWiki at work. It used to be okay, but with sites s.a. StackOverflow, there's some user interface issues that simply don't do any more.</p>
<p>Most importantly, I'd want to see the live preview when typing. There shouldn't be need for a preview mode.</p>
<p>What Wikis are you using? Which would be the best for a recent (easy) Web experience?</p>
<p>Can MediaWiki be updated to have more recent UI behaviour?</p>
<p><strong><em>Addendum:</em></strong> </p>
<p>Two products seem to be above others, both "open source commercial" (= you get a skinny version free, standard and enterprise levels with more goodies cost).</p>
<ul>
<li><a href="http://www.mindtouch.com/products" rel="nofollow">MindTouch DekiWiki</a></li>
<li><a href="http://www.atlassian.com/software/confluence/" rel="nofollow">Confluence</a></li>
</ul>
<p>Judge for yourself. I sure found my liking in one of these. :)</p>
http://stackoverflow.com/questions/15871/getting-developers-to-use-a-wiki/1116441#11164410Answer by akauppi for Getting developers to use a wikiakauppi2009-07-12T17:10:45Z2009-07-12T17:10:45Z<p>If the developers still need to maintain 'real' documentation (s.a. Word documents), I see no way to meaningfully duplicate that on a Wiki.</p>
<ul>
<li>It does not make sense for people to write twice</li>
<li>Any duplicated data is prone to get out of sync, soon.</li>
</ul>
<p>What my current customer has done is move all this to Wiki. So I only document once, and I do it <em>on</em> the Wiki.</p>
<p>This is okay. Working with Wiki is more tedious than with Word, but at least the doc is online and others can mix-and-match with it.</p>
<p>Another working solution (imho) would be to store docs alongside the source, on subversion. But then the merging system needs to be able to cope with rich text etc. as well. I don't know, if any solution for that exists (other than using HTML or LaTex, which actually would not be bad picks).</p>
http://stackoverflow.com/questions/1024585/haskell-vs-procedural-programming-in-the-real-world/1063168#10631680Answer by akauppi for Haskell vs. procedural programming in the real worldakauppi2009-06-30T11:27:43Z2009-06-30T11:27:43Z<p>You can combine the use of functional programming <em>and</em> be pragmatic about the language.</p>
<p>All modern scripting languages s.a. JavaScript or Lua allow use of the functional paradigm.</p>
http://stackoverflow.com/questions/1063109/javascript-if-typeof-undefined-in-try-catch-space/1063150#10631500Answer by akauppi for Javascript if typeof ='undefined' in try/catch spaceakauppi2009-06-30T11:23:44Z2009-06-30T11:23:44Z<p>I would use a direct comparison without 'typeof':</p>
<pre><code>var vvv= 2;
alert( vvv !== undefined );
</code></pre>
<p>Be careful, though, to know whether you want to check for truliness (not false, null, undefined, "" or 0), against null, undefined, false or a combination of these.</p>
<p>If you simply want to see that the value has a value, the code I placed above should do.</p>
<p>As a suggestion, I have found this book <em>tremendous</em>: <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript - the Good Parts</a></p>
http://stackoverflow.com/questions/818533/env-clone-in-scons-doesnt-do-a-deep-copy/897363#8973630Answer by akauppi for env.Clone() in scons doesn't do a deep-copy.akauppi2009-05-22T11:10:01Z2009-05-22T11:51:15Z<p>I faced this today, and it seems like an SCons bug. Things used to work.</p>
<p>Facing this on: Ubuntu 9.04 x64, Python 2.6.2, SCons v1.2.0.r3842</p>
<p>Presuming it is a change of API between 0.9.8 and 1.2.0 here is how to overcome it. </p>
<p>Was:</p>
<pre><code> e2= env.Clone()
e2["CXXFLAGS"].remove( "-Werror" )
e2["CXXFLAGS"].append( "-Wno-error" )
</code></pre>
<p>Now (1.2.0):</p>
<pre><code> import copy
...
e2= env.Clone( CXXFLAGS= copy.deepcopy(env["CXXFLAGS"]) )
e2["CXXFLAGS"].remove( "-Werror" )
e2.AppendUnique( CXXFLAGS= "-Wno-error" )
</code></pre>
<p>Note that using the .Append() or .AppendUnique() methods treats the lists separately, not changing the original source. However, there does not seem to be such a method to remove a particular item from a list. This is why the '.remove()' is needed and that causes the headache. </p>
<p>Suggestions for easier methods or a pointer to knowing wheather this is a bug or feature of SCons 1.2.0 would be welcome.</p>
http://stackoverflow.com/questions/227507/how-to-read-an-open-office-spreadsheet/801272#8012720Answer by akauppi for How to read an Open Office spreadsheet?akauppi2009-04-29T07:34:29Z2009-04-29T07:34:29Z<p><em>Since the title does not mention Groovy (only question specifics does), I didn't want to make this a new question.</em></p>
<p>How to generally read an Open Office spreadsheet document? There are tools for creating one (ooo-python) but not for reading one. They are XML but just bluntly diving into that and trying to get the right logic of extracting the data I want seems so sub-optimal.</p>
<p>What I'd like is features similar to Excel COM support, but from a command line tool (or scripting language).</p>
http://stackoverflow.com/questions/790930/how-hard-is-it-to-get-a-cocoa-application-to-run-on-windows/790993#790993-4Answer by akauppi for How hard is it to get a Cocoa application to run on Windows?akauppi2009-04-26T14:53:29Z2009-04-26T14:53:29Z<p>I am pretty sure Apple has major parts of Cocoa for Windows, but they wouldn't give those out for obvious reasons. This is the way they have made Safari and iTunes for Windows to work (this is only my guessing, though).</p>
<p>As to your actual issue, no chance. Like it or not the current OS X API is way better and more consistent in things like graphics. There is a group of applications that almost cannot be done for Windows, but can so for OS X. Guess it's the different focus of the two OS'es that causes this. Or that some people can and some never learn.</p>
http://stackoverflow.com/questions/763656/should-we-still-be-optimizing-in-the-small/764035#7640352Answer by akauppi for Should we still be optimizing "in the small"? akauppi2009-04-18T19:39:49Z2009-04-18T19:39:49Z<p>An interesting observation I've had over the years is that <em>optimized</em> code of one generation back seems to actually be <em>counter-optimized</em> in the following generation. This is i.e. due to processor implementations changing so that if/else becomes a bottleneck in modern CPUs, where pipelines are deep. I would say clean, short, concise code is often the best end result. Where optimization really counts is in the data structures, to get them right and slim.</p>
http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/751738#7517385Answer by akauppi for What technologies are you using even though they are embarassingly out of date?akauppi2009-04-15T13:39:49Z2009-04-15T13:39:49Z<p>The C++ << operator for output.</p>
http://stackoverflow.com/questions/743458/how-does-const-correctness-help-write-better-programs/743486#7434865Answer by akauppi for How does const correctness help write better programs?akauppi2009-04-13T09:49:56Z2009-04-13T09:49:56Z<p>I bet this is a matter of mindsets. I'm working myself with long-time C++ people and have noticed they seem to think in C++ (of course they do!). It will take time for them to start seeing multiple answers to the ones they've grown familiar to have the 'stock' answers like const correctness. Give them time, and try to educate them gently.</p>
<p>Having said that, I do like the C++ 'const' way of guarantees. It's mainly promising the user of an interface that the object, data behind the pointer or whatever won't be messed with. I would see this as the #1 value of const correctness. #2 value is what it can allow the compiler in terms of optimization.</p>
<p>The problem is, of course, if the whole sw stack hasn't been built with const in mind from the ground up.</p>
<p>I'm sure C# has its own set of paradigms to do the same. This shows why it's so important to "learn one new (computing or natural) language a year". Simply to exercise one's mind of the other ways to see the world, and solve its problems.</p>
http://stackoverflow.com/questions/740710/is-it-possible-to-delete-both-ends-of-a-large-file-without-copying/740733#7407332Answer by akauppi for Is it possible to delete both ends of a large file without copying?akauppi2009-04-11T20:32:45Z2009-04-11T20:32:45Z<p>Maybe your file format allows to 'skip' the bytes, so that you could simply write over (i.e. with memory mapping) the necessary parts. This would of course still use up unnecessarily much disk space.</p>
http://stackoverflow.com/questions/736154/examples-of-open-source-high-quality-well-designed-python-software/737352#7373521Answer by akauppi for Examples of open source high quality, well designed python software?akauppi2009-04-10T11:21:06Z2009-04-10T11:21:06Z<p><a href="http://www.scons.org/" rel="nofollow">SCons</a>, the only Python application I've come to like and use.</p>
http://stackoverflow.com/questions/725138/how-to-detect-strict-aliasing-at-compile-time0How to detect 'strict aliasing' at compile time?akauppi2009-04-07T11:11:03Z2009-04-09T14:43:54Z
<p>'<a href="http://stackoverflow.com/questions/98650/what-is-the-strict-aliasing-rule">Strict aliasing</a>' optimization needs special care from the source code, s.a. using a union instead of pointer casts. Is there a way to detect using preprocessor directives (#if/else) whether the compiler is trying to do such optimizations?</p>
<p>I would like to maintain the old and non-strict-aliasing-prepared code path for processors and compilers that don't care. It seems faster.</p>
<p>Edit: <a href="http://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html#Common-Predefined-Macros" rel="nofollow">GCC predefined macros</a> does not seem to have anything about aliasing. In other words, I'm most interested on gcc 4.x, but also in a general solution (which does not seem to exist).</p>
http://stackoverflow.com/questions/726958/query-lua-userdata-type-from-c/733155#7331551Answer by akauppi for Query Lua userdata type from Cakauppi2009-04-09T07:20:48Z2009-04-09T07:20:48Z<p>You'll use <code>lua_getmetatable</code> and <code>lua_equal</code> for testing that the tables are the same.</p>
<p>In my opinion, Lua should give more support to this kind of type-extending things. As of now, it's really on the responsibility of the Lua/C(++) wrapper system to do that.</p>
<p>In a wrapper I've done recently (as part of a commercial project) I do <code>class::instance(L,index)</code> to get userdata pointers of a particular type. In other words, that method checks that it's userdata and that the metatable is also right. If not, it returns NULL.</p>
<p>The way Lua could help all this is if the metatable had a standard field for extended type information (s.a. <code>__type</code>). This could be used so that <code>type()</code> itself would return "userdata", "xxx" (two values, currently returning only one). This would remain compatible with most of current code. But this is just hypothetical (unless you do a custom type() and implement this on your own).</p>
http://stackoverflow.com/questions/704527/how-to-do-latin1-utf8-encoding-change-in-c-maybe-with-boost3How to do Latin1-UTF8 encoding change in C++ (maybe with Boost)?akauppi2009-04-01T08:08:42Z2009-04-08T20:04:57Z
<p>My source base is mostly using UTF8, but some older library has Windows Latin1 encoded strings hardcoded within it.</p>
<p>I was hoping Boost would have a clear conversion feature, but I did not find such. Do I really need to hand-code such a commonplace solution? </p>
<p>Looking for a portable solution, running on Linux.</p>
<p>(<a href="http://stackoverflow.com/questions/148403/utf8-to-from-wide-char-conversion-in-stl">This Q</a> is similar, but not quite the same)</p>
<p><strong>Edit:</strong> ICU seems to be the right answer, but it's a bit overkill for my needs. I ended up doing string-replace for the known few extended chars that were used.</p>
http://stackoverflow.com/questions/719978/lua-registry-not-visible-from-new-states/721991#7219912Answer by akauppi for Lua registry not visible from new statesakauppi2009-04-06T15:29:58Z2009-04-06T15:29:58Z<p>To use multiple Lua universes (states) you might find <a href="http://luaforge.net/frs/?group%5Fid=265" rel="nofollow">Lua Lanes</a> worth a look. There is also a rough <a href="http://kotisivu.dnainternet.net/askok/bin/lanes/#comparisons" rel="nofollow">comparison</a> of multi-state Lua solutions.</p>
<p>Lanes actually does provide the 'hidden state' that Javier mentions. It also handles locks needed to access such shared data and the ability to wait for such data to change. And it copies anything that is copyable (including functions and closures) between your application states and the hidden state.</p>
http://stackoverflow.com/questions/720652/is-it-necesary-to-document-your-code-reviews/720671#7206710Answer by akauppi for Is it necesary to document your Code Reviews?akauppi2009-04-06T08:55:14Z2009-04-06T08:55:14Z<p>Leaving things unlisted is okay if the attendees generally trust the agreed changes to be made, and tend to agree what the agreement on each issue was, in the first place.</p>
<p>A light approach could be to mark each case as "noticed" (= notified but no action from the author expected), "to be changed" and so on. This would mean all attendees also are in sync about what really is going to be done on a single incident.</p>
<p>Documenting too much is sure to make code reviews tedious and burocratical. Which way is best would also have to do with the kind of the project (banking/space vs. something not-so-critical) and whether the people work in the same company or if it's a subcontracting review (= money will be paid if/when it passes).</p>
http://stackoverflow.com/questions/83962/do-i-have-a-gcc-optimization-bug-or-a-c-code-problem/720468#7204680Answer by akauppi for Do I have a gcc optimization bug or a C code problem?akauppi2009-04-06T07:23:33Z2009-04-06T07:23:33Z<p>Aside the pointer alignments, you're expecting that sizeof(size_t)==sizeof(float). I don't think it is (on 64-bit Linux size_t should be 64 bits but float 32 bits), meaning your code will read something uninitialized.</p>
http://stackoverflow.com/questions/646633/low-level-lua-interpreter/648773#6487733Answer by akauppi for Low-level Lua interpreterakauppi2009-03-15T23:10:24Z2009-03-15T23:10:24Z<p>If you go the OS threading way, please have a look at <a href="http://luaforge.net/frs/?group%5Fid=265" rel="nofollow">Lua Lanes</a>. I would see it the perfect solution to what you're trying to achieve (= throw one addon module to the mix and you'll be making clear, understandable and simple code with multithreading seamlessly built in). </p>
<p>Please tell us how your issue got solved. :)</p>
http://stackoverflow.com/questions/640642/how-do-you-copy-a-lua-table-by-value/648765#6487651Answer by akauppi for How do you copy a Lua table by value?akauppi2009-03-15T23:05:28Z2009-03-15T23:05:28Z<p>I think the reason why Lua doesn't have 'table.copy()' in its standard libraries is because the task is not precise to define. As shown already here, one can either make a copy "one level deep" (which you did), a deepcopy with or without caring of possible duplicate references. And then there's metatables.</p>
<p>Personally, I would still like them to offer a built-in function. Only if people wouldn't be pleased with its semantics, they would need to go do it themselves. Not very often, though, one actually has the copy-by-value need.</p>
http://stackoverflow.com/questions/1754146/how-to-get-handle-to-entries-within-svg-g-groupComment by akauppi on How to get handle to entries within SVG <g> group?akauppi2009-11-19T16:36:26Z2009-11-19T16:36:26ZI can use the most recent browsers; and even be browser specific. Thanks for everyone's help. Eventually I will use jQuery but I want to understand it without, first.http://stackoverflow.com/questions/1055387/throw-keyword-in-functions-signature-cComment by akauppi on Throw keyword in function's signature (C++)akauppi2009-09-11T11:05:16Z2009-09-11T11:05:16ZAnd <a href="http://stackoverflow.com/questions/88573/should-i-use-an-exception-specifier-in-c" rel="nofollow" title="should i use an exception specifier in c">stackoverflow.com/questions/88573/…</a>http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1263751#1263751Comment by akauppi on Is there a generally accepted idiom for indicating C++ code can throw exceptions?akauppi2009-09-11T11:03:27Z2009-09-11T11:03:27ZNo, you can't.
The syntax allows you to <i>document</i> what you <i>think</i> it will throw, but this is not enforced by the compiler. See <a href="http://stackoverflow.com/questions/88573/should-i-use-an-exception-specifier-in-c" rel="nofollow" title="should i use an exception specifier in c">stackoverflow.com/questions/88573/…</a>
I feel this is actually worse than not having such throw decoration at all. Now readers of the code will think that is a guarantee, when it essentially is only a comment.
:(http://stackoverflow.com/questions/1383768/cloning-lua-stateComment by akauppi on Cloning Lua stateakauppi2009-09-06T08:18:27Z2009-09-06T08:18:27ZMany people write Lua wrong, it's not an acronym. Would you kindly modify the above so that it follows the standard naming. We don't write PYTHON either. Lua just happens to be a three-letter name.
See: <a href="http://www.lua.org/about.html" rel="nofollow">lua.org/about.html</a>http://stackoverflow.com/questions/1200385/is-there-a-way-to-determine-parameter-values-passed-to-a-lua-function-from-within/1203620#1203620Comment by akauppi on Is there a way to determine parameter values passed to a Lua function from within a call to the debug hook handling the 'call' event?akauppi2009-07-30T11:53:04Z2009-07-30T11:53:04Z(to Ashley:) And don't expect to necessarily get the local parameter's names or anything like that. Locals don't have names, once they're through the parser.
One gotcha I've had with the debug API is that flags are CaSe sensitive. <a href="http://www.lua.org/manual/5.1/manual.html#lua_getinfo" rel="nofollow">lua.org/manual/5.1/…</a>
If you use S and/or L, make sure they are in capitals. Especially for S this is not clear to see on the documentation.http://stackoverflow.com/questions/1201051/floating-point-precision/1204926#1204926Comment by akauppi on floating point precisionakauppi2009-07-30T07:21:43Z2009-07-30T07:21:43ZI would suggest changing this to be the "blessed" answer.http://stackoverflow.com/questions/1201051/floating-point-precision/1201088#1201088Comment by akauppi on floating point precisionakauppi2009-07-30T07:21:03Z2009-07-30T07:21:03ZGave you a -1 because this case is obvious, and not needing "binary search". Greg Hewgill has the right answer, imho.http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflowsComment by akauppi on Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T18:11:19Z2009-07-12T18:11:19Z<a href="http://www.mindtouch.com/Products/Demo_Gallery" rel="nofollow">mindtouch.com/Products/Demo_Gallery</a> looks reeeeeally good.http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflowsComment by akauppi on Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T17:04:14Z2009-07-12T17:04:14ZWikiWig has been mentioned here:
<a href="http://stackoverflow.com/questions/15871/getting-developers-to-use-a-wiki" rel="nofollow" title="getting developers to use a wiki">stackoverflow.com/questions/15871/…</a>http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflowsComment by akauppi on Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T16:32:36Z2009-07-12T16:32:36Z<a href="http://www.mediawiki.org/wiki/Manual:Live_preview" rel="nofollow">mediawiki.org/wiki/Manual:Live_preview</a>http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflows/1116348#1116348Comment by akauppi on Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T16:29:10Z2009-07-12T16:29:10ZThanks! Only heard about that now. Will be glad to try out the beta.http://stackoverflow.com/questions/1116309/is-there-a-wiki-with-a-web-2-0-ui-like-stackoverflowsComment by akauppi on Is there a Wiki with a Web 2.0 UI (like StackOverflow's) ?akauppi2009-07-12T16:24:18Z2009-07-12T16:24:18ZMediaWiki 1.5 alpha 1 seems to have something for this itch:
* 'live preview' reduces preview reload burden on supported browsershttp://stackoverflow.com/questions/1053253/can-lua-be-used-for-application-development/1053267#1053267Comment by akauppi on Can Lua be used for application development?akauppi2009-06-30T05:38:31Z2009-06-30T05:38:31ZVB.NET is essentially dead. And even if not dead, it never was the #1 child in the .NET world. His choice would be C# (and no scripting, but nice IDE) or maybe C# for the user interface but Lua for scripting its dynamic behaviour. I'd go for Qt + Lua.http://stackoverflow.com/questions/1053253/can-lua-be-used-for-application-development/1053279#1053279Comment by akauppi on Can Lua be used for application development?akauppi2009-06-30T05:36:17Z2009-06-30T05:36:17ZI second tkadlubo on this.http://stackoverflow.com/questions/1053253/can-lua-be-used-for-application-development/1053280#1053280Comment by akauppi on Can Lua be used for application development?akauppi2009-06-30T05:34:54Z2009-06-30T05:34:54ZI think there was a Qt binding mentioned somewhere, lately. I'd have a look at that. <a href="http://torch5.sourceforge.net/manual/qt/index.html" rel="nofollow">torch5.sourceforge.net/manual/qt/…</a>