One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| apiVersion: v1 | |
| items: | |
| - apiVersion: rbac.authorization.k8s.io/v1alpha1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| creationTimestamp: 2017-02-23T00:03:51Z | |
| name: cluster-admin | |
| namespace: "" | |
| resourceVersion: "35" | |
| selfLink: /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindingscluster-admin |
I've put together these notes as I read about DHT's in depth and then learned how the libtorrent implementation based on the Kademlia paper actually works.
400,000,000,000 (400 billion stars), that's a 4 followed by 11 zeros.
The number of atoms in the universe is estimated to be around 10^82.
A DHT with keys of 160 bits, can have 2^160 possible numbers, which is around 10^48
| import javafx.animation.*; | |
| import javafx.application.Application; | |
| import javafx.event.*; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.*; | |
| import javafx.scene.image.Image; | |
| import javafx.scene.input.MouseEvent; | |
| import javafx.stage.*; | |
| import javafx.util.Duration; |