Investigating request payload sent using tcpdump

Investigating request payload sent using tcpdump

Use case: Usually, when integrating with external service endpoints in your backend application, you will be using libraries (require('https') for Nodejs, import requests or import aiohttp for Python, HttpUrlConnection for Java, etc.) to make HTTP calls. It might be difficult...

Git: diff, stash and apply

Git: diff, stash and apply

Use case - You have some changes, and you do not want to commit to upstream/origin, but you want to share the changes to your friend/colleague, so that they can work on top of your changes, then you can follow...