Chiro Hiro

Results 27 issues of Chiro Hiro

Some packages that's depend on this package won't work on Node.js ``` RangeError: Failed to construct 'TextDecoder': The encoding label provided ('utf-16le') is invalid. at new k (.../node_modules/fast-text-encoding/text.min.js:1:134) at Object....

Hi @l4wio , There are many useful challenges in playground.cyberjutsu.io but I can't find it anymore. Could you please publish them as well?. Just want to share with my co-worker...

`_privKey` and `_pubKey` are always accessible that's make me uncomfortable. I'm propose to have this one. ``` Wallet.prototype.flush = function () { assert(Buffer.isBuffer(this._privKey), 'Private key should be an instance of...

eval: needs validation
effort: E1 hours
type: enhancement

## Overview I've look on [MerkleTreeSHA256.sol](https://github.com/ethereum-oasis/baseline/blob/master/core/contracts/contracts/privacy/lib/MerkleTreeSHA256.sol). This one is an expensive smart contract to operate, so it motivated me to think in another direction. ### Reference - [MerkleTreeSHA256.sol](https://github.com/ethereum-oasis/baseline/blob/master/core/contracts/contracts/privacy/lib/MerkleTreeSHA256.sol) ### Questions...

## Build error ``` error: linking with `cc` failed: exit status: 1 [....] = note: ld: library not found for -lgmp clang: error: linker command failed with exit code 1...

**🧐 Motivation** Decode data which was packed by `abi.encodePacked()` into a `bytes memory` https://github.com/ethereum/solidity/issues/6919 **📝 Details** - Convert `bytes memory` to `bytes32[]` - Read sub `bytes memory` of input `bytes...

Fixes #???? #### PR Checklist - [ ] Tests - [ ] Documentation - [ ] Changeset entry (run `npx changeset add`)

This PR just migrate all crates to `[email protected]` and `[email protected]`. I will upgrade the code first then fix all the issue regarding to test and CI/CD.

The given code on your home page: ```rust use std::{convert::Infallible, net::SocketAddr}; use hyper::{Body, Request, Response, Server}; use hyper::service::{make_service_fn, service_fn}; async fn handle(_: Request) -> Result { Ok(Response::new("Hello, World!".into())) } #[tokio::main]...

I've found you are always prevent to use `for loop` but `for loop` is better than `while loop` in case of determined loop steps. It's more reliable. E.g: ``` function...