Skip to content
View arunsammit's full-sized avatar
🎃
Focusing
🎃
Focusing
  • Indian Institute of Technology, Kharagpur
  • Kharagpur

Block or report arunsammit

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. GoBackN-java GoBackN-java Public

    Java 2

  2. IP-Lab-Term-Project IP-Lab-Term-Project Public

    Python 1

  3. Xmeme Xmeme Public

    Java

  4. Simulation of Multiple Access Protoc... Simulation of Multiple Access Protocols: Aloha, Slotted Aloha, CSMA (1 persistent, non persistent, p persistent), CSMA-CD assuming poisson traffic
    1
    # %%
    2
    import matplotlib.pyplot as plt
    3
    import numpy as np
    4
    import math
    5
    from scipy.stats import binom
  5. simulation of ARQ (stop and wait ) d... simulation of ARQ (stop and wait ) data transfer protocol
    1
    import java.io.BufferedReader;
    2
    import java.io.FileNotFoundException;
    3
    import java.io.FileReader;
    4
    import java.io.IOException;
    5
    import java.net.DatagramPacket;
  6. QEats_Module-6.md QEats_Module-6.md
    1
    # QEats Module-6
    2
    
                  
    3
    ## Key Takeaways
    4
    1. Always try to figure out if a code that is crashing on very big environment (ie for this case on 100+ asynchronous connection requests) also fails on a much smaller sized environment (ie for this case on 5+ synchronous connection request)
    5
    2. Try to determine whether you can successfully reproduce the crash on every run of server/code