- 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://dancres.org/reading_list.html
- http://rxin.github.io/db-readings/
- http://research.microsoft.com/en-us/um/people/lamport/pubs/pubs.html
- http://www.eecs.berkeley.edu/GradAffairs/CS/Prelims/db.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
- http://henryr.github.io/distributed-systems-readings/
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
use std::env; | |
use std::process; | |
use std::str; | |
use std::io::{Error, Read}; | |
extern crate hyper; | |
use hyper::client::Client; | |
use hyper::header::UserAgent; | |
use hyper::method::Method; |
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
# End of file | |
foo - renice -10 | |
bar - memlock unlimited | |
foo - core unlimited | |
bar - nofile 32768 | |
foo - nproc unlimited | |
bar - nice -10 |
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
with open('/my/log.log', 'w') as f: | |
f.write("Hello World") | |
f = open('/my/log', 'w') | |
f.write("1") | |
f.write("2") |
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
2015-02-06 21:50:04,232 ERROR GlobalExceptionMapper PATCH /api/process exception: | |
java.lang.NullPointerException | |
at com.mapr.installer.model.Process.addNewGroup(Process.java:462) | |
at com.mapr.installer.model.Process.provision(Process.java:384) | |
at com.mapr.installer.model.Process.patch(Process.java:343) | |
at com.mapr.installer.controller.ProcessController.patch(ProcessController.java:55) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:483) |
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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/vundle.vim' | |
" A Buffer/file/mru/tag explorer with fuzzy text matching | |
Plugin 'kien/ctrlp.vim' |
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
use std::os; | |
fn main() { | |
let (tx, rx) = channel(); | |
let args = os::args(); | |
let mut max_messages: uint = 10u; | |
println!("Command line args len: {}", args.len()); |
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<iostream> | |
template<typename T> | |
class Node { | |
public: | |
T data; | |
Node<T>* next; | |
}; | |
template<typename T> class List; |
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 <iostream> | |
#include <string> | |
using namespace std; | |
template<typename T> | |
struct Node { | |
T item; | |
struct Node<T> *next; | |
}; |
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
FROM centos:centos6 | |
MAINTAINER [email protected] | |
ADD ./file1 /opt/example/ | |
ADD ./file2 /opt/example/ | |
ADD ./dir1 /opt/example/ | |
ADD ./dir2 /opt/example/ | |
RUN ls -l /opt/example | |
docker build -t 'deleteme' . | |
Sending build context to Docker daemon 9.728 kB |