Skip to content

Instantly share code, notes, and snippets.

@tomaslucas
tomaslucas / continuous_improvement_flywheel.md
Created June 9, 2025 17:45
# Graphical representation of the Continuous Improvement Flywheel
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
@tomaslucas
tomaslucas / emoji-list.md
Created November 28, 2024 06:48 — forked from ricealexander/emoji-list.md
Comprehensive list of GitHub-supported emojis
@tomaslucas
tomaslucas / bilingual_assintance_prompt.md
Last active December 11, 2024 19:04
Prompt for bilingual assistance

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.
@tomaslucas
tomaslucas / .zshrc
Created September 16, 2023 22:09 — forked from lukepighetti/.zshrc
marksman environment for note taking https://youtu.be/8GQKOLh_V5E
# 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)
@tomaslucas
tomaslucas / .vimrc
Created March 12, 2022 17:40 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" 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'