Skip to content
View M1kep's full-sized avatar
Block or Report

Block or report M1kep

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
M1kep/README.md

Hi there 👋

Anurag's GitHub stats

Pinned

  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 4

  2. Comfy_KepListStuff Comfy_KepListStuff Public

    Set of ComfyUI nodes that strive to utilize lists in ComfyUI

    Python 24 1

  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