This file contains 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
cargo update -p [email protected] --precise 0.22.2 |
This file contains 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
node -e "console.log('u' + Buffer.concat([Buffer.from([0x84, 0x20, 0x24]), Buffer.from([185, 230, 53, 221, 160, 229, 138, 141, 107, 229, 5, 250, 72, 250, 250, 103, 11, 184, 96, 158, 155, 8, 174, 93, 105, 237, 202, 231, 1, 51, 169, 34])]).toString('base64').replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, ''))" |
This file contains 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
#!/usr/bin/env node | |
const varint = require('varint') | |
for (let i = 0x00; i <= 0xff; ++i) { | |
for (let j = 0x00; j <= 0xff; ++j) { | |
let code | |
try { | |
code = varint.decode([i, j]) | |
} catch (e) { |
This file contains 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
struct ErrTest; | |
impl ghost_actor::GhostControlHandler for ErrTest {} | |
impl ghost_actor::GhostHandler<LairClientApi> for ErrTest {} | |
impl LairClientApiHandler for ErrTest { | |
fn handle_lair_get_server_info( | |
&mut self, | |
) -> LairClientApiHandlerResult<LairServerInfo> { | |
Err(LairError::other("err-test") |
This file contains 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 crate::codec::*; | |
use crate::tx2::tx2_utils::*; | |
use crate::tx2::*; | |
use crate::*; | |
/// Result type returned from CodecReader::read | |
#[derive(Debug)] | |
pub enum CodecMessage<C: Codec> { | |
/// Notify-type message. | |
Notify(C), |
This file contains 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
[tasks.version] | |
clear = true | |
condition = { rust_version = { min = "1.0.0", max = "1.44.0" } } | |
script = ["echo rustc must be at least 1.45.0", "exit 1"] | |
[tasks.format] | |
clear = true | |
install_crate = "rustfmt" | |
command = "cargo" | |
args = ["fmt"] |
This file contains 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
// [dependencies] | |
// env_logger = "0.7" | |
// log = "0.4" | |
// num_cpus ="1" | |
// quinn-proto = "0.5" | |
// quinn = "0.5" | |
// rcgen = "0.7" | |
// rustls = { version = "0.16", features = ["dangerous_configuration"] } | |
// tokio = { version = "0.2", features = ["full"] } | |
// webpki = "0.21" |
This file contains 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 | |
# run this inside holochain-rust/crates/stress/ | |
nix-env -f https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.09.tar.gz -iA telegraf | |
cat > telegraf.toml <<'EOF' | |
[agent] | |
interval = "1s" | |
flush_interval = "1s" |
This file contains 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::sync::{Arc, Mutex}; | |
use futures::{ | |
task::{ | |
Poll, | |
Context, | |
Waker, | |
}, | |
Future, | |
executor::block_on, | |
}; |
This file contains 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 | |
# This script depends upon the following packages: | |
# - some standard utilities | |
# - docker | |
# - binfmt_support | |
# - qemu-user-static | |
# Run like `TGT_ARCH=x64 ./build-hc.bash` |
NewerOlder