Each Program Increment there are some items that need funded from the technical debt and security value stream. These are to ensure […]
Blog Archive
0
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 = (Select-String -Path […]
0
Code review guidelines
General Design / Execution With a recent pull, does your code build and compile? Does your code meet the minimum requirements for […]