Slashdot Mirror


User: ctlajoie

ctlajoie's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:Question on AMD Intentionally Added Artificial Limitations To Their HDMI Adapters · · Score: 2

    I've never heard of a "windows fanboy"

  2. Re:Pointless. on Adding CSS3 Support To IE 6, 7 and 8 With CSS3 Pie · · Score: 1

    This library, on the other hand, is several orders of magnitude more useful (and I'm dead serious about it): http://code.google.com/p/ie7-js/

    I have tried this library recently (IE9.js specifically). It worked as advertised in many situations. However I also ran into a case where it broke a layout in IE6 that was previously working ok. It's a great library, but not a drop-in solution for all the IE5/6 problems it claims to fix. Like many IE hacks, sometimes it works, sometimes it doesn't.

  3. Re:Why does C# have redundant syntax? on How C# Was Made · · Score: 3, Insightful

    Personally, I like the 'new' keyword. It makes it very clear where an object is being instantiated, and not just assigned through a function (that's what var = Type(args) looks like to me).

    Also, C# allows the core types to be allocated on the stack. Here is a line I pulled from my code:
    byte* buffer = stackalloc byte[256];

    stackalloc can only be used inside an unsafe context.