##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
| 燒賣 蝦餃 魚蛋 雞蛋仔 格仔餅 橙色生腸 煎釀三寶 | |
| 西多士 紅豆冰 凍奶茶 凍檸茶 | |
| 雲吞麵 牛腩河 魚蛋腸粉 | |
| 燒味飯 煲仔飯 | |
| 潮州菜 魚香茄子煲 老火湯 | |
| 車仔麵 | |
| 西多士 常餐 沙嗲牛肉麵 菠蘿油 | |
| 譚仔 米線豬耳土匪 | |
| m記脆辣雞翼 | |
| kfc 蘑菇飯 白汁雞皇飯 mcdonald |
##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
| web: | |
| image: 'gitlab/gitlab-ce:11.4.7-ce.0' | |
| restart: always | |
| hostname: 'gitlab.example.com' | |
| environment: | |
| GITLAB_OMNIBUS_CONFIG: | | |
| external_url 'http://gitlab.example.com' | |
| redis['bind']='127.0.0.1' | |
| redis['port']=6379 | |
| gitlab_rails['initial_root_password']=File.read('/steg0_initial_root_password') |
(dominic: this list of papers was originally recommended to me by Brain Noguchi @bnoguchi, and was a great start to understanding distributed systems)
Here's a selection of papers that I think you would find helpful and interesting:
The seminal paper about event ordering and concurrency. The important result is that events in a distributed system define a partially ordered set. The connection to what we're working on is fundamental, as this defines how to detect concurrent updates. Moreover, the chosen algorithm to turn the partially ordered set into a totally ordered set defines the conflict resolution algorithm.
http://research.microsoft.com/en-us/um/people/lamport/pubs/time-clocks.pdf
| $ - rename session | |
| s - sessions | |
| q - select pane | |
| z - zoom | |
| d - detach | |
| [ - scroll | |
| ] - paste | |
| ? - show shortcuts |
| Boolean(undefined) // false | |
| Boolean(null) // false | |
| // however | |
| false == undefined // false | |
| false == null // false | |
| // example in a security check | |
| var user = { | |
| name: 'Karl' |
| # This tells kubecfg to read its config from the local directory | |
| export KUBECONFIG=./kubeconfig | |
| # Looking at the cluster | |
| kubectl get nodes | |
| kubectl get pods --namespace=kube-system | |
| # Running a single pod | |
| kubectl run --generator=run-pod/v1 --image=gcr.io/kuar-demo/kuard-amd64:1 kuard | |
| kubectl get pods |
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
| 1) Commit all changed code / stash it first. | |
| 2) Fix .gitignore | |
| 3) git rm -r --cached . | |
| This removes everything from the index. | |
| 4) git add . |