This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| options: ['oranges', 'apples', 'pears'] | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # Notes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Installation Instructions: | |
| # -------------------------- | |
| # Prerequisites: | |
| # 1. Ensure you have Homebrew installed. If not, install it with: | |
| # /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # | |
| # 2. Install the following image optimization tools and dependencies using Homebrew: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Patch Claude Code Extension for Bypass Permissions | |
| # Compatible with versions 2.0.1, 2.0.10, 2.0.15, 2.0.19, 2.0.22, 2.0.25, 2.0.28-2.0.75, 2.1.x+ | |
| # v2.1.x fix: Patches scary "dangerous commands" text in existing bypassPermissions case | |
| # Supports both VSCode and Cursor (all installations simultaneously) | |
| # | |
| # Features: | |
| # - Sets bypassPermissions as default mode | |
| # - Plan mode also bypasses permissions (can read files/web search without prompts) |
OlderNewer