Found 269 bookmarks
Newest
ibraheemdev/modern-unix
ibraheemdev/modern-unix
A collection of modern/faster/saner alternatives to common unix commands.
·github.com·
ibraheemdev/modern-unix
TIL: You can use Use `yq` to Mass Edit Markdown Files | Haseeb Majid
TIL: You can use Use `yq` to Mass Edit Markdown Files | Haseeb Majid
TIL you can use yq to mass edit markdown files yq yq is a tool similar to jq except it allows you to edit, JSON, XML and YAML. It has a very similar syntax to parse and edit files as jq does. I was recently adding new open graph images to all of my blog posts. After creating these images and storing them next to the post, where the structure looks like:
·haseebmajid.dev·
TIL: You can use Use `yq` to Mass Edit Markdown Files | Haseeb Majid
Kinopio
Kinopio
Kinopio is the spatial thinking tool for building ideas and solving hard problems. Create spaces to brainstorm, research, plan and take notes
·kinopio.club·
Kinopio
The Ultimate Interactive JQ Guide
The Ultimate Interactive JQ Guide
Learn how to search, query, and modify JSON data with 25 interactive jq examples and explanations
·ishan.page·
The Ultimate Interactive JQ Guide
Albus - Explore, Learn, Create with AI
Albus - Explore, Learn, Create with AI
Albus helps in generating personalized and engaging content, making it a valuable tool for market researchers, designers, and content creators, thereby increasing efficiency and creativity.
·albus.org·
Albus - Explore, Learn, Create with AI
Dysperse
Dysperse
Dysperse dashboard
·my.dysperse.com·
Dysperse
Gut - Ease your journey with Git
Gut - Ease your journey with Git
Gut is a user-friendly Git CLI for Windows, Mac, and GNU/Linux. With intuitive commands and streamlined workflows, Gut simplifies the process of using Git's complex system, allowing you to focus on your code.
·gut-cli.dev·
Gut - Ease your journey with Git
Moodboard Creator
Moodboard Creator
The AI tool to kick-off your next branding project
·moodboardcreator.dev·
Moodboard Creator
Examples - OpenAI API
Examples - OpenAI API
You will be provided with Python code, and your task is to calculate its time complexity.
·platform.openai.com·
Examples - OpenAI API
Outline – Team knowledge base & wiki
Outline – Team knowledge base & wiki
A modern team knowledge base for your internal documentation, product specs, support answers, meeting notes, onboarding, & more…
·getoutline.com·
Outline – Team knowledge base & wiki
Llama Hub
Llama Hub
A hub of data loaders for GPT Index and LangChain
·llamahub.ai·
Llama Hub
DIYgod/RSSHub-Radar
DIYgod/RSSHub-Radar
🍰 Browser extension that simplifies finding and subscribing RSS and RSSHub
·github.com·
DIYgod/RSSHub-Radar
Table Convert Online
Table Convert Online
This converter is used to convert Excel (or other spreadsheets) into Markdown Table. it's also easy to make, create and generate Markdown Table online via Table Editor.
·tableconvert.com·
Table Convert Online
Fuzzy search through files in Visual Studio Code
Fuzzy search through files in Visual Studio Code
Visual Studio Code already supports searching across all the project files. But let’s make searching inside them even more ergonomic and easier to use.
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