Showing posts from node tag
TypeScript Stage 3 Decorators: A Journey Through Setup and Usage
So, What Are TypeScript Decorators? In the simplest of terms, a decorator in TypeScript is like a wrapping paper. You take a function or a class and wrap it with another function that adds some extr...
- Brian Baliach
- 19 May 2023
Bypassing GPT-4's Context Length Limitation with Sliding Window Technique
GPT-4, despite its incredible linguistic prowess, suffers from a noteworthy constraint: its context length limitation, which essentially refers to the maximum number of input tokens. The sliding wind...
- Brian Baliach
- 19 May 2023
The Final Act: Streaming Video and Receiving it in a WebRTC Video Conference (Part 3/3)
Welcome back, fellow video conferencing enthusiasts! In the previous parts of our blog series, we've covered accessing the webcam's video stream and setting up a signalling server. Now it's time for ...
- Brian Baliach
- 23 Apr 2023
gRPC: A Modern Approach to Microservices Communication
In today's world, microservices architecture has become a popular approach for building scalable and reliable applications. With microservices, an application is broken down into smaller, independent...