Skip to content
View idkrn123's full-sized avatar
🎄
On vacation
🎄
On vacation
Block or Report

Block or report idkrn123

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. dynamo dynamo Public archive

    [ARCHIVED] Dynamo is a chatbot interface with GitHub read/write access and web browsing using OpenAI ChatCompletion function calls, Co-authored between myself and GPT-4 (primarily using the Dynamo …

    Python 6

  2. A simple command-line helper I use v... A simple command-line helper I use very often. Recursively loop through all files in the specified directory and its subdirectories, wrapping their contents in triple backticks. Clipboard automation with `xclip`.
    1
    #!/bin/bash
    2
    
    
    3
    function process_directory {
    4
        for file in "$1"/*; do
    5
            if [ -d "$file" ]; then