- http://the-paper-trail.org/blog/distributed-systems-theory-for-the-distributed-systems-engineer/
- https://github.com/palvaro/CMPS290S-Winter16/blob/master/readings.md
- http://muratbuffalo.blogspot.com/2015/12/my-distributed-systems-seminars-reading.html
- http://christophermeiklejohn.com/distributed/systems/2013/07/12/readings-in-distributed-systems.html
- http://michaelrbernste.in/2013/11/06/distributed-systems-archaeology-works-cited.html
- http://rxin.github.io/db-readings/
- http://research.microsoft.com/en-us/um/people/lamport/pubs/pubs.html
- http://pdos.csail.mit.edu/dsrg/papers/
- http://scalingsystems.com/2011/09/07/reading-list-for-distributed-systems/
- http://courses.engr.illinois.edu/cs525/sp2011/sched.htm
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 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 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <stdio.h> | |
| #include <queue> | |
| #include <unistd.h> | |
| #include <pthread.h> | |
| #include <stdlib.h> | |
| // Base task for Tasks |