Congrats and nice work Michael Färber!
https://github.com/01mf02/jaq/releases/tag/v3.0.0
#jq #jaq
A Faster Alternative to Jq
https://micahkepe.com/blog/jsongrep/
#HackerNews #A #Faster #Alternative #to #Jq #json #parsing #programming #speed #optimization
I published my notes on using #jq to add an element to an array while ensuring you don't create a duplicate in the array.
This comes up when I'm writing a jq transformation I want to be able to run multiple times without adding a new entry each time (i.e. make it idempotent).
https://salferrarello.com/add-element-to-array-if-it-does-not-already-exist-with-jq/

This is how I use jq to conditionally add an element to an array only if it does exist there already. In other words, add an element to an array only if it doesn't create a duplicate in the array. This is particularly helpful when I'm scripting a JSON transformation and want to make it idempotent.
Afin de récupérer les textes des diapositives créées dans Polymny Studio (application en ligne permettant de réaliser des capsules vidéo pour commenter un pdf), j'ai découvert l'utilisation de la commande jq qui vaut le détour pour extraire les données d'un fichier json.
Toutes les info sont ici :
https://lofurol.fr/joomla/programmation/388-extraire-des-donnees-dun-fichier-json-vers-un-fichier-markdown
Fili (@filiksyos)
Openclaw 팁: 에이전트가 모든 세션을 저장하며 내장된 채팅 기록 검색 기능이 있지만 대부분의 VPS에서는 기본 활성화되어 있지 않다고 안내합니다. ripgrep과 jq를 설치(예: sudo apt install ripgrep jq)하면 채팅 히스토리를 검색할 수 있어 지난주 대화를 조회할 수 있다고 설명합니다. 개발/운영 팁성 기술 업데이트입니다.
Rudimentary TDD in #jq/#jaq:
1. Choose an input; make a text file for it.
2. Figure out the expected output; make a text file for it.
3. `diff expected.txt =(cat input.txt | jaq -L "lib" 'main_filter')`
It seems like real work to run multiple tests together, but this is a start.