I hereby claim:
- I am dvc94ch on github.
- I am 3 on the substrate chain with genesis hash mJ48g+smjh1YYeMg7oEE1r9jrNHrzPp2BSPVrKQlP1cE.
- I have a public key 5DUng6CKfuobTimWzapbtsm2vhkDQvx4JM4NkYoG4LDuvJFC valid at block with hash m72BgLDy3Ejff+F81i0DVewasKRGDG4Qv3PxEb6V/dF0.
To claim this, I am signing this object:
- Package chain is the first truly decentralized software distribution mechanism. Software distributed with package chain is guaranteed to work on any computer running a package chain client.
- Package chain blures the line between package management and incremental build caching, leading to reduced compile times and higher developer productivity.
- Getting package managers right is hard. Package chain comes with a reference package manager, which is ideal for new and niche programming languages to
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"?> | |
| <device schemaVersion="1.1" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="CMSIS-SVD.xsd" > | |
| <vendor>SiFive</vendor> | |
| <name>FE310</name> | |
| <addressUnitBits>8</addressUnitBits> | |
| <width>32</width> | |
| <size>32</size> | |
| <access>read-write</access> |
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
| def read32le(hex): | |
| b0, b1, b2, b3 = hex.split(' ') | |
| return int(b3 + b2 + b1 + b0, 16) | |
| def read64le(hex): | |
| b0, b1, b2, b3, b4, b5, b6, b7 = hex.split(' ') | |
| return int(b7 + b6 + b5 + b4 + b3 + b2 + b1 + b0, 16) | |
| def write32le(int): |
I hereby claim:
- I am dvc94ch on github.
- I am dvc (https://keybase.io/dvc) on keybase.
- I have a public key ASDEV5A1kp9XfEC6gmqKNFpLCI10RWZPbUDdn4P_--JF6Ao
To claim this, I am signing this object:
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
| /** | |
| * Dining Philosophers | |
| * =================== | |
| * | |
| * This is a solution to a traditional concurrency problem called the dining | |
| * philosophers. | |
| * https://en.wikipedia.org/wiki/Dining_philosophers_problem | |
| * | |
| * Five philosophers are sitting at a round table. Each philosopher has a fork | |
| * to their right. Each philosopher needs to alternate between eating and |