Skip to content

Instantly share code, notes, and snippets.

cargo update -p [email protected] --precise 0.22.2
@neonphog
neonphog / bytes-to-hc.sh
Created April 28, 2022 16:01
convert bytes into holochain hash representation
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, ''))"
@neonphog
neonphog / holo-hash-prefix-finder.js
Created May 21, 2021 18:42
holo-hash-prefix-finder.js
#!/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) {
@neonphog
neonphog / err-test.rs
Created April 28, 2021 19:37
err-test.rs
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")
@neonphog
neonphog / codec.rs
Created March 24, 2021 18:37
codec.rs
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),
@neonphog
neonphog / Makefile.toml
Last active September 30, 2020 22:29
Test Common Cargo Makefile.toml
[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"]
@neonphog
neonphog / tokio-quinn-poc.rs
Created February 11, 2020 17:44
tokio-quinn-poc.rs
// [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"
@neonphog
neonphog / telegraf-example.bash
Created February 10, 2020 16:59
telegraf-example.bash
#!/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"
@neonphog
neonphog / rust-cb-future.rs
Created January 6, 2020 20:42
Rust Callback Future
use std::sync::{Arc, Mutex};
use futures::{
task::{
Poll,
Context,
Waker,
},
Future,
executor::block_on,
};
@neonphog
neonphog / build-hc.bash
Created November 5, 2019 04:24
build-hc.bash
#!/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`