Skip to content

Instantly share code, notes, and snippets.

View Prasang-money's full-sized avatar

Prasang Mani Manav Prasang-money

  • 02:44 (UTC +05:30)
View GitHub Profile
@eenblam
eenblam / linux_reading_list.md
Last active April 10, 2026 11:28
Linux Networking Reading List

Linux Networking Reading List

Currently in no particular order. Most of these are kind of ancient.

Where's all the modern documentation? So much of what I've turned up searching is other folks complaining about having few options beyond reading source code.

The OREILLY books, while dated, seem to be some of the best available. Note that these can be read with a 7-day trial. Do this! At least get through the introduction section and first chapter of each to see if it's what you're after.

https://www.netfilter.org/

@randallmlough
randallmlough / translate.go
Last active March 28, 2025 15:38 — forked from hvoecking/translate.go
Golang reflection: traversing arbitrary structures – []map[string]interface{} support
// Traverses an arbitrary struct and translates all stings it encounters
//
// I haven't seen an example for reflection traversing an arbitrary struct, so
// I want to share this with you. If you encounter any bugs or want to see
// another example please comment.
//
// The MIT License (MIT)
//
// Copyright (c) 2014 Heye Vöcking
//
@shekkbuilder
shekkbuilder / gdbcomm.txt
Created February 23, 2016 00:52
GDB commands by function - simple guide
GDB commands by function - simple guide
---------------------------------------
More important commands have a (*) by them.
Startup
% gdb -help print startup help, show switches
*% gdb object normal debug
*% gdb object core core debug (must specify core file)
%% gdb object pid attach to running process
% gdb use file command to load object