shlogg · Early preview
Himanshu Singh Tomar @himanshusinghtomar

Automate Google Meet Creation With Google Calendar API

Automate Google Meet creation with Google Calendar API & Service Account: enable API, set up service account, generate JWT token, exchange for OAuth 2.0 token, create calendar event with Meet link using Node.js and Google APIs.

Understanding JavaScript Promises In 60 Characters

Mastering JavaScript Promises simplifies async code handling, avoiding 'callback hell'. Understand Promise states (Pending, Fulfilled, Rejected), methods (then(), catch(), finally()), and use cases like chaining and error handling.

Asynchronous JavaScript: Callbacks, Promises, Async/Await Explained

JavaScript is single-threaded, but uses async programming for I/O ops like API requests or file reading. Async/Await simplifies writing async code, replacing callbacks & making Promises more intuitive.