Skip to content
View zish's full-sized avatar
😎
Perpetually Coding
😎
Perpetually Coding

Block or report zish

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. job-search-nodejs job-search-nodejs Public

    Typescript-based Library The Implements a Simple Job Tracking API. Implemented with help from Anthropic's Claude Code, using The Sonnet 4.6 Model.

    HTML

  2. Greylisting iRule for F5 load-balanc... Greylisting iRule for F5 load-balancers, to incrementally throttle requests to matching URIs.
    1
    # Author: Jeremy Melanson <1080872+zish@users.noreply.github.com>
    2
    
                  
    3
    #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    4
    #
    5
    # This is an iRule for the F5 Big-IP family of load-balancers. It creates
  3. vim-colorschemecycle vim-colorschemecycle Public

    Easily cycle through locally-installed Vim ColorSchemes.

    Vim Script 1

  4. Better Terraform Bash Completion Better Terraform Bash Completion
    1
    # Bash Terraform completion
    2
    #
    3
    # Originally adapted from
    4
    # https://gist.github.com/cornfeedhobo/8bc08747ec3add1fc5adb2edb7cd68d3
    5
    #
  5. Bash multi forking (not multithreadi... Bash multi forking (not multithreading). Crude way of creating a limited number of child processes, while allowing to perform a set number of tasks.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    func () {
    4
      #-- These will make sense shortly.
    5
      local TMP_NAME="${1}-${2}"