N-Body Modeling Pages Online

Thursday, September 24th, 2009

So I finally got around to putting some pages up about n-body modeling (link in nav bar above). Even if you’re not into numerical simulations, physics or any of that stuff some of the mixed language aspects of the code might be of interest. I’m not really ...

Gotchas: Adding Attributes to Properties on Interfaces in F#

Tuesday, September 15th, 2009

I ran into a couple of issues when writing an F# class to be consumed by C#. Specifically when it came to adding attributes to a property declared on an interface. You would expect the following code to decorate the SofteningLength property with the Dependency and DefaultValue attributes: ...