Each Program Increment there are some items that need funded from the technical debt and security value stream. These are
Continue readingCategory: software development
Parse logs with Powershell
$path = “C:\IISLogs\” $infile = “alllogs.txt” $outfile = “parsed.txt” $batch = 1000 [regex]$match_regex = ‘StringToFindInLogs’ [regex]$replace_regex = ‘BINGO’ $header_line =
Continue readingCode review guidelines
General Design / Execution With a recent pull, does your code build and compile? Does your code meet the minimum
Continue reading