08 2024 档案

摘要: 阅读全文
posted @ 2024-08-31 15:07 apeNote 阅读(3) 评论(0) 推荐(0) 编辑
摘要:1、隔离文件:chroot 2、隔离访问:名称空间 3、隔离资源:cgroups 4、封装系统:LXC 5、封装应用:Docker 6、封装集群:Kubernetes 阅读全文
posted @ 2024-08-30 13:30 apeNote 阅读(8) 评论(0) 推荐(0) 编辑
摘要:block/ block.go package blockchain import ( "bytes" "crypto/sha256" "encoding/gob" "log" ) type Block struct { Hash []byte Transactions []*Transaction 阅读全文
posted @ 2024-08-17 14:32 apeNote 阅读(39) 评论(0) 推荐(0) 编辑
摘要:part1: transaction.go package blockchain import ( "bytes" "crypto/sha256" "encoding/gob" "encoding/hex" "fmt" "log" ) type Transaction struct { ID []b 阅读全文
posted @ 2024-08-17 12:50 apeNote 阅读(33) 评论(0) 推荐(0) 编辑
摘要:原文:区块链实现(三)—用数据库存储区块信息 https://zhuanlan.zhihu.com/p/714854444 文件目录 主文件下有 文件blockchain、go.mod、gosum、文件tmp、main.go 文件blockhain下面有block.go、blockchain.go、 阅读全文
posted @ 2024-08-16 15:29 apeNote 阅读(13) 评论(0) 推荐(0) 编辑
摘要:https://csdiy.wiki/ 阅读全文
posted @ 2024-08-15 08:51 apeNote 阅读(30) 评论(0) 推荐(0) 编辑
摘要:We are looking for an experienced Backend Engineer to join our Data Platform team. As a Backend Engineer, you will be responsible for developing and m 阅读全文
posted @ 2024-08-11 10:56 apeNote 阅读(3) 评论(0) 推荐(0) 编辑
摘要:golang package blockchainimport ( "bytes" "crypto/sha256" "encoding/binary" "fmt" "log" "math" "math/big" ) // Take the data from the block // create 阅读全文
posted @ 2024-08-09 15:50 apeNote 阅读(5) 评论(0) 推荐(0) 编辑
摘要:www.topgoer.com/ 阅读全文
posted @ 2024-08-07 22:57 apeNote 阅读(10) 评论(0) 推荐(0) 编辑
摘要:golang package main import ( "bytes" "crypto/sha256" "fmt" ) type BlockChain struct { blocks []*Block } type Block struct { Hash []byte Data []byte Pr 阅读全文
posted @ 2024-08-07 09:53 apeNote 阅读(8) 评论(0) 推荐(0) 编辑
摘要:个人微博:https://weibo.com/u/2434823180 Blog: https://apenote.github.io vx: apedamoon 一、区块链基础 1.1、掌握以太坊 1.2、pow 和 pos 二、solidity 基础 2.1、Solidity 文件 ; 2.2、 阅读全文
posted @ 2024-08-03 10:01 apeNote 阅读(17) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示