摘要:
打开Hyperledger Fabric在线开发文档:https://hyperledger-fabric.readthedocs.io 建议在Mac或Linux环境下操作,因为文档基本上是按照Mac或Linux下操作写的,windows设置起来会更费事一些,以下操作都是在Mac下的: 第一步:构建 阅读全文
摘要:
1. 持续集成工具 jenkins 阅读全文
摘要:
1. Resources recommend by Coursera course JavaScript is a complex language that would be impossible to teach entirely in a course such as this, but th 阅读全文
摘要:
1.算法可视化 https://visualgo.net/en 阅读全文
摘要:
1. Mac应用数据存放位置 ~/Library/Application Support/ 比如sublime text的应用数据~/Library/Application Support/Sublime Text 3 阅读全文
摘要:
1. 设置在窗口右下方显示文件的编码,在user preferences里加上以下的配置 2.设置用新标签页打开新文件而不是用新窗口打开,将以下配置改为false(默认为true) 阅读全文
摘要:
1. IBM blockchain platform https://www.ibm.com/blockchain/platform/ 2. 开源项目hyperledger https://hyperledger.org/ 3. Transferring assets is the heart of 阅读全文
摘要:
如果要倒序遍历访问序列中的元素,可以对该序列使用reversed() 函数,reversed函数会生成一份倒序列表的拷贝,但是不会改变原列表。这个函数理解起来很自然,例如 for i in reversed(list),示例代码: 另一种方法理解起来绕一点,从列表最后一位下标的元素往前循环,步长为- 阅读全文
摘要:
转载:https://stackoverflow.com/questions/419163/what-does-if-name-main-do When your script is run by passing it as a command to the Python interpreter, 阅读全文
摘要:
1. 从字典创建DataFrame 2. 调整列顺序 3. 调整index为从1开始 DataFrame操作汇总:http://www.cnblogs.com/huahuayu/p/8227494.html 阅读全文