User matwilko - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T20:26:00Z http://stackoverflow.com/feeds/user/12832 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/85479/c-unsafe-fixed-code/85527#85527 1 Answer by matwilko for C# Unsafe/Fixed Code matwilko 2008-09-17T17:17:32Z 2008-09-17T17:17:32Z <p>I believe unsafe code is used if you want to access something outside of the .NET runtime, ie. it is not managed code (no garbage collection and so on). This includes raw calls to the Windows API and all that jazz.</p> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84944#84944 0 Answer by matwilko for What is the easiest or fastest way to make CSS render the same in all browsers matwilko 2008-09-17T16:17:40Z 2008-09-17T16:17:40Z <p>I tend to find that identical looking CSS comes about if I use floats to layout the page in boxes. The flow model works as you think it should, and they're faithfully rendered in all major browsers. I know some would tell me that the use of a lot of floats is wrong, but it works surprisingly well.</p>