Run brew bundle dump --all --verbose --file=- | pbcopy
tap "coder/coder"
tap "homebrew/bundle"
tap "homebrew/services"
tap "koekeishiya/formulae"
tap "olets/tap"
tap "rfidresearchgroup/proxmark3"
tap "stripe/stripe-cli"
| { | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "rules": [ | |
| { | |
| "description": "KBD: BluetoothConverter、IKBC_C87、XD60: Swap Win/CMD and Alt/Opt", | |
| "enabled": false, | |
| "manipulators": [ | |
| { |
| copy all mac apps list | |
| ``` | |
| #!/bin/zsh | |
| # Basic setup | |
| setopt ERR_EXIT | |
| TIMESTAMP=$(date +'%Y%m%d_%H%M%S') | |
| OUTPUT_FILE="${HOME}/Desktop/mac-apps_${TIMESTAMP}.txt" |
| brew "act" | |
| brew "actionlint" | |
| brew "aider" | |
| brew "angle-grinder" | |
| brew "ast-grep" | |
| brew "atuin" | |
| brew "awscli-local" | |
| brew "bat" | |
| brew "biome" | |
| brew "bitwarden-cli" |
Run brew bundle dump --all --verbose --file=- | pbcopy
tap "coder/coder"
tap "homebrew/bundle"
tap "homebrew/services"
tap "koekeishiya/formulae"
tap "olets/tap"
tap "rfidresearchgroup/proxmark3"
tap "stripe/stripe-cli"
| <!DOCTYPE html> <html lang=en style><!-- | |
| Page saved with SingleFile | |
| url: https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/MacOSXDirectories/MacOSXDirectories.html#//apple_ref/doc/uid/TP40010672-CH10-SW1 | |
| saved date: Tue Jan 07 2025 09:57:42 GMT-0500 (Eastern Standard Time) | |
| --><meta charset=utf-8> | |
| <title>macOS Library Directory Details</title> | |
| <meta http-equiv=X-UA-Compatible content="IE=7"> | |
| <meta id=book-resource-type name=book-resource-type content=Guide> | |
| <meta scheme=apple_ref id=identifier name=identifier content=//apple_ref/doc/uid/TP40010672> | |
| <meta id=document-version name=document-version content=4.4.6> |
| # Brew list | |
| abseil | |
| act | |
| actionlint | |
| angle-grinder | |
| aom | |
| aribb24 | |
| arm-none-eabi-gcc | |
| ast-grep |
Tagline: "Secure AI for Healthcare: Where Privacy Meets Intelligence" (More memorable and emphasizes both security and healthcare focus)
Elevator Pitch: Our enterprise platform, HealthGuardAI, revolutionizes healthcare communication by providing a HIPAA-compliant environment for managing and deploying AI solutions. We combine military-grade encryption with healthcare-specific LLM fine-tuning to enable secure, intelligent automation while ensuring zero data leakage. Our solution reduces administrative overhead by 60% while maintaining complete regulatory compliance and auditability.
Market Opportunity:
| ''' | |
| You're playing a game against an opponent with the following rules. | |
| - Goal : maximize the number of nodes in your region | |
| - How to Play : You pick the starting node. At each turn, your region grows by 1 step. | |
| Given an undirected graph of the game + your opponent's pick, pick the best node for you. | |
| ''' | |
| from collections import deque |
| ''' | |
| Using one of the languages from {Go, Python, Java, C++}, | |
| implement a function/method that is given two strings and returns whether one can be obtained by the other after removing exactly one character. | |
| Specifically, given two strings x and y, return true if and only if (1) x can be obtained by removing one character from y and/or (2) if y can be obtained by removing one character from x. | |
| Assume that both strings only contain English alphabets and that neither is an empty string. | |
| Note that x and y can be quite long (each containing millions of characters). | |
| ''' |