ACAdam C Thompsoninadamsjourney.hashnode.dev·Jan 18, 2022 · 2 min readASP.NET: Please wait ...I am told to add an option to a drop down list that will iterate through a dynamic list of stored procedures and execute those stored procedures from the internal ASP.NET website. I have been assured this process will take less than 15 seconds. The ...00
ACAdam C Thompsoninadamsjourney.hashnode.dev·Jan 9, 2022 · 2 min read2021 Advent of Code: Day 6First part not so bad. Brute force it through the 80 days. Just keep making the array bigger with no checks! What could possibly go wrong with that! public int LanternfishPart1(List<int> fishes, int NumberOfDays) { int ...00
ACAdam C Thompsoninadamsjourney.hashnode.dev·Jan 7, 2022 · 1 min readAdvent of Code 2021: Day 5, Part 2Adding the 45deg angle was a small addition to Part 1. public void MarkLine(Point A, Point B) { if (A.X == B.X) { if (A.Y > B.Y) { for (int i = A.Y; i >= B.Y; ...00
ACAdam C Thompsoninadamsjourney.hashnode.dev·Jan 7, 2022 · 2 min readAdvent of Code 2021: Day 5, part 1I forgot about my friend Tuple. I didn't want to create a class to bundle my two points together from the parsing of the input file and Tuple is an easy way to get this done. This challenge was not too difficult for me as Day 4 helped me get in ment...00
ACAdam C Thompsoninadamsjourney.hashnode.dev·Jan 7, 2022 · 3 min readAdvent of Code 2021: Day 4, Part 2Lessons reinforced: Encapsulation makes modifications cleaner Writing out your logic (and referring to it while coding) is a good thing Writing code, like any endeavor that creates things, has tradeoffs. You don't know what to tradeoffs to make if...00