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

Block or report thedevelobear

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  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 53

  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]} "