2014-08-23 Kun Ren
The motivation of pipeline operator is to make code more readable. In many cases, it indeed better organizes code so that the logic is presented in human-readable fluent style. In other cases, however, such operators can make things worse. 继续阅读 »
2016-08-17 craneyuan
具体操作 在eclipse中,打开Window->Preference->Java->Code Style->Code Template 然后展开Comments节点就是所有需设置注释的元素,参照下面注释规范对应设置即可 注释规范 文件(Files)注释标签 ```java /** * FileName: ${file_name} * @Description: ${todo} * @author: crane-yuan * @version V1.0 * Createdate: ${date} ${time} * Copyright: 继续阅读 »
2017-12-29 AnnatarHe
原文地址: Building Blockchain in Go. Part 1: Basic Prototype 继续阅读 »
2016-04-14 zzyhappyzzy
markdown的目标是实现: 易读易写 1、兼容html。 A paragraph in HTML displayed as code html A paragraph in HTML displayed as code 2、不在markdown涵盖范围之内的标签,都可以直接在文档里用html编写,不需要额外标注。 3、html文件中,有两个字符需要特殊处理:<<和&&。<用于起始标签,&用于标记html实体。插入版权符号©© 4、段落的前后要有一个以上的空行,普通段落不需要空格或制表符来缩进。 继续阅读 »
2016-07-26 ruki
Introduction This is a very simple and lightweight x86 virtual machine which can load and run the assembly code from ida pro directly. Features Supports cross-platform and it's able to run the x86 assembly code on linux, windows, maxosx, android and ios ... Supports the frequently-used x86 assembly instruction (.e.g 继续阅读 »
2013-05-26 Zhang zhengzheng
《编程珠玑》这本书读完感觉很诡异,在读的过程中感觉很有收获,但是却说不清从书中获得了什么,好像什么也没读懂。说实话,很难对这本书归类,有时它告诉你的是实际操作的性能问题,有时又在讲算法或者数据结构。不过确切的说,它告诉我们的是一种无招胜有招的境界。无论是实际操作、算法还是数据结构都是在为项目服务的,我们的目的只有一个,那就是完成项目。 一个项目与一个科研课题的区别就是它需要被实践,需要一种行之有效的解决方案。在一个系统被部署到实际环境中时,有时可能需要它无比精准,有时是快速运行,有时是超低成本,或者也有可能是兼而有之的权衡。此时工程师就需要调整一切可以调整的东西去满足这些需求,这些东西自然就是硬件环境、算法、数据结构了。作者Jon 继续阅读 »
2018-01-06 AnnatarHe
原文地址: Building Blockchain in Go. Part 6: Transactions 2 继续阅读 »
2017-06-04 AnnatarHe
最近迁移项目,顺便一些东西也都相应升级一下。中间碰到了一些问题,记录一下。 http/2 所有的 request, response 都转成小写了,和 HTTP/1.1可不一样。详情可以看这里 HTTP/2 finalized - a quick overview 继续阅读 »
2017-10-02 AnnatarHe
Athena webapp 没有账户,所以您应该是看不到任何内容的 概览 首先, Athena project 是一个图片展示网站,最开始收到安卓版本的福利满满启发,无奈后来我整个迁移到了苹果家,而 iOS, Mac 上并没有这么优秀的应用。 继续阅读 »
2017-03-06 Klaus Ma
Creat second disk for k8s In Vagrantfile, add the following customized command to create disk for k8s source code. The vagrant/virtual box will create a disk with only 10Gi by default, which is not enough for k8s's build & test. 继续阅读 »