Archives

Archives

584 bookmarks
Newest
Fuzzy search through files in Visual Studio Code
Fuzzy search through files in Visual Studio Code
shell: #!/usr/bin/env bash ## # Interactive search. # [[ -n $1 ]] && cd "$1" # go to provided folder or noop export FZF_DEFAULT_COMMAND="rg --column --line-number --no-heading --color=always -- ''" selected=$( fzf \ --ansi \ --delimiter : \ --bind "f12:execute-silent:(code -g $PWD/{1..3})" \ --preview-window 'up,60%,border-bottom,+{2}+3/3,~3' \ --preview 'bat -f --highlight-line={2} {1}' | cut -d":" -f1,2,3 ) [[ -n $selected ]] && code -g "$PWD"/"$selected" For example, on macOS, you can copy the script, then run this in your terminal: pbpaste > ~/bin/rgf # ~/bin is in my $PATH chmod +x ~/bin/rgf
·vladimirzdrazil.com·
Fuzzy search through files in Visual Studio Code
All-In On AI
All-In On AI

I want to build something like this for Ruby for All

·all-in-on-ai.vercel.app·
All-In On AI
Examples - OpenAI API
Examples - OpenAI API
You will be provided with meeting notes, and your task is to summarize the meeting as follows: -Overall summary of discussion -Action items (what needs to be done and who is doing it) -If applicable, a list of topics that need to be discussed more fully in the next meeting.
Meeting summary prompt
·platform.openai.com·
Examples - OpenAI API
Onboard AI
Onboard AI
Add repos and ask questions about the code
·app.getonboardai.com·
Onboard AI