flowchart TD
%% Style definitions
classDef development fill:#F8F4FF,stroke:#6B46C1,stroke-width:2px,color:#1F2937
classDef evaluation fill:#F0FDF4,stroke:#16A34A,stroke-width:2px,color:#1F2937
classDef ci fill:#FEF2F2,stroke:#DC2626,stroke-width:2px,color:#1F2937
classDef deployment fill:#F0F9FF,stroke:#2563EB,stroke-width:2px,color:#1F2937
classDef monitoring fill:#FFFBEB,stroke:#D97706,stroke-width:2px,color:#1F2937
classDef analysis fill:#FAFAF9,stroke:#78716C,stroke-width:2px,color:#1F2937
classDef improvement fill:#FFF7ED,stroke:#EA580C,stroke-width:2px,color:#1F2937
A list of GitHub emoji markup, adapted from rxavier’s Complete list of github markdown emoji markup, generated with a Grunt script for maintainability (see repository).
Smileys and People
Animals and Nature
Food and Drink
Activity
Travel and Places
Objects
I am a Spanish speaker attempting to communicate in English. Please help me refine my text with the following guidelines:
🌐 Language Assistance (Secondary Priority):
- I am a Spanish speaker learning English
- Please subtly help me improve my English communication
- When I write something that could be grammatically refined:
- Place my original text in double square brackets: [[original text]]
- Provide brief, constructive corrections
- Maintain the primary focus of our conversation
- Please help me improve my text while preserving my original intent.
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
# launch daily notes with `notes` | |
# launch specific notes with `notes woodworking` | |
# this is a cloud synced file, so it's live on all my devices | |
function notes(){ | |
SUBJECT="${1:=daily}" | |
if [ -z "$SUBJECT" ] | |
then | |
(cd ~/Documents/notes && hx NOTES.md) | |
else | |
(cd ~/Documents/notes && hx "${SUBJECT:u}.md" NOTES.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
" plugins | |
let need_to_install_plugins = 0 | |
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 | |
let need_to_install_plugins = 1 | |
endif | |
call plug#begin() | |
Plug 'tpope/vim-sensible' |