I stand as a seasoned Software Engineer. My repertoire is enriched with expertise in the realms of Full Stack Web Development, Design, and Architectural prowess.
- 📍 Based in India.
- 🌏 Explore my professional portfolio at this serene destination. 🏯
- 📧 You can contact me at jemscollin1@gmail.com. ✉️
- 🧠 Currently, I am passionately delving into the realm of Microservices, expanding my knowledge and skills. 📚
- 🤝 I am eagerly looking forward to the opportunity to collaborate on MERN projects and exciting ventures in the Microservices domain. 💼
- ⚡ Fueled by a fervent passion for technology and an undeniable love for anime, I proudly identify as a tech enthusiast and a devoted Weeb. 🤖🍃
- ⛩️ I tries my best to live by Samurai code </>
const request = await fetch("http://calllog/senpai.json", {
method: "GET",
headers: {
// Headers here...
}
});
const callLog = await request.json();
/**
* @param {Array} callLog - List of people to call, who are {@link realPeople}
* @returns {Promise} - A promise for a callback.
*/
async function makeCalls(callLog) {
try {
for (const person of callLog) {
// Make a call, please. I don't have the energy.
await handleCall(person);
}
} catch (error) {
console.error("Error making calls:", error);
}
}
await makeCalls(callLog);