[go: nahoru, domu]

Skip to content
View erancihan's full-sized avatar

Organizations

@vivydev
Block or Report

Block or report erancihan

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

Pinned Loading

  1. A script to setup AUTOMATIC1111's "s... A script to setup AUTOMATIC1111's "stable-diffusion-webui"
    1
    #!/bin/bash
    2
    
                  
    3
    # This is a script to both install and run the Stable Diffusion WebUI by AUTOMATIC1111.
    4
    # Script will first check if the webui is installed, if not it will install it.
    5
    # Then it will check for updates and run the webui's webui.sh script.
  2. MongoDB Drop Duplicate entries MongoDB Drop Duplicate entries
    1
    db.MyCollection.aggregate([
    2
      {
    3
        $group: {
    4
          _id: "$col",
    5
          duplicates: { $addToSet: "$_id" },
  3. Simple GIT pre-commit hook for linting Simple GIT pre-commit hook for linting
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    echo "> Running pre-commit script"
    4
    
                  
    5
    PWD=$(pwd)