Skip to content

Instantly share code, notes, and snippets.

View aagontuk's full-sized avatar

Ashfaqur Rahaman aagontuk

View GitHub Profile
@aagontuk
aagontuk / x86_64.md
Last active February 18, 2024 18:20
Resources on x86_64 ISA

x86_64 Assembly Resources

@aagontuk
aagontuk / show_gids.sh
Created January 22, 2024 07:27
Show GID
#!/bin/bash
black='\E[30;50m'
red='\E[31;50m'
green='\E[32;50m'
yellow='\E[33;50m'
@aagontuk
aagontuk / client.c
Last active December 3, 2023 17:15
Simple server-client communication example in C
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_DATA_LEN 8192