Skip to content
View chrisribe's full-sized avatar
😎
😎

Organizations

@microsoft @Azure @MicrosoftCopilot

Block or report chrisribe

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 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 Loading

  1. simple-memory-mcp simple-memory-mcp Public

    🧠 Blazingly fast persistent memory for AI assistants. Sub-millisecond SQLite storage with smart tagging, full-text search, and automatic relationships. MCP server + CLI.

    TypeScript 6 1

  2. bookmarklets bookmarklets Public

    List of bookmarklets created for different tasks

    HTML

  3. web-experiments web-experiments Public

    Used to test web snipits or experiement with different web components

    CSS

  4. my-backup-plan my-backup-plan Public

    Forked from geerlingguy/my-backup-plan

    How I back up all my data.

    Shell

  5. A cheat sheet outlining some popular... A cheat sheet outlining some popular design patterns, their pros and cons, and guidance on when to use them
    1
    Here's a cheat sheet outlining some popular design patterns, their pros and cons, and guidance on when to use them:
    2
    
                  
    3
    1. **Singleton Pattern:**
    4
       - Pros: Ensures only one instance of a class exists, provides a global point of access.
    5
       - Cons: Can introduce tight coupling and make unit testing difficult.
  6. Alias 'mainup' for Updating and Keep... Alias 'mainup' for Updating and Keeping 'main' Branch Up-to-Date While on Working Branch
    1
    # Set up a Git alias called 'mainup' that updates the 'main' branch and brings it up-to-date while staying on the current working branch  
    2
      
    3
    # Run the following command to set up the alias:  
    4
    git config --global alias.mainup '!git rev-parse --abbrev-ref HEAD > .git/CURRENT_BRANCH && git checkout main && git pull && git checkout $(cat .git/CURRENT_BRANCH) && rm .git/CURRENT_BRANCH'  
    5