Category: Development

  • Quadratic Equations

    Quadratic Equations

    Overview 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.…

    Read more: Quadratic Equations
  • Basic Powershell Parser

    Basic Powershell Parser

    Main 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

    Read more: Basic Powershell Parser