Showing posts from typescript tag

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
- 12 May 2023
Setting Up a Signalling Server: Client Video Streaming (Part 2 of 3)
Welcome back to our thrilling three-part series on setting up a peer-to-peer connection for client video streaming. In [Part 1](https://www.balysnotes.com/setting-up-a-peer-to-peer-connection-video-s...

Brian Baliach
- 07 May 2023
Setting Up a Peer-to-Peer Connection: Client Video Streaming (Part 1 of 3)
Welcome to the first part of our three-part series on setting up a peer-to-peer (P2P) connection to send a video stream between two clients (a server serving as an intermediary only for initial conne...

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...

Brian Baliach
- 20 Apr 2023
Tic-Tac-Toe: Exploring a TypeScript Code Example
Hello, fellow code connoisseurs! I've recently decided to refresh my memory on data structures and algorithms. This current project is inspired by freecodecamp's tic-tac-toe example. Buckle up, and l...