Skip to content

Instantly share code, notes, and snippets.

View ChrisLinn's full-sized avatar
😈
POISONed

Chris Lin ChrisLinn

😈
POISONed
View GitHub Profile
@ChrisLinn
ChrisLinn / sampleREADME.md
Created August 10, 2020 05:17 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

链式交易

比原最近的 PR #1356 新增了链式交易功能。 可以将多笔 utxo 合并成链并立即直接使用。

注意:目前只支持 spend btm 资产

重点代码在 account/builder.go

//流程: 
@ChrisLinn
ChrisLinn / book.json
Created March 27, 2018 06:02
gitbook book.json example
{
"title": "区块链工程师面试宝典",
"author": "Haoyu LIN",
"output.name": "site",
"gitbook": "3.2.3",
"root": "./",
"styles": {
"website": "styles/website.css"
},
"plugins": [
//Leetcode 124. Binary Tree Maximum Path Sum
//crab's code. I can never understand, but it works at the end?
//why?why?why???
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
//Leetcode 124. Binary Tree Maximum Path Sum
//crab's code. I can never understand, but it works at the end?
//why?why?why???
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
@ChrisLinn
ChrisLinn / sst-json-parse.js
Created November 18, 2017 06:19
Parse sst json to md.
var util =require('util');
var fs = require('fs');
var urlencode = require('urlencode');
function init() {
fs.writeFileSync('test.md', '# SST 2017\n\n');
}
function append(str) {
fs.appendFileSync('test.md', str);
@ChrisLinn
ChrisLinn / README-Template.md
Created February 9, 2017 20:41 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites