User Cody Brocious - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T13:25:07Zhttp://stackoverflow.com/feeds/user/4977http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/180858/procedural-music-generation-techniques22Procedural music generation techniques...Cody Brocious2008-10-07T23:43:05Z2009-11-04T04:08:00Z
<p>I've been putting a lot of thought into procedural generation of content for a while and I've never seen much experimentation with procedural music. We have fantastic techniques for generating models, animations, textures, but music is still either completely static or simply layered loops (e.g. Spore).</p>
<p>Because of that, I've been thinking up optimal music generation techniques, and I'm curious as to what other people have in mind. Even if you haven't previously considered it, what do you think will work well? One technique per answer please, and include examples where possible. The technique can use existing data or generate the music entirely from scratch, perhaps on some sort of input (mood, speed, whatever).</p>
http://stackoverflow.com/questions/1584313/non-hid-mouse-driver-on-nt4Non-HID Mouse driver on NTCody Brocious2009-10-18T07:59:01Z2009-10-26T14:36:33Z
<p>I'm looking to write a custom touchpad driver for my laptop, as its support under Windows is abysmal. I have the protocol figured out and I'm ready to go ahead and implement it, but I'm a bit confused as to how to go about it. It's a multitouch touchpad, so I'd like to support the Windows Touch interfaces in addition to standard mouse support, but the examples in the WDK (Elotouch being the most relevant one) only show HID support. In my Googling around, I discovered someone mentioning that the proper way to handle this is to write a shim driver that will expose HID from the low-level protocol, but I couldn't find good information on where to start with that.</p>
<p>What examples (WDK or otherwise) should I take a look at and is the HID shim the right way to go about this? I'm looking to target Vista+ at the least, XP would be nice as well.</p>
<p>Thanks</p>
<p>Edit: A bit of clarification. The touchpad is USB but non-HID. Also, if the HID shim is the best way to go, can I use KMDF there, or do I have to go WDM? Most of my experience is WDM, but I'm not sure which way to go.</p>
http://stackoverflow.com/questions/193835/defining-operators-in-boo0Defining operators in BooCody Brocious2008-10-11T08:01:06Z2009-07-10T16:23:48Z
<p>I'm looking to move some of my lighter weight metaprogramming from Nemerle to Boo and I'm trying to figure out how to define custom operators. For example, I can do the following in Nemerle:</p>
<pre><code>macro @<-(func, v) {
<[ $func($v) ]>
}
</code></pre>
<p>Then these two are equivalent:</p>
<pre><code>foo <- 5;
foo(5);
</code></pre>
<p>I can't find a way of doing this in Boo -- any ideas?</p>
http://stackoverflow.com/questions/107243/are-units-of-measurement-unique-to-f6Are units of measurement unique to F#?Cody Brocious2008-09-20T05:31:24Z2009-06-14T23:02:27Z
<p>I was reading Andrew Kennedy's blog post series on <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/08/29/units-of-measure-in-f-part-one-introducing-units.aspx" rel="nofollow">units of measurement in F#</a> and it makes a lot of sense in a lot of cases. Are there any other languages that have such a system?</p>
<p>Edit: To be more clear, I mean the flexible units of measurement system where you can define your own arbitrarily.</p>
http://stackoverflow.com/questions/461794/whats-a-good-free-serial-port-monitor-for-reverse-engineering2What's a good, free serial port monitor for reverse-engineering?Cody Brocious2009-01-20T15:35:20Z2009-05-29T15:50:35Z
<p>I'm reverse-engineering a serial protocol and getting frustrated by bad tools. Does anyone know of a good, free tool for logging data to/from serial ports on Windows?</p>
<p>Requirements:</p>
<ul>
<li>Must be free</li>
<li>Must not take control of the port (i.e. must hook the file APIs or the kernel rather than trying to open the device)</li>
<li>Must have some sort of filtering features</li>
<li>Writes either human-readable or binary logs, preferably in an easy to parse format</li>
</ul>
<p>Any ideas? Portmon works, but its logs are difficult to work with and its filters are effectively useless; I've also tried a few commercial tools and nothing seems to fit the bill.</p>
http://stackoverflow.com/questions/448673/how-do-emulators-work-and-how-are-they-written/448689#448689134Answer by Cody Brocious for How do emulators work and how are they written?Cody Brocious2009-01-15T22:13:48Z2009-05-26T00:49:10Z<p>Emulation is a multi-faceted area. Here are the basic ideas and functional components. I'm going to break it into pieces and then fill in the details via edits. Many of the things I'm going to describe will require knowledge of the inner workings of processors -- assembly knowledge is necessary. If I'm a bit too vague on certain things, please ask questions so I can continue to improve this answer.</p>
<h2>Basic idea:</h2>
<p>Emulation works by handling the behavior of the processor and the individual components. You build each individual piece of the system and then connect the pieces much like wires do in hardware.</p>
<h2>Processor emulation:</h2>
<p>There are three ways of handling processor emulation:</p>
<ul>
<li>Interpretation</li>
<li>Dynamic recompilation</li>
<li>Static recompilation</li>
</ul>
<p>With all of these paths, you have the same overall goal: execute a piece of code to modify processor state and interact with 'hardware'. Processor state is a conglomeration of the processor registers, interrupt handlers, etc for a given processor target. For the 6502, you'd have a number of 8-bit integers representing registers: <code>A</code>, <code>X</code>, <code>Y</code>, <code>P</code>, and <code>S</code>; you'd also have a 16-bit <code>PC</code> register.</p>
<p>With interpretation, you start at the <code>IP</code> (instruction pointer -- also called <code>PC</code>, program counter) and read the instruction from memory. Your code parses this instruction and uses this information to alter processor state as specified by your processor. The core problem with interpretation is that it's <em>very</em> slow; each time you handle a given instruction, you have to decode it and perform the requisite operation.</p>
<p>With dynamic recompilation, you iterate over the code much like interpretation, but instead of just executing opcodes, you build up a list of operations. Once you reach a branch instruction, you compile this list of operations to machine code for your host platform, then you cache this compiled code and execute it. Then when you hit a given instruction group again, you only have to execute the code from the cache. (BTW, most people don't actually make a list of instructions but compile them to machine code on the fly -- this makes it more difficult to optimize, but that's out of the scope of this answer, unless enough people are interested)</p>
<p>With static recompilation, you do the same as in dynamic recompilation, but you follow branches. You end up building a chunk of code that represents all of the code in the program, which can then be executed with no further interference. This would be a great mechanism if it weren't for the following problems:</p>
<ul>
<li>Code that isn't in the program to begin with (e.g. compressed, encrypted, generated/modified at runtime, etc) won't be recompiled, so it won't run</li>
<li>It's been proven that finding all the code in a given binary is equivalent to the Halting problem</li>
</ul>
<p>These combine to make static recompilation completely infeasible in 99% of cases. For more information, Michael Steil has done some great research into static recompilation -- the best I've seen.</p>
<p>The other side to processor emulation is the way in which you interact with hardware. This really has two sides:</p>
<ul>
<li>Processor timing</li>
<li>Interrupt handling</li>
</ul>
<h2>Processor timing:</h2>
<p>Certain platforms -- especially older consoles like the NES, SNES, etc -- require your emulator to have strict timing to be completely compatible. With the NES, you have the PPU (pixel processing unit) which requires that the CPU put pixels into its memory at precise moments. If you use interpretation, you can easily count cycles and emulate proper timing; with dynamic/static recompilation, things are a /lot/ more complex.</p>
<h2>Interrupt handling:</h2>
<p>Interrupts are the primary mechanism that the CPU communicates with hardware. Generally, your hardware components will tell the CPU what interrupts it cares about. This is pretty straightforward -- when your code throws a given interrupt, you look at the interrupt handler table and call the proper callback.</p>
<h2>Hardware emulation:</h2>
<p>There are two sides to emulating a given hardware device:</p>
<ul>
<li>Emulating the functionality of the device</li>
<li>Emulating the actual device interfaces</li>
</ul>
<p>Take the case of a hard-drive. The functionality is emulated by creating the backing storage, read/write/format routines, etc. This part is generally very straightforward.</p>
<p>The actual interface of the device is a bit more complex. This is generally some combination of memory mapped registers (e.g. parts of memory that the device watches for changes to do signaling) and interrupts. For a hard-drive, you may have a memory mapped area where you place read commands, writes, etc, then read this data back.</p>
<p>I'd go into more detail, but there are a million ways you can go with it. If you have any specific questions here, feel free to ask and I'll add the info.</p>
<h2>Resources:</h2>
<p>I think I've given a pretty good intro here, but there are a <strong>ton</strong> of additional areas. I'm more than happy to help with any questions; I've been very vague in most of this simply due to the immense complexity.</p>
<h3>Obligatory Wikipedia links:</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Emulator" rel="nofollow">Emulator</a></li>
<li><a href="http://en.wikipedia.org/wiki/Dynamic%5Frecompilation" rel="nofollow">Dynamic recompilation</a></li>
</ul>
<h3>General emulation resources:</h3>
<ul>
<li><a href="http://www.zophar.net/" rel="nofollow">Zophar</a> -- This is where I got my start with emulation, first downloading emulators and eventually plundering their immense archives of documentation. This is the absolute best resource you can possibly have.</li>
<li><a href="http://ngemu.com/" rel="nofollow">NGEmu</a> -- Not many direct resources, but their forums are unbeatable.</li>
</ul>
<h3>Emulator projects to reference:</h3>
<ul>
<li><a href="http://sourceforge.net/projects/ironbabel" rel="nofollow">IronBabel</a> -- This is an emulation platform for .NET, written in Nemerle and recompiles code to C# on the fly. Disclaimer: This is my project, so pardon the shameless plug.</li>
<li><a href="http://byuu.cinnamonpirate.com/bsnes/" rel="nofollow">BSnes</a> -- Awesome SNES emulator. You can read about it <a href="http://byuu.cinnamonpirate.com/?page=articles/emulation" rel="nofollow">here</a>.</li>
<li><a href="http://www.mamedev.org/" rel="nofollow">MAME</a> -- <strong>The</strong> arcade emulator. Great reference.</li>
<li><a href="http://6502asm.com/" rel="nofollow">6502asm.com</a> -- This is a JavaScript 6502 emulator with a cool little forum.</li>
<li><a href="http://ironbabel.googlepages.com/6502.html" rel="nofollow">dynarec'd 6502asm</a> -- This is a little hack I did over a day or two. I took the existing emulator from 6502asm.com and changed it to dynamically recompile the code to JavaScript for massive speed increases.</li>
</ul>
<h3>Processor recompilation references:</h3>
<ul>
<li>The research into static recompilation done by Michael Steil (referenced above) culminated in <a href="http://www.weihenstephan.org/~michaste/down/steil-recompilation.pdf" rel="nofollow">this paper</a> and you can find source and such <a href="http://www.pagetable.com/?p=35" rel="nofollow">here</a>.</li>
</ul>
http://stackoverflow.com/questions/829113/proprietary-service-backed-by-a-gpl-software/829127#8291271Answer by Cody Brocious for Proprietary service backed by a GPL software?Cody Brocious2009-05-06T11:20:32Z2009-05-06T11:20:32Z<p>The GPL only applies to distribution, so it would be fine there.</p>
http://stackoverflow.com/questions/454648/pythonic-macro-syntax13Pythonic macro syntaxCody Brocious2009-01-18T04:22:27Z2009-04-18T23:30:26Z
<p>I've been working on an alternative compiler front-end for Python where all syntax is parsed via macros. I'm finally to the point with its development that I can start work on a superset of the Python language where macros are an integral component.</p>
<p>My problem is that I can't come up with a pythonic macro definition syntax. I've posted several examples in two different syntaxes in answers below. Can anyone come up with a better syntax? It doesn't have to build off the syntax I've proposed in any way -- I'm completely open here. Any comments, suggestions, etc would be helpful, as would alternative syntaxes showing the examples I've posted.</p>
<p>A note about the macro structure, as seen in the examples I've posted: The use of MultiLine/MLMacro and Partial/PartialMacro tell the parser how the macro is applied. If it's multiline, the macro will match multiple line lists; generally used for constructs. If it's partial, the macro will match code in the middle of a list; generally used for operators.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer42How do you advance beyond being an 'advanced' programmer?Cody Brocious2008-10-08T10:49:55Z2009-04-17T07:17:54Z
<p>I'm what I think would be considered an 'advanced' programmer. I have years of experience doing reverse-engineering, kernel/compiler/emulation/game development, many programming languages under my belt, etc. Up until about two years ago I felt I was continually learning about coding, and I was a good coder but my overall development (documentation, management, organization, etc) skills were poor, so that became the focus of my learning. Now that I feel those have matured to the point where it's not worth complete focus, although obviously I still have a ton to learn, I now feel like my learning has largely stagnated. I had prided myself on learning new things constantly, but eventually there comes a time where the interesting things to learn are few and far between.</p>
<p>I've been trying to come up with little exercises to continue advancing my knowledge -- building a Tokyo Cabinet type DB being my latest idea to that end -- but I'm simply running out of places to go. It's having a definite effect on my morale as I move forward, feeling like I'm nearing the end of the road, so to speak, despite that I know there's far more out there I haven't even considered.</p>
<p>So my questions are these: How do you go beyond this point? What programming exercises, big or small, will expand my mind? Lastly, has anyone else out there hit this point, and how did you get over it?</p>
<p>Edit: I want to clarify a bit. I don't think I've learned everything there is to know about my fields, or anywhere even near it. I know there's a lot left for me to learn, but I simply don't know what that actually <i>is</i>, which is largely the point of the question. In addition, I've wanted new ways of expanding my skills as a tech person, not just as a coder, so thanks to everyone that's given such recommendations. There's a lot to take in here, but I think this will all help greatly.</p>
http://stackoverflow.com/questions/754676/patching-sun-solaris/754686#7546860Answer by Cody Brocious for Patching Sun SolarisCody Brocious2009-04-16T03:44:52Z2009-04-16T03:44:52Z<p>The solution really depends entirely on where the problem lies and what sort of fix you're applying. In many cases, if the problem is in the kernel, you can patch it in such a way that the patch will only apply to a process with a given flag. If it's in a library or some such, you could have a harder time. In short, we really need a lot more info to give you a solid answer.</p>
http://stackoverflow.com/questions/173265/hooking-syscalls-from-userspace-on-windows2Hooking syscalls from userspace on WindowsCody Brocious2008-10-06T05:31:16Z2009-03-24T14:06:31Z
<p>I'm patching connect() to redirect network traffic as part of a library (<a href="http://www.assembla.com/wiki/show/nethooker" rel="nofollow">NetHooker</a>) and this works well, but it depends on ws2_32.dll remaining the same and doesn't work if the syscall is used directly. So what I'm wondering is if there's a way to catch the syscall itself without a driver. Anyone know if this is possible?</p>
http://stackoverflow.com/questions/635708/how-to-revert-glscalef/635725#6357253Answer by Cody Brocious for how to revert glScalef() ?Cody Brocious2009-03-11T18:17:28Z2009-03-11T18:17:28Z<p>You can simply save your projection matrix. glPushMatrix(), glScalef(), ..., glPopMatrix()</p>
http://stackoverflow.com/questions/600202/understanding-phps-operator/600204#6002043Answer by Cody Brocious for Understanding PHP's & operatorCody Brocious2009-03-01T18:08:17Z2009-03-01T18:08:17Z<p><a href="http://en.wikipedia.org/wiki/Bitwise%5Foperation#AND" rel="nofollow">This link</a> covers the operation.</p>
http://stackoverflow.com/questions/599968/reading-program-counter-directly/599982#5999826Answer by Cody Brocious for Reading Program Counter directlyCody Brocious2009-03-01T15:45:01Z2009-03-01T16:00:39Z<p>No, (E/R)IP cannot be accessed directly. To get it:</p>
<pre><code>call _here
_here: pop eax
; eax now holds the PC.
</code></pre>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62205#622058Answer by Cody Brocious for Stack overflow code golfCody Brocious2008-09-15T11:30:43Z2009-02-28T01:18:49Z<p><strong>Python</strong>:</p>
<pre><code>so=lambda:so();so()
</code></pre>
<p>Alternatively:</p>
<pre><code>def so():so()
so()
</code></pre>
<p>And if Python optimized tail calls...:</p>
<pre><code>o=lambda:map(o,o());o()
</code></pre>
http://stackoverflow.com/questions/593358/ssa-for-stack-machine-code3SSA for stack machine codeCody Brocious2009-02-27T03:03:54Z2009-02-27T13:04:16Z
<p>I'm working on a compiler for a stack machine (specifically <a href="http://en.wikipedia.org/wiki/Common_Intermediate_Language" rel="nofollow">CIL</a>) and I've parsed the code into a graph of basic blocks. From here I'm looking to apply <a href="http://en.wikipedia.org/wiki/Static_single_assignment_form" rel="nofollow">SSA</a> to the methods, but it's not going too well. My first attempt (while working with a flat listing, rather than the graph) was to iterate over the code and keep a stack of SSA ids (that is, for the assign targets), pushing them when I produce an assignment, popping them when they're used. This works just fine for a single basic block, but I simply can't figure out how to handle producing Φ functions.</p>
<p>The idea I've been tossing around is to attach a stack position to the SSA ids and then look at what's still on the stack when the code paths converge, but this doesn't seem like the Right Way (TM) of doing things.</p>
<p>Is there a simple algorithm for tracking the stack manipulations across multiple code paths and determining the collisions when they converge?</p>
http://stackoverflow.com/questions/572780/cpython-internal-structures/572789#5727890Answer by Cody Brocious for CPython internal structures Cody Brocious2009-02-21T10:47:02Z2009-02-21T10:47:02Z<p>I'm a bit confused as to what you're asking. In that code example, nothing should be garbage collected, as you're never actually killing off any references. You're holding a reference to the top level list in a and you're adding nested lists (held in b at each iteration) inside of that. If you remove the 'a =', <em>then</em> you've got unreferenced objects.</p>
<p>Edit: In response to the first part, yes, Python holds a list of objects so it can know what to cull. Is that the whole question? If not, comment/edit your question and I'll do my best to help fill in the gaps.</p>
http://stackoverflow.com/questions/567528/does-the-advent-of-multicore-architectures-affect-me-as-a-software-developer/567547#5675471Answer by Cody Brocious for Does the advent of MultiCore architectures affect me as a software developer?Cody Brocious2009-02-19T22:34:06Z2009-02-19T22:34:06Z<p>In general, become very friendly with threading. It's a terrible mechanism for parallelization, but it's what we have.</p>
<p>If you do work with .NET, look at the Parallel Extensions. They allow you to easily accomplish many parallel programming tasks.</p>
http://stackoverflow.com/questions/558759/how-do-i-encrypt-my-php-html-so-my-end-user-cannot-see-it/558781#5587814Answer by Cody Brocious for How do I encrypt my PHP/HTML so my end user cannot see it?Cody Brocious2009-02-17T21:21:11Z2009-02-17T21:21:11Z<p>There's no point in encrypting PHP for the browser, since the browser never sees it. The browser only gets the output of your PHP code. As for HTML, why bother? If the browser can render it, people can copy it (trivially).</p>
http://stackoverflow.com/questions/543047/how-do-i-directly-read-and-write-database-files-in-vb2008/543076#5430760Answer by Cody Brocious for How do I directly read and write database files in vb2008?Cody Brocious2009-02-12T20:21:19Z2009-02-12T20:21:19Z<p>If you don't want a server, use SQLite. There are .NET bindings that work quite nicely.</p>
<p>Reading and writing the raw database files would be an immense undertaking -- if you have to ask how to do it, you shouldn't. It requires so much work that it's not even worth considering for a moment.</p>
http://stackoverflow.com/questions/531477/strange-assembly-from-array-0-initialization/531489#5314894Answer by Cody Brocious for Strange assembly from array 0-initializationCody Brocious2009-02-10T08:35:40Z2009-02-10T08:35:40Z<p>The reason for lines 2 and 5 is because you specified a 0 in the array initializer. The compiler will initialize all constants then pad out the rest using memset. If you were to put two zeros in your initializer, you'd see it strw (word instead of byte) then memset 8 bytes.</p>
<p>As for the padding, it's only used to align memory accesses -- the data shouldn't be used under normal circumstances, so memsetting it is wasteful.</p>
<p>Edit: For the record, I may be wrong about the strw assumption above. 99% of my ARM experience is reversing code generated by GCC/LLVM on the iPhone, so my assumption may not carry over to MSVC.</p>
http://stackoverflow.com/questions/531273/stackoverflow-language/531281#5312813Answer by Cody Brocious for stackoverflow language?Cody Brocious2009-02-10T06:43:54Z2009-02-10T06:43:54Z<p>As noted in <a href="http://blog.stackoverflow.com/2008/09/what-was-stack-overflow-built-with/" rel="nofollow">this article</a>:</p>
<blockquote>
<p>framework -- Microsoft ASP.NET (version 3.5 SP1)<br/>
language -- C#<br/>
development environment -- Visual Studio 2008 Team Suite<br/>
web framework -- ASP.NET MVC (currently in beta)<br/>
browser framework -- JQuery<br/>
database -- SQL Server 2008<br/>
data access layer -- LINQ to SQL<br/>
source control -- Subversion<br/>
compare tool -- Beyond Compare 3<br/>
source control integration -- VisualSVN 1.5<br/></p>
</blockquote>
http://stackoverflow.com/questions/525425/what-would-your-own-programming-language-look-like/525439#525439-1Answer by Cody Brocious for What would your own programming language look like?Cody Brocious2009-02-08T09:15:12Z2009-02-08T09:15:12Z<p>My optimal language would look a whole lot like Nemerle (minus the arbitrary restrictions). Really it comes down to metaprogramming facilities; I should be able to arbitrarily extend or modify the language in any way I see fit (period) to fit the domain perfectly.</p>
<p>Give me macros that allow me to work on the AST of all of the code as I wish and I can build <em>my</em> perfect language.</p>
http://stackoverflow.com/questions/522112/what-is-an-easy-way-to-tell-if-a-list-of-words-are-anagrams-of-each-other/522129#5221296Answer by Cody Brocious for What is an easy way to tell if a list of words are anagrams of each other?Cody Brocious2009-02-06T20:54:51Z2009-02-06T21:04:53Z<p>Sort each element (removing whitespace) and compare against the previous. If they are all the same, they're all anagrams.</p>
http://stackoverflow.com/questions/521972/why-is-runtime-library-a-compiler-option-rather-than-a-linker-option/521987#5219870Answer by Cody Brocious for Why is runtime library a compiler option rather than a linker option? Cody Brocious2009-02-06T20:11:37Z2009-02-06T20:11:37Z<p>I believe the reason behind this is that SEH (structured exception handler) code will be generated differently depending on which runtime library you link against.</p>
http://stackoverflow.com/questions/518669/young-people-using-emacs/518677#5186778Answer by Cody Brocious for Young people using Emacs?Cody Brocious2009-02-06T00:48:14Z2009-02-06T00:48:14Z<p>I'm 21 and started using Emacs at 15, only moving away for Textmate/E in recent years. I personally can't stand IDEs, feeling they get in the way far more than they help. Give me a good straight-up text editor any day.</p>
http://stackoverflow.com/questions/508227/how-to-import-const-char-api-to-c/508239#5082391Answer by Cody Brocious for How to import const char* API to C#?Cody Brocious2009-02-03T18:05:38Z2009-02-03T18:13:45Z<p>Just use 'string' instead of 'const char *'.</p>
<p>Edit: This is dangerous for the reason JaredPar explained. If you don't want a free, don't use this method.</p>
http://stackoverflow.com/questions/505291/how-do-i-fill-a-region-to-its-bounds-with-a-color-on-a-graphics-object/505336#5053361Answer by Cody Brocious for How do I fill a region to its bounds with a color on a graphics object?Cody Brocious2009-02-02T22:57:03Z2009-02-02T22:57:03Z<p>Look into flood fill methods. Wikipedia has plenty of information on the subject <a href="http://en.wikipedia.org/wiki/Flood_fill" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/504754/directx-or-opengl/504781#5047810Answer by Cody Brocious for DirectX or OpenGLCody Brocious2009-02-02T20:36:54Z2009-02-02T20:36:54Z<p>I don't feel that OpenGL fits nearly as well into a pure OO environment as something like XNA does. That said, if you really care about cross-platform compatibility, it shouldn't matter what you backend to.</p>
<p>Design the business logic of your application to be independent from the rendering backend. You should be able to plug in an OpenGL rendering object then swap it out for an XNA renderer no problem. Not only does this increase your potential customer base (by enabling support for both), but makes your application's design far nicer.</p>
<p>Also a small note, DX shouldn't be used from .NET, as Managed DirectX has been deprecated; use XNA.</p>
http://stackoverflow.com/questions/504716/why-is-ironpython-faster-than-the-official-python-interpreter/504725#50472521Answer by Cody Brocious for Why is IronPython faster than the Official Python InterpreterCody Brocious2009-02-02T20:23:27Z2009-02-02T20:23:27Z<p>Python code doesn't get compiled to C, Python itself is written in C and interprets Python bytecode. CIL gets compiled to machine code, which is why you see better performance when using IronPython.</p>
http://stackoverflow.com/questions/1584313/non-hid-mouse-driver-on-nt/1625199#1625199Comment by Cody Brocious on Non-HID Mouse driver on NTCody Brocious2009-10-26T15:12:11Z2009-10-26T15:12:11ZThanks for the answer. I saw this a little while back, but it took some time to figure out how to make it work for USB, since all their examples show mapping serial to HID. However, I think I got it now. Thanks again.http://stackoverflow.com/questions/330207/how-come-md5-hash-values-are-not-reversible/330210#330210Comment by Cody Brocious on How come MD5 hash values are not reversible?Cody Brocious2009-06-27T01:29:22Z2009-06-27T01:29:22ZIt's impossible to have a hash function that generates unique values. You're mapping an infinite number of values into a finite number of values, which guarantees collisions.http://stackoverflow.com/questions/961818/xp-cd-not-getting-detectedComment by Cody Brocious on XP cd not getting detectedCody Brocious2009-06-07T12:43:57Z2009-06-07T12:43:57Z@Noldorin, Serverfault doesn't allow desktop questions, e.g. normal troubleshooting.http://stackoverflow.com/questions/961818/xp-cd-not-getting-detectedComment by Cody Brocious on XP cd not getting detectedCody Brocious2009-06-07T12:41:10Z2009-06-07T12:41:10ZThis is not programming related, so it doesn't belong here.http://stackoverflow.com/questions/461794/whats-a-good-free-serial-port-monitor-for-reverse-engineering/926712#926712Comment by Cody Brocious on What's a good, free serial port monitor for reverse-engineering?Cody Brocious2009-05-29T22:50:20Z2009-05-29T22:50:20ZThis was actually the solution I ended up going with. Wrote some python scripts to hack the content into the form I wanted, worked perfectly.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861415#861415Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T05:32:20Z2009-05-14T05:32:20ZThere's no reason the managed code VM can't be written in managed code itself, from the ground up. You can compile the managed code to machine code ahead of time, then bootstrap up from there. That's the approach taken by SharpOS, Cosmos, MOSA, and Renraku.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861415#861415Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:35:20Z2009-05-14T03:35:20Z+1. I would upvote this a dozen times if given the opportunity.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861315#861315Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:26:26Z2009-05-14T03:26:26Z@Alphaneo, Depending on the constraints you were working under, it's possible you couldn't. It's very easy to generate /damn/ fast code from CIL, but generating small code is very difficult. In terms of actual capability, the only thing I can think of that could cause problems for you is if you required precise timing, e.g. you have to throw pixels at the PPU every X cycles (like the NES).http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861273#861273Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:21:30Z2009-05-14T03:21:30Z@nickf3, Look at any managed OS on Chris's list and you'll see what I'm talking about. The compiler is a part of the OS by necessity, and rather than relying on antiquated process separation mechanisms, the compiler guarantees that the code is safe.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861278#861278Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:19:55Z2009-05-14T03:19:55Z@Alphaneo, Every kernel faces the same underlying problems, really. Whether you're hacking a random custom embedded OS or BSD, you have the same tradeoffs with respect to the flexibility of the language.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861315#861315Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:18:13Z2009-05-14T03:18:13Z@Alphaneo, I don't understand if you're being sarcastic or not, but I'd really love for you to put forth a reason why it can't be done. There are lots of misconceptions around managed code at this level, and I'd love to help clear them up.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861378#861378Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:12:50Z2009-05-14T03:12:50ZThis ignores all the research being done on managed kernels, as Chris has linked. In addition, sticking with C has nothing to do with speed (Singularity has proven a managed OS to be much, much faster due to the safety of managed code) and everything to do with being the standard.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-itComment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:10:51Z2009-05-14T03:10:51ZYou handle privileged instructions via compiler intrinsics, e.g. you make a stub 'rdtsc' method in your managed code, which when called becomes an 'rdtsc' instruction in the emitted code. Obviously, this can be checked completely for safety like any managed code.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/861315#861315Comment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:09:13Z2009-05-14T03:09:13Z@Alphaneo, This doesn't exist just in theory. All of the OSes linked by Chris (with the exception of Singularity) use managed code for every single piece of the OS after the bootloader. The only reason a managed bootloader hasn't been written is because it's unnecessary. GRUB does the job just fine. You've yet to give a single reason a bootloader couldn't be written in pure managed code.http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-itComment by Cody Brocious on For kernel/OS is C still itCody Brocious2009-05-14T03:07:09Z2009-05-14T03:07:09Z@Chris, No part /needs/ to use assembly -- not directly. You can write every single piece of code, from POST to desktop, in managed code and AOTC it. The only piece of code that needs to ever touch machine code directly is the compiler.