Himanshu SoniforHimanshu Sonihimanshusoni30.hashnode.dev·Nov 11, 2024Efficient JSON Processing with jq Command-Line ToolIn this article, we will explore the command-line tool jq, a powerful and flexible utility for managing and parsing JSON files. Why use jq when JSON can be managed with other desktop and online tools? jq is easy to install. It has no runtime depende...Discuss·27 readsCommand Line Toolsjq
Bernice Choybernicecpz.hashnode.dev·Sep 2, 2024How to Verify Keys in JSON Using jqContext A peer seek my inputs on parsing JSON. The requirements are: To determine whether a key exists or available without jq throwing error The queries are to be executed in a pipeline Overview I set out to explore the different ways of parsing...DiscussAutomation and Toolsjq
Peter Walkerpeterwalker.dev·Jul 18, 2024Navigating AWS Massive Public IP JSON FileHow to get all us-east-1 Public IP Addresses for EC2 If necessary - Mac (install brew, then install jq) and Linux below that: /bin/bash -c "$(curl -fsSL raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew install jq sudo apt install jq...Discuss·43 readsAWS
Philippe Charrièrek33g.hashnode.dev·May 31, 2024Function Calling with Ollama and LLMs that do not support function callingIn a previous blog post, I explained "Function Calling" and how to use it with Mistral 7B, which implements this feature. You can read it here (it's a prerequisite for reading the present blog post): Function Calling with Ollama, Mistral 7B, Bash and...Discuss·372 readsOllama from scratchollama
Milan Aleksićblog.aleksic.dev·May 17, 2024Short Note: use DuckDB as (pipe) jq replacementThe usage of the jq can be substituted sometimes by DuckDB with a bit cleaner syntax. For example, to get properties Id and State.Status from a list of active containers in docker one might do this: ➜ docker inspect f42 | jq '.[] | "\(.Id) \(.State.S...Discuss·52 readsBash
Mohamad MahmoodforHashNoteshashnotes.hashnode.dev·Mar 17, 2024Ubuntu Install jqUpdate the package repository: sudo apt update Install jq: sudo apt install jq Verify the installation: jq --versionDiscussUbuntu
Ram Shankar Choudharydevhaven.hashnode.dev·Mar 9, 2024Streamlining Git Workflow with Multiple GitHub Accounts and GitHub CLIManaging multiple Git accounts is a common scenario for developers engaged in various projects or toggling between personal and professional repositories. The necessity for distinct identities becomes crucial to ensure proper attribution and maintain...DiscussGitHub
Omkar Kirpanomkarkirpan.hashnode.dev·Feb 26, 2024Mastering jq: The Ultimate Guide to Data Transformation Like a Pro1. Overview JSON is a popular structured data format that is utilized in most modern APIs and data services. It is especially popular in online applications because of its lightweight design and interoperability with JavaScript. Unfortunately, shells...Discuss·30 likes·52 readsjq
Yuvaraj Selvarajanyuvarajselva.hashnode.dev·May 9, 2023How to handle Multi-Cluster setup for AKS in your local machineIntroduction Are you tired of juggling of between multiple clusters in your local machine?{ } Then, it is time to automate your local setup and it's configuration. If you're working as a cluster-admin for anyone of the enterprises, then this blog...Discuss·5 likes·48 readsjq
Wilhelm Murdochwilhelm.codes·Sep 28, 2022Filtering Docker Containers with JqTL;DR if you want to skip all this and just get to the good stuff, click here to download and run dq. As is the case with any seasoned DevOps engineer, I have a set of tools in my kit that I simply cannot live without. If I had to distill them into ...Discuss·16 likes·413 readsDocker