Skip to content
View M1kep's full-sized avatar

Block or report M1kep

Report abuse

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

Report abuse
M1kep/README.md

Hi there 👋

Anurag's GitHub stats

Pinned Loading

  1. KepPromptLang KepPromptLang Public

    A collection of ComfyUI nodes designed to implement a prompting language. This toolkit enables users to manipulate CLIP embeddings in a variety of ways.

    Python 5 3

  2. Comfy_KepListStuff Comfy_KepListStuff Public

    Set of ComfyUI nodes that strive to utilize lists in ComfyUI

    Python 44 5

  3. PowerShell "Spell Check" PowerShell "Spell Check"
    1
    Add-Type @"
    2
    using System.Linq;
    3
    using System;
    4
    public class EditDistance {
    5
        public static int CheckEditDistance (string original, string modified)
  4. A PowerShell example of using a stac... A PowerShell example of using a stack for breadcrumb like navigation
    1
    # Initialize the Stack
    2
    $breadCrumb = [System.Collections.Stack]::new()
    3
    # Push Page "1"
    4
    $breadCrumb.Push(1)
    5
    #Initialize empty Pages object