Skip to content

Instantly share code, notes, and snippets.

View shouryade's full-sized avatar
:octocat:
on a break, but learning stuff

shourya shouryade

:octocat:
on a break, but learning stuff
View GitHub Profile
@shouryade
shouryade / resources-for-juniors.md
Created January 22, 2024 20:01
resources for juniors @ TIET
@shouryade
shouryade / client.c
Created November 30, 2023 06:54
broadcast
#include <stdio.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <stdlib.h>
@shouryade
shouryade / commands.md
Created November 27, 2023 11:50
MongoDB Docker for Lab Eval

creation of container

docker pull mongo
docker run -itd --name mongo-tut mongo
docker exec -itd mongo-tut mongod
docker exec -it mongo-tut mongosh

deletion after usage