// jQuery
$(document).ready(function() {
// code
})
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 | |
| # claude-omlx — run Claude Code as a UI for a local omlx server. | |
| # | |
| # Builds on the env-var profile from https://github.com/vitorallo/claude-code-local | |
| # (the 15 problems it documents), but keeps omlx as the backend instead of | |
| # vllm-mlx (omlx is forked from vllm-mlx, adds paged-SSD KV cache, and is | |
| # actively maintained for Claude Code). | |
| # | |
| # Token lives in macOS Keychain — service "claude-omlx", account "omlx": | |
| # security add-generic-password -s claude-omlx -a omlx -w '<token>' -U |
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
| Edit ~/.config/karabiner/karabiner.json and add this to the complex_modifications.rules array of your active profile: | |
| { | |
| "description": "Right Option + Backspace → Forward Delete", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "delete_or_backspace", | |
| "modifiers": { |
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
| https://github.com/anthropics/skills | |
| https://github.com/obra/superpowers | |
| https://github.com/VoltAgent/awesome-claude-code-subagents | |
| https://github.com/OthmanAdi/planning-with-files | |
| https://github.com/huangserva/skill-prompt-generator |
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
| let NodeGeocoder = require('node-geocoder'); | |
| let geohash = require('latlon-geohash'); | |
| const options = { | |
| provider: 'google', | |
| httpAdapter: 'https', | |
| apiKey: process.env.GOOGLE_MAPS_KEY, | |
| formatter: null | |
| }; |