#ripgrep — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #ripgrep, aggregated by home.social.
-
🔥 Breaking news: RipGrep's musl binaries occasionally #crash during huge searches. Because who wouldn't want their super-fast text search tool to take a coffee break during crucial tasks? 🤦♂️ GitHub Copilot, are you listening? 🚀
https://github.com/BurntSushi/ripgrep/issues/3494 #RipGrep #GitHubCopilot #TextSearch #NewsTech #HackerNews #ngated -
RipGrep musl binaries occasionally segfault during very-large searches
https://github.com/BurntSushi/ripgrep/issues/3494
Comments: https://news.ycombinator.com/item?id=49133889
#HackerNews #RipGrep #segfault #musl #binaries #search #issues #segfaults #performance
-
Pretty nice writeup of tracking down a #linux kernel bug that caused #ripgrep to rarely segfault.
https://github.com/dfoxfranke/ripgrep-3494-analysis -
Comme chaque année au 24ème, nous faisons des dons à des logiciels libres.
Cette année nous avons pu aider 38 projets : https://github.com/24eme/banque/blob/master/data/dons.csv
#Fatfree #Pulsar #Yunohost #Framasoft #Borg #Debian #tinc #php #etherpad #gnome #git #organicmaps #mumble #fdroid #kitty #signal #ripgrep #fzf #fd #tpope #comaps #mastodon #liberachat #Couchdb #SponsorBlock #Anubis #GrapheneOS #GNU #FFMPEG #Logseq #FairScan #NewPipe #Arch #GadgetBridge #FossifyCalendar #Letsencrypt #Phpactor #Sudo
1/2 🔽
-
Топ-советы по Claude Code от Бориса Черни и не только: гайд на 56k звёзд — что реально работает, а что мимо
Наткнулся на репозиторий claude-code-best-practice — под 56 тысяч звёзд, #1 в GitHub Trending, внутри собраны в том числе советы самого создателя Claude Code. И поймал странное чувство: весь последний год я по кусочкам писал статьи ровно про то, что тут лежит в одном месте. Оркестрация, индексация кода, память агентов, выбор модели — это всё узлы одной карты. Но в одном месте карта спорит с моим опытом. Репо жёстко заявляет: «agentic search (glob+grep) бьёт RAG, векторные БД мы попробовали и выкинули». А я прямо сейчас внедряю Graphify во все проекты — и он работает: быстро, точно, сокращает токены. Кто из нас прав? Полез разбираться — и нашёл, что сам создатель Claude Code признал: ранний Claude Code использовал RAG, но agentic search «обогнал всё, и это было неожиданно». Правда, добавил: «оценивали в основном по ощущениям». В статье распутываю этот спор и выкладываю навигатор по репозиторию на русском.
https://habr.com/ru/articles/1045510/
#Claude_Code #AIагенты #agenticengineering #RAG #ripgrep #Graphify #оркестрацияагентов #codesearch
-
Z pewnością wielu z Was zna narzędzie #grep, wyszukujące fraz w plikach tekstowych. Ale powstało coś, co ma go zastąpić i nazywa się - a jakże - #ripgrep. Oto poradnik tego "pogromcy".
https://dev.to/shrsv/ripgrep-your-journey-from-novice-to-power-user-2jb8
-
#Ripgrep seriously FTW. Honestly, grep sucks big time in comparison, now.
-
Ah, the classic "my #grep can beat up your grep" showdown! 🎩✨ Behold, a blog post about ripgrep's speed—because clearly, the world was desperate for yet another mind-numbing benchmark of #terminal #wizards whispering sweet nothings to their consoles. 🐢💨 #Rust #fanboyism never looked so thrilling! 🔥🕵️♂️
https://burntsushi.net/ripgrep/ #showdown #ripgrep #speed #HackerNews #ngated -
Ripgrep is faster than {grep, ag, Git grep, ucg, pt, sift}
https://burntsushi.net/ripgrep/
#HackerNews #Ripgrep #Faster #grep #ag #Git #grep #ucg #pt #sift #performance #optimization
-
To search for Google API keys recursively in the current folder and its sub-folders with ripgrep:
rg 'AIza[0-9A-Za-z\-_]{35}' -o
Also shared on Shodan Snippets:
https://snippets.shodan.io/c/FHw2r7wWIFmjVAfG
#Security #OneLiner #Google #GoogleAPIKeys #APIkeys #ripgrep #Regex #BugBounty #Snippet
-
Here is mine :
1. #git :blobcatheart:
2. #lsd https://github.com/lsd-rs/lsd :blobcatrainbow:
3. #cat (which is actually an alias over #bat https://github.com/sharkdp/bat 🦇)
4. #rg #RipGrep https://github.com/BurntSushi/ripgrep 🪦
5. #Nix https://nixos.org :nixos: -
I’ve been leaning on ripgrep a lot lately. I always knew it existed, but I never fully appreciated it until I started working with larger, fast-changing codebases. Now rg is one of my most-used commands.
What I love most is that it respects .gitignore, so it skips things like venv and node_modules without extra effort. And honestly, the overall UX is just fantastic.
-
🚀 #Ripgrep 15.0.0: the latest in a thrilling saga of text searching — because who doesn't crave yet another tool to do what we've been doing since the dawn of UNIX? 🙄 Meanwhile, #GitHub drowns us in buzzwords like AI and security, hoping we won't notice it's all just new packaging on the same stale sushi. 🍣
https://github.com/BurntSushi/ripgrep/releases/tag/15.0.0 #TextSearching #SoftwareUpdates #UNIX #Tools #HackerNews #ngated -
For all you NeoVim VimWiki users out there: I wrote a plugin to do a fulltext search through your VimWiki files with Telescope. You can also exclude files with words prefixed with "!". For example:
'log !sunday updates !neovim' will find all files containing the words "Log" and "Updates" but will exclude files with the words 'Sunday' or 'NeoVim'. As long as you only type lower case letters the search is case-insensitive.
You can also group words with double quotes like "Edit Notes", which will find the exact term. You also can exclude these terms with the exclamation mark: '!Edit Notes' will find all files which do not contain the term 'Edit Notes'. You can mix it with single word searches as you please.
It's hosted on Codeberg.org and not on GitHub, so you have to specify the full URL in your plugin setup file. I'm very bad at naming things, so I simply called the plugin 'find-vimwiki-words.nvim'.
You can find more information in the README.md in the repo which is located on Codeberg.org:
https://codeberg.org/fab/find-vimwiki-words.nvim
It would be nice to get some feedback.
#NeoVim #VimWiki #Plugin #Telescope #LUA #bash #ripgrep -
How can #ripgrep be so abnormally fast?
Searching through my 87GB source code directory in half a second.
Like... WHAT?
-
How To Search Inside Files In Linux Using Grep, Find And Ripgrep #Linux #SearchFiles #grep #find #ripgrep #Linuxcommands #Linuxbasics #Linuxhowto
https://ostechnix.com/search-inside-files-linux-grep-find-ripgrep/ -
Yesterday I wrote a little note-taking tool based on #fzf and #ripgrep for myself and I'm quite happy with it so I thought I'd push it to #codeberg to share it with others but I really wanted to include a little GIF in the README showing it in action to demonstrate how it works, but when converting my screencap video to a GIF, no matter what I do, it's played back at like 25% of the original speed in #Firefox. And that's when I realized that all the people including GIFs of their CLI tools in their GitHub/Codeberg READMEs likely aren't annoyingly slow typers after all, it's the f*cking browser. 😒
-
Just published an article on my blog. If you're a RipGrep user, you should take a look. It might solve your issue.
https://andrewwoods.net/blog/2025/ripgreps-annoying-message/
-
bennypowers.dev/posts/fun-with-ripgrep/
Fun with #ripgrep, part 1. -
#ripgrep replacement in #bash with #GNU #grep.
https://forgejo.mueller.network/Zentonic/ripgrepgeneric.git
ripgrepgeneric: da, wo es kein ripgrep gibt ☝️
zum beispiel auf alten, zu migrierenden, servern. auf denen es wohl noch alte configs zu durchforsten, aber keine attraktive möglichkeit ripgrep nachzuinstallieren, gibt.
da sucht man, in welcher datei das suchwort drinsteht und wenn ja, an welcher stelle.
dieser zweizeiler mit variablenübernahme wird durch das script komftebel™ vertreten.