Skip to content

Instantly share code, notes, and snippets.

View BadUncleX's full-sized avatar

BadUncle BadUncleX

View GitHub Profile
@BadUncleX
BadUncleX / readme.md
Created December 1, 2023 15:11
coss - cosmos生态第一个铭文 - 手把手教程

Keybase proof

I hereby claim:

  • I am alexwanng on github.
  • I am foxlog (https://keybase.io/foxlog) on keybase.
  • I have a public key whose fingerprint is 7A93 33B3 2E90 5C6B 57C3 DF63 6A4F F834 CCFD A77C

To claim this, I am signing this object:

@BadUncleX
BadUncleX / Search my gists.md
Created June 28, 2020 02:38 — forked from santisbon/Search my gists.md
How to search gists

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html

@BadUncleX
BadUncleX / 00-readme.md
Last active June 28, 2020 02:32
substrate kitty with linkedlist data structury
@BadUncleX
BadUncleX / 01-unit-tests.md
Last active June 14, 2020 15:16
how to write #unittests in #substrate

detail commit from here:

Github Commit

git command from:

git diff-tree -p 16a7aca8f3b5e4269c9ea4ca683b483a59dadee1
@BadUncleX
BadUncleX / playground.rs
Created December 29, 2019 07:35
Code shared from the Rust Playground
fn main() {
let a: Vec<i32> = vec![];
let b: [i32;0] = [];
let v_type: () = a;
let v_type:() = b ;
@BadUncleX
BadUncleX / playground.rs
Created July 6, 2019 08:19
Code shared from the Rust Playground
use std::convert::From;
#[derive(Debug)]
struct Number {
value: i32,
}
impl From<i32> for Number {
fn from(item: i32) -> Self {
Number { value: item }
@BadUncleX
BadUncleX / playground.rs
Created July 5, 2019 17:09
Code shared from the Rust Playground
fn main() {
println!("Hello, world!");
}
@BadUncleX
BadUncleX / 00 readme.md
Last active May 12, 2019 16:42
以太坊黄皮书笔记

here is about ethereum yellow paper notes.

@BadUncleX
BadUncleX / 00 readme.md
Last active May 17, 2019 15:14
rust编程之道笔记

here is about the dao of rust