Himanshu 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...33 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...43 readsAutomation 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...61 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...406 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...56 readsBash
Mohamad Mahmoodhashnotes.hashnode.dev·Mar 17, 2024Ubuntu Install jqUpdate the package repository: sudo apt update Install jq: sudo apt install jq Verify the installation: jq --versionUbuntu
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...GitHub
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...30 likes·53 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...5 likes·48 readsjq
Damianos Parkdamianos.hashnode.dev·Sep 4, 2022aws-cli essential commands - v1Intro As we experiencing today, AWS is very powerful cloud and they provide us elaborately developed system. Because of this there are so many information and commands to verify at every development step. To reduce my working time I intentionally try...34 readsaws cli