Skip to content
View thedevelobear's full-sized avatar
🐻
out in the woods
🐻
out in the woods
Block or Report

Block or report thedevelobear

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. react-rewards react-rewards Public

    A package containing a few micro-interactions you can use to reward your users for little things and make them smile!

    TypeScript 1.5k 52

  2. react-three-fibear react-three-fibear Public

    🐻 3️⃣ D

    JavaScript 4 1

  3. Cognito custom verification email Cognito custom verification email
    1
    
                  
    2
    var CustomMessage_ForgotPassword = 
    3
    `
    4
    <!DOCTYPE html>
    5
    <html
  4. ZSH Rainbow - a function that turns ... ZSH Rainbow - a function that turns your username in zsh to a random emoji. Paste it in .zshrc
    1
    prompt_context() {
    2
      # Custom (Random emoji)
    3
      emojis=("⚑️" "πŸ”₯" "πŸ’€" "πŸ‘‘" "😎" "🐸" "🐡" "πŸ¦„" "🌈" "🍻" "πŸš€" "πŸ’‘" "πŸŽ‰" "πŸ”‘" "πŸ‡ΉπŸ‡­" "🚦" "πŸŒ™")
    4
      RAND_EMOJI_N=$(( $RANDOM % ${#emojis[@]} + 1))
    5
      prompt_segment black default "${emojis[$RAND_EMOJI_N]} "