User TraumaPony - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T13:05:43Z http://stackoverflow.com/feeds/user/18658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/226282/what-are-the-most-hardcore-optimisations-youve-seen 12 What are the most hardcore optimisations you've seen? TraumaPony 2008-10-22T15:25:55Z 2009-12-04T21:25:28Z <p>I'm not talking about algorithmic stuff (eg use quicksort instead of bubblesort), and I'm not talking about simple things like loop unrolling.</p> <p>I'm talking about the <em>hardcore</em> stuff. Like <a href="http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html" rel="nofollow">Tiny Teensy ELF</a>, <a href="http://catb.org/jargon/html/story-of-mel.html" rel="nofollow">The Story of Mel</a>; practically everything in the demoscene, and so on.</p> http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion 4 Why do people have trouble learning recursion? TraumaPony 2008-10-23T15:36:30Z 2009-11-19T03:34:47Z <p>As per the title. Why do people have a hard time grasping a function that calls itself? It took most of my friends a week or two to <em>get</em> it.</p> http://stackoverflow.com/questions/145157/nintendo-ds-homebrew-with-ada 1 Nintendo DS homebrew with Ada? TraumaPony 2008-09-28T03:41:01Z 2009-11-05T22:15:44Z <p>Note: I know very little about the GCC toolchain, so this question may not make much sense.</p> <p>Since GCC includes an Ada front end, and it can emit ARM, and devKitPro is based on GCC, is it possible to use Ada instead of C/C++ for writing code on the DS?</p> <p>Edit: It seems that the target that devKitARM uses is arm-eabi.</p> http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows 13 What's a good Common Lisp implementation for Windows? TraumaPony 2008-09-21T06:25:02Z 2009-10-28T13:10:22Z <p>What's your favourite?</p> <p>See also <a href="http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net">this related question.</a></p> http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net 10 Are there any Common Lisp implementations for .Net? TraumaPony 2008-09-21T07:00:30Z 2009-10-03T00:53:17Z <p>Related to <a href="http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows">my other CL question</a>.</p> http://stackoverflow.com/questions/220609/what-got-you-started-in-programming 5 What got you started in programming? TraumaPony 2008-10-21T02:51:51Z 2009-09-30T15:46:29Z <p>Why did you get into programming, and how old were you? It'd certainly be interesting to see the reasons for a large sample of programmers.</p> http://stackoverflow.com/questions/216025/gcc-with-visual-studio 6 GCC with Visual Studio? TraumaPony 2008-10-19T04:41:14Z 2009-08-31T22:18:28Z <p>How hard would it be to use GCC instead of VC++ from within Visual Studio 2008? Obviously, some of the keywords won't match, and some may not get syntax highlighting (unless you made a new language service).</p> <p>Is this what a 'makefile project' is for, pretty much?</p> http://stackoverflow.com/questions/366225/where-is-ada-used-apart-from-safety-critical-software 10 Where is Ada used (apart from safety-critical software)? TraumaPony 2008-12-14T06:29:32Z 2009-08-24T19:15:11Z <p>When one thinks of Ada, one usually thinks of avionics.</p> <p>What I'm interested in are some other applications of Ada? Where is it used? Are there any shipped applications written in Ada?</p> <p>For example, are there CRUD apps written in it? Or games? Etc.</p> http://stackoverflow.com/questions/228743/cuda-for-net 9 CUDA for .net? TraumaPony 2008-10-23T06:40:31Z 2009-08-24T10:53:40Z <p>I know that there are a lot of CUDA language bindings, such as PyCUDA, but are there any <em>good</em> bindings for .Net? The only one I've seen is <a href="http://www.gass-ltd.co.il/en/products/cuda.net/" rel="nofollow">this one</a>, but I'd like to know if there are any others.</p> http://stackoverflow.com/questions/236290/can-garbage-collection-coexist-with-explicit-memory-management 6 Can garbage collection coexist with explicit memory management? TraumaPony 2008-10-25T12:01:14Z 2009-08-15T00:10:20Z <p>For example, say one was to include a 'delete' keyword in C# 4. Would it be possible to guarantee that you'd never have wild pointers, but still be able to rely on the garbage collecter, due to the reference-based system?</p> <p>The only way I could see it possibly happening is if instead of references to memory locations, a reference would be an index to a table of pointers to actual objects. However, I'm sure that there'd be some condition where that would break, and it'd be possible to break type safety/have dangling pointers.</p> <p>EDIT: I'm not talking about just .net. I was just using C# as an example.</p> http://stackoverflow.com/questions/393490/where-can-i-find-a-good-fft-sample-implementation-tutorial 1 Where can I find a good FFT sample implementation/tutorial? TraumaPony 2008-12-26T04:55:34Z 2009-08-13T00:30:46Z <p>I've been looking everywhere for a sample Fast Fourier Transform implementation/tutorial in (preferably) C#.</p> <p>However, every one I've found has been poor at explaining what's going on, and/or poorly commented; or they assume that you already know the FFT algorithm, or they're tutorials about how to USE FFTs.</p> <p>Anyone know of a good sample/tutorial? </p> http://stackoverflow.com/questions/216160/are-we-in-a-functional-programming-fad 10 Are we in a functional programming fad? TraumaPony 2008-10-19T08:02:07Z 2009-07-13T00:00:13Z <p>I use both functional and imperative languages daily, and it's rather amusing to see the surge of adoption of functional languages from both sides of the fence. It strikes me, however, that it looks rather like a fad.</p> <p>Do you think that it's a fad? I know the reasons for using functional languages at times and imperative languages in others, but do you really think that this trend will continue due to the cliched "many-core" revolution that has been only "18 months from now" since 2004 (sort of like communism's Radiant Future), or do you think that it's only temporary; a fascination of the mainstream developer that will be quickly replaced by the next shiny idea, like Web 3.0 or GPGPU?</p> <p>Note, that I'm not trying to start a flamewar or anything (sorry if it sounds bitter), I'm just curious as to whether people will think functional or functional/imperative languages will become mainstream.</p> <p>Edit: By mainstream, I mean, equal number of programmers to say, Python, Java, C#, etc</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114360#114360 192 Answer by TraumaPony for What are Code Smells? What is the best way to correct them? TraumaPony 2008-09-22T11:40:07Z 2009-06-26T03:43:56Z <p><strong>Methods with a ridiculous (e.g. 7+) amount of parameters.</strong> This usually means that there should be a new class introduced (which, when passed, is called an indirect parameter.)</p> http://stackoverflow.com/questions/233707/is-agile-programming-too-ad-hoc-for-safety-critical-systems 5 Is Agile programming too... ad hoc for safety-critical systems? TraumaPony 2008-10-24T14:16:20Z 2009-05-13T13:07:03Z <p>For example, would it be incredibly dangerous to do it for avionics software?</p> <p>Note, I don't completely understand Agile.</p> http://stackoverflow.com/questions/110928/is-there-a-valid-reason-for-enforcing-a-maximum-width-of-80-characters-in-a-code 37 Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age? TraumaPony 2008-09-21T12:43:03Z 2009-04-14T14:48:02Z <p>Seriously. On a 22" monitor, it only covers maybe a quarter of the screen. I need some ammo to axe down this rule.</p> <p>Edit: I'm not saying that there shouldn't be a limit; I'm just saying, 80 characters is very small.</p> http://stackoverflow.com/questions/609831/why-cant-i-initialize-my-fields-in-my-structs/609887#609887 0 Answer by TraumaPony for Why can't I initialize my fields in my structs? TraumaPony 2009-03-04T09:44:05Z 2009-03-04T09:44:05Z <p>It's for performance. When you new up a struct with the default constructor, all it does is allocate however many bytes on the stack and initialises them to 0.</p> http://stackoverflow.com/questions/609076/the-role-of-scripting-languages-in-game-programming/609187#609187 0 Answer by TraumaPony for The role of scripting languages in game Programming TraumaPony 2009-03-04T04:09:30Z 2009-03-04T04:09:30Z <p>As has been said before; use scripting for game logic, and C++ for game functionality. An example would be scripting a game mode, but using C++ for rendering.</p> http://stackoverflow.com/questions/119227/good-ada-ide 1 Good Ada IDE? TraumaPony 2008-09-23T05:04:15Z 2009-03-02T22:20:31Z <p>What would be a good (free) Ada IDE for either Linux or Windows?</p> http://stackoverflow.com/questions/597259/when-are-structs-the-answer/597276#597276 2 Answer by TraumaPony for When are structs the answer? TraumaPony 2009-02-28T01:12:51Z 2009-02-28T01:25:09Z <p>Basically, don't make them too big, and pass them around by ref when you can. I discovered this the exact same way... By changing my Vector and Ray classes to structs.</p> <p>With more memory being passed around, it's bound to cause cache thrashing.</p> http://stackoverflow.com/questions/590007/python-or-ironpython/590024#590024 5 Answer by TraumaPony for Python or IronPython TraumaPony 2009-02-26T10:47:34Z 2009-02-26T10:47:34Z <p>Well, it's generally faster.</p> <p>Can't use modules, and only has a subset of the library.</p> <p><a href="http://www.codeplex.com/IronPython/Wiki/View.aspx?title=Differences" rel="nofollow">Here's a list of differences.</a></p> http://stackoverflow.com/questions/577145/xna-embed-directx-control-in-a-form/577155#577155 3 Answer by TraumaPony for XNA - Embed DirectX control in a form? TraumaPony 2009-02-23T10:27:12Z 2009-02-23T10:36:19Z <p>Yes, it's possible. There's a <a href="http://creators.xna.com/en-US/sample/winforms_series1" rel="nofollow" title="the XNA site">sample</a> that does just this.</p> http://stackoverflow.com/questions/568266/c-for-embedded-systems/568316#568316 0 Answer by TraumaPony for C# for embedded systems? TraumaPony 2009-02-20T04:51:40Z 2009-02-20T04:51:40Z <p>What would be interesting to do is create a 'compiler' that turns a .Net Micro Framework assembly into a native embedded assembly language. It'd have to inject memory management calls into the methods, though. Alternatively, instead of trying to 'guess' where they go, you could have a psuedomethod, say, System.Memory.Delete(), and use that as a sign to insert deletion there.</p> <p>It would be an interesting thing to try with the Phoenix framework; I might just try it out next holidays.</p> http://stackoverflow.com/questions/561485/how-do-you-tell-that-your-unit-tests-are-correct/563526#563526 0 Answer by TraumaPony for How do you tell that your unit tests are correct? TraumaPony 2009-02-19T00:59:56Z 2009-02-19T00:59:56Z <p>Code review?</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114378#114378 177 Answer by TraumaPony for What are Code Smells? What is the best way to correct them? TraumaPony 2008-09-22T11:43:20Z 2009-02-14T17:53:49Z <p><strong>Avoid abbreviations.</strong></p> <p>Variable names such as <code>x</code>, <code>xx</code>, <code>xx2</code>, <code>foo</code> etc (obviously if you are using Cartesian coordinates, 'x' is perfectly appropriate.) Rename.</p> http://stackoverflow.com/questions/230321/is-there-any-way-to-trick-the-net-jit-compiler-into-running-another-method 4 Is there any way to trick the .net JIT compiler into running another method? TraumaPony 2008-10-23T16:02:01Z 2009-02-05T07:27:26Z <p>Ok, say that my application is emitting (x86) instructions into memory, making the page executable, etc. Is there any way of altering the method stub of an un-JITted method to point to my emitted instruction stream?</p> <p>E.g.:</p> <p>Suppose I have created an x86 instruction stream in memory, which does something arbitrary. Now, further suppose that I have a method 'int Target()'. I haven't called it yet, so it hasn't been compiled. Is there any way to:</p> <ol> <li>Get the pointer to Target's stub</li> <li>Make it point to my emitted instruction stream.</li> </ol> <p>I realise that practically every single security feature of .Net is designed to <em>prevent</em> hijacking like this. But is it possible through, say, the hosting API?</p> http://stackoverflow.com/questions/106684/how-to-create-a-new-type-of-entity-in-microsoft-robotics-studio-2-0 4 How to create a new type of entity in Microsoft Robotics Studio 2.0? TraumaPony 2008-09-20T01:16:23Z 2009-02-05T00:32:10Z <p>What I'm trying to do with MRS is to teach myself some basic AI; what I want to do is to make a rocket entity, with things such as vectored exhaust, and staging. Anyone have an idea on how to make an entity that can fly? Or do I just need to constantly apply a force upwards?</p> http://stackoverflow.com/questions/418835/are-there-any-graph-plotting-anything-like-that-libraries-for-python-3-0 2 Are there any graph/plotting/anything-like-that libraries for Python 3.0? TraumaPony 2009-01-07T01:12:41Z 2009-01-21T21:36:59Z <p>As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.</p> http://stackoverflow.com/questions/437956/should-user-interfaces-be-sexy/437968#437968 0 Answer by TraumaPony for Should User Interfaces be "Sexy" TraumaPony 2009-01-13T04:36:11Z 2009-01-13T04:36:11Z <p>As long as it's functional and easy to use and doesn't end up looking horrible to everyone but you, then sure, go nuts.</p> http://stackoverflow.com/questions/250377/are-linq-expression-trees-turing-complete 1 Are LINQ expression trees Turing complete? TraumaPony 2008-10-30T14:37:16Z 2009-01-07T18:23:28Z <p>As they are in .Net 3.5. I know they are in 4.0, as that's what the DLR works with, but I'm interested in the version we have now.</p> http://stackoverflow.com/questions/416122/do-you-code-review-unit-tests/416126#416126 10 Answer by TraumaPony for Do you code review unit tests? TraumaPony 2009-01-06T11:07:07Z 2009-01-06T11:07:07Z <p>Statistically, unit tests are more buggy because they ARE taken less seriously. So yes, code review those buggers.</p> http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/139595#139595 Comment by TraumaPony on Most wanted feature for C# 4.0 ? TraumaPony 2009-03-26T08:33:13Z 2009-03-26T08:33:13Z Meh, personally, I really dislike the way it's done. http://stackoverflow.com/questions/614100/how-do-you-measure-a-small-big-very-big-project Comment by TraumaPony on How do you measure a small, big, very big project? TraumaPony 2009-03-05T11:22:18Z 2009-03-05T11:22:18Z Why? &lt;10chars&gt; http://stackoverflow.com/questions/226282/what-are-the-most-hardcore-optimisations-youve-seen/597406#597406 Comment by TraumaPony on What are the most hardcore optimisations you've seen? TraumaPony 2009-02-28T03:02:56Z 2009-02-28T03:02:56Z Ah, good old Quake III http://stackoverflow.com/questions/597259/when-are-structs-the-answer/597285#597285 Comment by TraumaPony on When are structs the answer? TraumaPony 2009-02-28T01:33:48Z 2009-02-28T01:33:48Z Well, it should be GCing. At least, that was the problem with my raytracer. http://stackoverflow.com/questions/597259/when-are-structs-the-answer/597285#597285 Comment by TraumaPony on When are structs the answer? TraumaPony 2009-02-28T01:18:54Z 2009-02-28T01:18:54Z It's still quicker than the massive amount of garbage collection that would occur... http://stackoverflow.com/questions/597259/when-are-structs-the-answer/597276#597276 Comment by TraumaPony on When are structs the answer? TraumaPony 2009-02-28T01:17:12Z 2009-02-28T01:17:12Z No, not at all. It just passes a pointer, I believe. For small methods, e.g. addition and simple ray-interesection tests, the cost of pointer dereferencing is less than the cost of copying the memory. http://stackoverflow.com/questions/585219/why-dont-we-have-two-nulls/585255#585255 Comment by TraumaPony on Why don't we have two nulls? TraumaPony 2009-02-25T10:04:41Z 2009-02-25T10:04:41Z That would be quite nice. Hmm... Subclasses of null? http://stackoverflow.com/questions/575561/do-programmers-have-to-be-good-in-mathematics/575597#575597 Comment by TraumaPony on Do programmers have to be good in mathematics? TraumaPony 2009-02-23T02:35:20Z 2009-02-23T02:35:20Z One could say it's the other way around. http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/575754#575754 Comment by TraumaPony on Why is C# suddenly so popular? TraumaPony 2009-02-22T23:27:27Z 2009-02-22T23:27:27Z WPF isn't intrinsically tied to Windows. Just hasn't been implemented elsewhere ;) http://stackoverflow.com/questions/575513/why-is-c-suddenly-so-popular/575560#575560 Comment by TraumaPony on Why is C# suddenly so popular? TraumaPony 2009-02-22T23:15:18Z 2009-02-22T23:15:18Z Reguardless, this is about the language, Giovanni Galbo, and not about .Net. http://stackoverflow.com/questions/524179/what-is-your-favorite-project-euler-question/527884#527884 Comment by TraumaPony on What is your favorite Project Euler question? TraumaPony 2009-02-18T03:46:55Z 2009-02-18T03:46:55Z Ah, combinatorics... http://stackoverflow.com/questions/524179/what-is-your-favorite-project-euler-question Comment by TraumaPony on What is your favorite Project Euler question? TraumaPony 2009-02-18T03:41:39Z 2009-02-18T03:41:39Z This should be a community wiki. http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/11485#11485 Comment by TraumaPony on What is the worst interview question? TraumaPony 2009-02-17T03:48:31Z 2009-02-17T03:48:31Z What's wrong with that? It's a modeling and problem solving question. http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/516180#516180 Comment by TraumaPony on Why is good UI design so hard for some Developers? TraumaPony 2009-02-06T04:46:23Z 2009-02-06T04:46:23Z Find me one adult who doesn't know what the motor in a car does, or what the steering wheel does, or what seatbelts are for. http://stackoverflow.com/questions/510010/what-is-so-evil-about-flash-based-website/518903#518903 Comment by TraumaPony on What is so evil about flash based website? TraumaPony 2009-02-06T02:47:19Z 2009-02-06T02:47:19Z Sure it would. Silverlight! :P