User matwilko - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T20:26:00Zhttp://stackoverflow.com/feeds/user/12832http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/85479/c-unsafe-fixed-code/85527#855271Answer by matwilko for C# Unsafe/Fixed Codematwilko2008-09-17T17:17:32Z2008-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#849440Answer by matwilko for What is the easiest or fastest way to make CSS render the same in all browsersmatwilko2008-09-17T16:17:40Z2008-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>