by Mwwhited
19. June 2009 11:06
While not as bad as calculating PI in BF this LINQ statement is pretty impressive. Being able to define a full ray tracer in a single, complex, fuctional, recursive statement is very interesting. Ray Tracing in LINQ
by Mwwhited
7. June 2009 11:06
Not being able to serialize Anonymous Types with the build in XmlSerializer was kind of a bummer for me, so I created this set of extension methods. Another feature I added at recursion detection based on the .GetHasCode() to prevent recursive object graphs from causing stack overflows. It's ugly... but it works... I was going for a proof of concept so I'm happy for now. -Enjoy, Matt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Lin...
[More]
by Mwwhited
29. April 2009 02:04
Using this struct you may implicitly cast string's or char[]'s to "MyString" and it has one current overridden operator... and that would be XOR. Also wanting an insane excuse to play with unsafe code I decided to do it with pointers. It’s may not be the most graceful code in the world… but hey quick and dirty is just as fun.
public struct MyString
{
public MyString(string value) { _value = value.ToCharArray(); }
public MyString(char[] v...
[More]
b1cc9739-6966-476f-8840-9cadddfcbada|0|.0
Tags: c#, insane
by Mwwhited
29. April 2009 00:04
Okay... calculating PI can be crazy enough. But to do it in BF... that's just insane. The guy that wrote this deserves a gold star and a metal. http://dl.getdropbox.com/u/35146/PI16.txt