Skip to content
View aagontuk's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report aagontuk

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

  1. bess bess Public

    Forked from NetSys/bess

    BESS: Berkeley Extensible Software Switch

    C++ 1

  2. BOLT BOLT Public

    Forked from facebookarchive/BOLT

    Binary Optimization and Layout Tool - A linux command-line utility used for optimizing performance of binaries

    C++

  3. coreos coreos Public

    A basic kernel and bootloader implemented in C, assembly

    Assembly 1

  4. cheatsheets cheatsheets Public

    My long cheatsheets and reading lists about programming, electronics and more

    TeX 118 38

  5. Simple server-client communication e... Simple server-client communication example in C
    1
    #include <sys/socket.h>
    2
    #include <sys/types.h>
    3
    #include <netinet/in.h>
    4
    #include <arpa/inet.h>
    5
    #include <unistd.h>
  6. A RED-BLACK TREE Implementation A RED-BLACK TREE Implementation
    1
    /*
    2
     * [PROG]		: Red Black Tree
    3
     * [AUTHOR]		: Ashfaqur Rahman <sajib.finix@gmail.com>
    4
     * [PURPOSE]		: Red-Black tree is an algorithm for creating a balanced
    5
     * 			  binary search tree data structure. Implementing a red-balck tree