Category: Development
-
Quadratic Equations
Read more: Quadratic EquationsOverview The qudratic equation being demonstrated is y = ax2 + bx + c This was just a small python program which uses the matplotlib to demostrate the quadratic curves.…
-
Basic Powershell Parser
Read more: Basic Powershell ParserMain Parser Usage $Query = “Status AND (User OR Admin)”$Parser = [Parser]::new($Query)$OutputTree = $Parser.ParseExpression() Display as JSON to see the nested structure clearly $OutputTree | ConvertTo-Json -Depth 10

