Skip to content

Instantly share code, notes, and snippets.

View Spidy104's full-sized avatar
😄
Just Fell in love with Programming

Dibyojyoti Bhattacharjee Spidy104

😄
Just Fell in love with Programming
  • Karnataka, Bengaluru
  • 07:50 (UTC -12:00)
View GitHub Profile
# tcp_receiver.py - Simple receiver for 5G modem simulation
import socket
import threading
import time
from time import perf_counter # monotonic high‑res timing
from threading import Lock
# Global aggregated stats (kept simple)
_stats_lock = Lock()
_stats = {
@Spidy104
Spidy104 / Main.java
Created October 13, 2021 15:42
Halloweny challenge 3 for Kody
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.io.IOException;
import java.io.InputStream;