• Beautiful Binary Literals

    Updated: 2023-05-30 20:55:36
    Finally! I've used binary literals in real code. This feature, and the digits separator have been good additions to the C# language. public static byte[] BreakIntoTwos(byte value) { var result = new byte[4]; result[0] = (byte)((value & 0b1100_0000) >> 6); result[1] = (byte)((value & 0b0011_0000) >> 4); result[2] = (byte)((value & 0b0000_1100) >> 2); result[3] = (byte) (value & 0b0000_0011); return result; }

  • The C# Interactive Window

    Updated: 2023-05-30 20:55:36
    The C# Interactive window in VS is not the best interactive C# experience, LINQPad still has the honor, I believe, but it is a quick and convenient option for trying out a few lines of code.

  • Edmonton R User Group Meetup: Futureverse – A Unifying Parallelization Framework in R for Everyone

    Updated: 2023-05-23 01:00:00
    Continue reading: Edmonton R User Group Meetup: Futureverse – A Unifying Parallelization Framework in R for Everyone

Current Feed Items | Previous Months Items

Apr 2023 | Mar 2023 | Feb 2023 | Jan 2023 | Dec 2022 | Nov 2022