上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 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 阅读(27) 评论(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 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://csdiy.wiki/ 阅读全文
posted @ 2024-08-15 08:51 apeNote 阅读(13) 评论(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 阅读(6) 评论(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 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、区块链是什么? 区块链是一个不断增长的分类账(文件),它以安全、按时间顺序和不可变的方式永久记录已发生的所有交易。它可用于资金、财产、合同等的安全转移,而无需银行或政府等第三方中介。区块链是最著名的加密货币比特币的支柱。它是一个点对点的电子现金系统和一个去中心化的网络,允许用户直接进行交易,而无 阅读全文
posted @ 2024-07-21 22:09 apeNote 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 这是由标志性的“破解编程面试”启发的最终结构: 1. 标题你的当前角色 2. 背景和教育 3. 职业亮点 4. 深入你的当前角色 5. 工作之外的生活 6. 结束语 请记住:您只有 60 秒的时间来证明自己是最棒的! 就是这样: - 突出相关技能 - 展示您的经验 - 吹嘘你的重大胜利 - 展示为什 阅读全文
posted @ 2024-07-02 21:14 apeNote 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页