Skip to content
View lzehrung's full-sized avatar
  • ClearGov Inc.
  • South Bend, IN
  • 21:17 (UTC -04:00)
Block or Report

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

  1. coinmarketcap coinmarketcap Public

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

    C# 10 10

  2. zod-express-openapi-routes zod-express-openapi-routes Public

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

    TypeScript 5 1

  3. Find all child files modified in the... Find all child files modified in the last day and remove them (ignoring errors and confirm prompts)
    1
    Get-ChildItem -Recurse -Filter *.csv | Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-1)} | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue
  4. open connections 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... type-checked property name string literals - https://www.typescriptlang.org/play?#code/PTAEEsDsGcAdwE4FMAmoBGBPUALALnrNAFwjQDGOkS4KSk6AhpQHQDm4e6A9twNbQW4bsDyZYSCgnCw8AWnK8+PfsEWQ89PMEiMAtkm4AzOdwkJGebghb49AGwBQj4ACpXoAKIwArslB4OEig0HjSkGygAG6M9j7B4NCgjNGxtKCwCGZICGKgugagxgHiwQAGACploK7AjkY+kOR4wpAZWbAAcvpIADwVAHwAFAVIxKB8SJjFFQCU46HhkQDejqDroMh4fm2jLFYAymFQbEOzANyOAL7Obh7e0H7BgcGLJ6lxCUkpMfbpmdlcthRkUjBAYHhGE1gsUxBJQJUyiwanUGk0Wtw2gDYAB5Iz9YZQUJQ8hjUAVAA0+R640m0zBcwWxwioFWG02SG2CCxHW6BgJIx6F2uzigmgQRmYwQAsj57C0DChwIwACKIJDNazYNkbUZMpaXdmwSw4fUnS43RzqUKgRR6eD2SQARlAAF52mY+X1ZfLwIrlWrkJqEJhhgByUZh4XWvCgSXgezQF3u7Fe3o+hWoAPq4OhoYRnooItRy7OGPg4nQ8YZv1Z1U5qwht2sta6mmgMPS7Aq7jkHwGDTQMMU1vrY2BcZhgDCxAAOrOu6Ae32B3gh9dS+W7Q7JAAmZvYvFDImQ6FUgsGEtWzE2+OJ-cpjpHk8kpDngDuWQiJaAA
    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 btn-ci Public archive

    A simple build system that's better than nothing!

    TypeScript 2