Waters
Waters
I only discovered AoC this year, so I am doing a lot of catch up. I'm rather impatient so I have started doing 2015 while I wait for the next...
https://github.com/h2oboi89/AdventOfCode Here is link to my code for your reference should you choose to implement this.
It is only 1097 bytes (maximum single payload size). And when it works I get partial buffers just fine. I let it run for a while before declaring failure, which...
I changed my date and time settings. Default uses `/` as date separator IIRC, I switched to `-`. As a result, if I attempt to use the `en-US` culture without...
Based on the two cultures used (`en-US` and `nl-NL`) only people who natively use either of those cultures and have modified the culture settings used in the Ledger exercise should...
Thanks, got it working
This was haunting me. ```diff - sb.AppendLine($" - Header:"); - sb.AppendLine($" {image.APL.Header.ToString().Replace(Environment.NewLine, $"{Environment.NewLine} ").TrimEnd()}"); + var header = image.APL.Header.ToString().Replace(Environment.NewLine, $"{Environment.NewLine} ").TrimEnd(); + sb.AppendLine($" - APL Header:"); + sb.AppendLine($" {header}"); ```...