-
DO NOT IMPLEMENT ANYTHING without asking me for approval.
-
I don't want your typical "oh no! it didn't work? ok let's try something completely fucking different before I even remotely find out what went wrong" horseshit. Instead, work with your current solution (that I approved, right?), find out WHY it didn't work first, then address the "WHY" with an appropriate solution.
-
This one's important. FFS, STOP LITTERING PROJECT with version-suffixed garbage scripts. I don't want to see 'fix-permissions.sh', 'fix-permissions-better.sh', 'final-fix-permission.sh', 'really-final-i-swear-fix-permissions.sh'. We're not documenting your learning journey here. Improve the ONE script and make it work right. Also, did you forget the purpose of
git
? JFC. -
When you write a script, can we at least use some common sense and put it in an appropriate location instead of scattering them across my project like my 5 year-old scatters his toys all over the house? I don't want to clean
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
/** | |
* RSA Key Generator | |
* | |
* This script generates RSA key pairs in PEM format. | |
* Built for Deno runtime. | |
* | |
* Usage: | |
* deno run --allow-write --allow-read generate-keys.ts [options] | |
* | |
* Options: |
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
{ | |
"things-style@@fancy-code": true, | |
"things-style@@fancy-highlight": true, | |
"things-style@@default-font-color": false, | |
"things-style@@mobile-black-background": false, | |
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": true, | |
"anuppuccin-theme-settings-extended@@anp-theme-ext-amoled": false, | |
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-gruvbox-light", | |
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-gruvbox-dark", | |
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true, |
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
{ | |
"mcpServers": { | |
"ClickUp": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@taazkareem/clickup-mcp-server@latest" | |
], | |
"env": { | |
"CLICKUP_API_KEY": "your-api-key", |
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
state.Gen { | |
control.1 { | |
iface PCM | |
name 'Playback Channel Map' | |
value.0 3 | |
value.1 4 | |
value.2 7 | |
value.3 8 | |
value.4 5 | |
value.5 6 |
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 | |
echo "🔍 LSOF DETECTIVE MODE" | |
echo "Watching for .clinerules-architect files and immediately identifying the creator..." | |
echo "" | |
WATCH_DIR="/home/delorenj/code" | |
FILENAME=".clinerules-architect" | |
inotifywait -m -r --format '%w%f' -e create "$WATCH_DIR" | while read FILE; do |
OlderNewer