GET
Everything on SkillVeris tagged GET — collected across the glossary, study notes, blog, and cheat sheets.
9 resources across 2 libraries
Study Notes(7)
Making Your First Request
A step-by-step walkthrough of building and sending your first GET request in Postman, reading the response, and saving the request for reuse.
Selecting Elements with cy.get()
Learn how Cypress's cy.get() command queries the DOM using CSS selectors, and how to choose selectors that are stable, readable, and resistant to markup change…
Connecting to Data Sources
How Power BI connects to files, databases, and web sources, including authentication methods and the tradeoffs between Import, DirectQuery, and Live Connection.
Flash Messages
Use Flask's flash() system to show one-time notifications like success and error alerts to users after a redirect, using session storage under the hood.
Strings in Redis
Learn how the Redis String type works as a binary-safe byte sequence, covering SET/GET semantics, atomic counters, expiration, and bit-level operations.
kubectl Basics
A practical introduction to kubectl, the command-line tool used to interact with a Kubernetes cluster's API server.
Superglobals and Request Data
Explore PHP's built-in superglobal arrays that expose incoming HTTP request data, server information, and environment variables to every scope without needing…
Interview Questions(2)
HTTP Methods Explained (GET, POST, PUT, PATCH, DELETE)
HTTP methods define the intended action on a resource: GET retrieves data safely without side effects, POST creates a resource or triggers processing, PUT repl…
Difference Between GET and POST
GET retrieves data and puts its parameters in the URL query string, making it idempotent, cacheable, and safe (no side effects), while POST submits data in the…