Skip to content
View lzehrung's full-sized avatar
  • ClearGov Inc.
  • South Bend, IN
  • 07:52 - 4h behind

Block or report lzehrung

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. coinmarketcap Public

    A simple CoinMarketCap Pro API v1 client written in C# and available via NuGet.

    C# 10 10

  2. zod-express-openapi-routes Public

    POC for cozy API validation, typing, and OpenAPI/swagger schema generation with Zod and Express

    TypeScript 7 1

  3. Find all child files modified in the...
    1
    Get-ChildItem -Recurse -Filter *.csv | Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-1)} | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue
  4. open connections
    1
    netstat -p TCP -fan | Select -Skip 4 | ForEach {
    2
         $Properties = $_.Trim() -split '[\s]+'
    3
         [PSCustomObject]@{
    4
             'Proto'= $Properties[0]
    5
             'Local Address'= $Properties[1]
  5. type-checked property name string li...
    1
    // inspired by https://schneidenbach.gitbooks.io/typescript-cookbook/content/nameof-operator.html
    2
    
                  
    3
    /** Ensure the string value is a valid property name of type `T` */
    4
    function propName<T>(name: keyof T): string {
    5
        return name.toString();
  6. btn-ci Public archive

    A simple build system that's better than nothing!

    TypeScript 2