Skip to content
View BardiFarsi's full-sized avatar
đź’»
Focusing on Networking Protocols & Computer Architecture
đź’»
Focusing on Networking Protocols & Computer Architecture

Block or report BardiFarsi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. TCPChatRoom TCPChatRoom Public

    The project is in its **early stages**, with initial steps already implemented. The goal is to create a real-time chat application that supports multiple users. A central server will handle WebSock…

    C++ 1

  2. MOS_6502_CPU MOS_6502_CPU Public

    This project is a simulation of the MOS 6502 CPU, implemented in C++. The MOS 6502 was a revolutionary microprocessor in the late 1970s and is still popular in retrocomputing and emulation communit…

    C++ 1

  3. FactoryDesignPattern FactoryDesignPattern Public

    Factory Design Pattern with Modern C++20

    C++

  4. SingleTon SingleTon Public

    This repository contains an implementation of the Singleton Lazy Initialization design pattern in C++20. The Singleton pattern ensures that a class has only one instance and provides a global point…

    C++

  5. LazyInitialization LazyInitialization Public

    This C++20 solution enables lazy initialization for multithreaded tasks. It efficiently initializes an expensive object only when needed, ensuring thread safety. It utilizes std::once_flag and std:…

    C++

  6. MemoizationMultiThreading MemoizationMultiThreading Public

    Sample project demonstrating the use of memoization, dynamic programming, and multi-threading to efficiently handle repeated heavy tasks and optimize performance. Results are cached for quick retri…

    C++