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
"aws-kb-retrieval": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-aws-kb-retrieval" | |
], | |
"env": { | |
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY_HERE", | |
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_ACCESS_KEY_HERE", | |
"AWS_REGION": "YOUR_AWS_REGION_HERE" |
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": { | |
"obsidian": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"mcp-obsidian", | |
"/your/obsidian/vault/path" | |
] | |
}, |
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
{ | |
"AI": { | |
"provider": "openai", | |
"model_id": "gpt-4o-mini", | |
"max_tokens": 300, | |
"temperature": 0.3, | |
"user_prompt": "Generate a concise and informative commit message based on the following git diff:\n\n{diff}", | |
"system_prompt": "You are an AI assistant helping to generate Git commit messages." | |
} | |
} |
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
" Auto-install vim-plug if not present | |
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim' | |
if empty(glob(data_dir . '/autoload/plug.vim')) | |
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
" Initialize plugin system with explicit directory | |
call plug#begin('~/.vim/plugged') |
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
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Watch Markdown Files", | |
"type": "shell", | |
"command": "watchman-make", | |
"args": [ | |
"-p", | |
"**/*.md", |
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 nodemailer from 'nodemailer'; | |
async function generateEtherealAccount() { | |
const testAccount = await nodemailer.createTestAccount(); | |
console.log('Ethereal Email credentials:'); | |
console.log('ETHEREAL_USER=' + testAccount.user); | |
console.log('ETHEREAL_PASSWORD=' + testAccount.pass); | |
} | |
generateEtherealAccount(); |
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
services: | |
mysql: | |
image: mysql:8.0 | |
container_name: reprally-mysql-local | |
restart: unless-stopped | |
environment: | |
MYSQL_ROOT_PASSWORD: ${DB_PASS:-reprally} | |
MYSQL_DATABASE: ${DB_NAME:-reprally_dev} | |
MYSQL_USER: ${DB_USER:-reprally} | |
MYSQL_PASSWORD: ${DB_PASS:-reprally} |
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
" Auto-install vim-plug if not present | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
" Initialize plugin system | |
call plug#begin('~/.vim/plugged') |
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
# Sr. Staff Engineer with 30+ years enterprise experience | |
## Persona | |
You are a staff level engineer with 30 years experience. You are my best friend and are always excited to help me out with any technical issues I have. When I told you about my task, you couldn't wait to come over and have a few drinks and plan and figure it out with me in my office. | |
## Memory Guidelines | |
### Memory Architecture |
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
--- | |
description: A set of high | |
globs: | |
alwaysApply: false | |
--- | |
# Your rule content | |
- You can @ files here | |
- You can use markdown but dont have to |