VCVinay Chaudhariinai4all.hashnode.dev·2d ago · 9 min readFastAPI + LangChain + Docker: My Blueprint for Shipping LLM Microservices to ProductionThe problem nobody warns you about Every LLM demo looks the same. A notebook, one API call, a clean prompt, a great answer. Everyone claps. Then someone says "let's ship it," and that's where most pro00
YPYogeshwar Peelainexploitnotes.hashnode.dev·2d ago · 13 min readFAM CTF: The Library to The Endpoint WriteupExecutive Summary FAM is a mobile CTF challenge distributed as an Android APK (fam-ctf.apk) with four staged flags, each themed around a different layer of the app's Firebase backend: The Library (nat00
ASArfaat Shaikhinapexcraftbyarfaat.hashnode.dev·3d ago · 5 min readIntegrating Razorpay with Oracle APEX Using a Free Node.js Backend on RenderDemo App - https://oracleapex.com/ords/r/tecverse/eventrix280903/loginCreate a new User and try. Introduction Oracle APEX applications often require payment functionality for bookings, registrations,10
SDSulagna Dutta Royinsulagnaduttaro.hashnode.dev·5d ago · 7 min readREST APIs Explained for Beginners: What Makes Them So Popular?Hey. In the first api series blog we've discussed about what an API is, you've probably come across the term REST API. At first, it might sound like a completely different technology but don't worry, 00
AGAkshay Guptainakshaykgupta.hashnode.dev·6d ago · 5 min readHTTP QUERY Method: Why It Matters and Why Enterprise Adoption Will Take YearsFor decades, REST API designers have lived with an uncomfortable compromise. Need to retrieve data? Use GET. Need to send a complex search object containing filters, sorting, pagination, nested condit00
YPYogeshwar Peelainexploitnotes.hashnode.dev·Jul 13 · 8 min readHackTheBox: NeoVault Challenge WriteupSummary NeoVault is a small banking app (Next.js frontend + REST API) that lets users register, transfer funds, and download PDF statements. The API ships in two parallel versions, v1 and v2. v2 patch00
KKKishore K Sharmainblogs.kishorek.dev·Jul 8 · 9 min readThe HTTP QUERY Method: A GET That's Allowed to Have a BodyEvery search endpoint you've ever built is lying about what it does. Type a query into a search box, hit enter, and the browser fires a POST /search. POST. The verb that means create a thing, change t00
MKMahesh Kulkarniinmaheshkulkarni.hashnode.dev·Jul 6 · 7 min readMeet HTTP QUERY: The New HTTP Method for Search APIsIf you've built REST APIs for a while, you've probably faced this situation. You need to build a search endpoint. At first, it's simple—maybe just a couple of filters. So you use a GET request with qu00
JCJose Claroinjclaro.hashnode.dev·Jul 7 · 25 min readBuilding Reusable Workflow Email Alerting in Oracle EPM Planning with Groovy and RESTNative notifications are useful, but they do not always fit the way an internal Planning workflow actually works. A workflow item may need to move through multiple review states, functional queues, en00
AGAnshul Ghogreinanshulghogre.hashnode.dev·Jul 5 · 8 min readHTTP Just Got a New Method: Meet QUERYFor as long as REST APIs have existed, developers have been quietly breaking the rules every time they built a "search" endpoint. You needed a request body for a complex filter, so you reached for POS00