https://www.reddit.com/r/youtubedl/comments/10ar7o7/if_youve_been_using_the_get_cookiestxt_chrome/
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::{iter, slice, vec}; | |
use std::iter::FromIterator; | |
/// A unique identifier with an associated usize index. Indexes are valued proportional to the | |
/// number of indexes allocated, are reused after being freed, and do not grow without bound. When | |
/// an index is re-used, an associated "generation" is incremented, so that within the life of a | |
/// single allocator, no two GenerationalIndex values will ever be equal. Since the indexes do not | |
/// grow without bound, GenerationalIndex values are particularly suited to being stored by their | |
/// index in extremely fast contiguous arrays. | |
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy, Debug)] |
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
const { ethers } = require("hardhat"); | |
// json -> solidity struct | |
function encodeData(str) { | |
const {users, ranks} = JSON.parse(str) | |
return [users, ranks.map(({name, count}) => [name, count, []])] | |
} | |
// solidity struct -> json | |
function decodeData(enc) { |
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
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.4; | |
contract Gashapon { | |
// struct of rank. count is a maximum size of winners array. winners array stores users from user lists | |
struct Rank { | |
string name; | |
uint count; | |
string[] winners; |