Skip to content

Instantly share code, notes, and snippets.

View maxthinkthink-tech's full-sized avatar
🎯
Focusing

maxthinkthink maxthinkthink-tech

🎯
Focusing
  • 蚂蚁金服
  • 杭州
View GitHub Profile
0. https://kernelnewbies.org/RecentChanges
1. https://lists.gt.net/
2. https://www.mail-archive.com/just backup
2.https://lwn.net/Search/
3.http://elixir.free-electrons.com/linux/latest/source
4.https://lxr.missinglinkelectronics.com/linux
5. http://man7.org/linux/man-pages/man2
6. 在bing上用 linux event slide搜索一些主要的幻灯片可以得到如下链接
http://events.linuxfoundation.org/events/linuxcon-north-america/program/slides
7 http://bugzilla.kernel.org bugs for kernel
0. https://kernelnewbies.org/RecentChanges
1. https://lists.gt.net/
2. https://www.mail-archive.com/just backup
2.https://lwn.net/Search/
3.http://elixir.free-electrons.com/linux/latest/source
4.https://lxr.missinglinkelectronics.com/linux
5. http://man7.org/linux/man-pages/man2
6. 在bing上用 linux event slide搜索一些主要的幻灯片可以得到如下链接
http://events.linuxfoundation.org/events/linuxcon-north-america/program/slides
7 http://bugzilla.kernel.org bugs for kernel
@maxthinkthink-tech
maxthinkthink-tech / iptables_rules.sh
Created December 5, 2016 02:09 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
@maxthinkthink-tech
maxthinkthink-tech / threadpool.cpp
Created May 23, 2016 10:22 — forked from jl2/threadpool.cpp
Simple thread pool in C++.
#include <stdio.h>
#include <queue>
#include <unistd.h>
#include <pthread.h>
#include <stdlib.h>
// Base task for Tasks