(chore): initial MVP release

This commit is contained in:
2025-07-26 02:21:20 +05:30
commit c33fb50194
8 changed files with 1231 additions and 0 deletions

9
https-test.js Normal file
View File

@@ -0,0 +1,9 @@
// Node.js script to make an HTTPS GET request and log status and content type.
// Expects: Status: 200; Content-Type: application/pdf
import https from "https";
https.get("<https://your-domain/path/to/your-resume.pdf>", (res) => {
console.log("Status:", res.statusCode);
console.log("Content-Type:", res.headers["content-type"]);
});