Skip to content

Instantly share code, notes, and snippets.

View devotox's full-sized avatar
💻
Innovating

Devonte devotox

💻
Innovating
View GitHub Profile
@devotox
devotox / controllers.application.js
Last active February 11, 2020 08:42
Select Option Issue
import Ember from 'ember';
export default Ember.Controller.extend({
options: ['oranges', 'apples', 'pears']
});
@devotox
devotox / osx_bootstrap.sh
Last active June 2, 2020 19:58 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/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:
@devotox
devotox / optimize-images.sh
Created October 20, 2023 20:54
Optimize All files in Repository While skipping any files in .gitignore
#!/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:
@devotox
devotox / patch-claude-code-extension.sh
Last active February 12, 2026 15:57 — forked from ColeMurray/patch-claude-code-extension.sh
claude code cursor extension yolo patch
#!/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)