- 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://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/
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
| /** | |
| * Exercise 30(3) | |
| * Correct! | |
| */ | |
| SELECT fso.point, | |
| fso.date, | |
| fso.sum, | |
| fsi.sum | |
| FROM | |
| (SELECT fp.point, |
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
| #!/bin/bash | |
| echo "Make data dirs...." | |
| mkdir ~/data | |
| mkdir ~/data/config | |
| mkdir ~/data/db | |
| mkdir ~/data/shard0 | |
| mkdir ~/data/shard0/rs0 | |
| mkdir ~/data/shard0/rs1 | |
| mkdir ~/data/shard0/rs2 |
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
| require "net/http" | |
| uri = URI("http://services.mobile.de/1.0.0/ad/search?exteriorColor=BLACK&exteriorColor=RED&modificationTime.min=2008-05-04T18:13:51.0Z&firstRegistrationDate.min=2008-05") | |
| request = Net::HTTP::Get.new(uri.request_uri) | |
| request.basic_auth '', '' | |
| request["Host"] = "services.mobile.de" | |
| request["Accept"] = "application/xml" |
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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Dayle Rees Color Schemes/LastNight.tmTheme", | |
| "fade_fold_buttons": false, | |
| "font_face": "Consolas", | |
| "font_options": | |
| [ | |
| "standardantialias" | |
| ], |
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
| import java.nio.Buffer; | |
| import java.nio.ByteBuffer; | |
| import java.util.ArrayList; | |
| import java.util.LinkedList; | |
| import java.util.List; | |
| /** | |
| * Test performance of link list, array list, Object[] and flatted to int[] object(FieldHolder) | |
| * @author Aliaksandr_Chaiko | |
| * |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>uuid</key> | |
| <string>6052353D-4EDA-4263-9535-4293100AA58A</string> | |
| <key>patterns</key> | |
| <array> | |
| <dict> | |
| <key>include</key> |
| Date | Subject | Readings |
|---|---|---|
| 1/5 | Welcome | |
| 1/7 | Fundamentals: doom and gloom | |
| 1/12 | Fundamentals: rays of hope | Detecting Causal Relationships in Distributed Computations: In Search of the Holy Grail |
| 1/14 | Fundamentals: rays of hope | The Weakest Failure Detector for Solving Consensus |
| 1/19 | Fundamentals: what we know | |
| 1/21 | Storage: naming and finding | [Chord: A Scalable Peer-to-peer Lookup Service for InternetApplications](https://pdos.c |
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
| <html> | |
| <head> | |
| <script src="https://cdn.jsdelivr.net/vue/latest/vue.js"></script> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <h2>{{ name }}</h2> | |
| <tabs> |
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
| e |
OlderNewer