Chen22'S BLOG

Paper Notes: Pratical SIMD Programming

Catalog# Reference Outline Introduction Body SIMD Concepts Data parallelism A Practical Example: C++ Conditional Code & SIMD Min & Max If statement - Most important part Optimizing and......

Geetnote的安装和使用

geeknote安装和使用#写在前面#安装#注意要安装中国版的印象笔记的geeknote#geeknote 中国版印象笔记support版本 官方安装步骤如下12345678910# Download the repository.$ git clone git://github.com/gmajian/geeknote.git$ cd geeknote# Installation$ [su......

无效而琐碎的思考

阅读材料一#为什么你应该(从现在开始就)写博客, By 刘未鹏 | Mind Hacks思维改变生活 我曾在CSDN上写了近六年的博客,在一年半前建立了一个Google Groups(TopLanguage),由于我的博客的长期阅读者都是互相有共同语言的,因此这个Group一开始就热火朝天,而高质量的技术讨论则进一步吸引了更多的牛人的参与,雪球滚起来之后,就很难停下来了,将近一年半下来,从......

serialization

深入理解序列化#背景# 序列化是一种对象持久化的手段,普遍应用于网络传输对象,RMI等场景 本文以Hollis博客中深入分析Java的序列化与反序列化一文为蓝本,学习序列化需要关注的几个重要问题 怎么实现Java的序列化为什么实现了java.io.Serializable接口,才能序列化transient的作用是什么怎么自定义序列化策略自定义的序列化策略是如何被调用的ArrayList对......

Swagger转化为静态文档

背景概要#公司的spirng项目使用swagger2来生成线上的Restful API文档,现在需要方便的把最新的api同步到公司wiki中。因此,需要把swagger已经生成的api文档格式化成wiki能支持的格式。 解决方案#使用swagger-ui生成api文档#这部分工作之前就完成了,需要注意的是,之前的swagger注解不够规范,很多参数和返回结果没有定义清晰的schema。 为此......

List study

List#Overview#List族最重要的几个特点:# 有序 允许重复元素 支持add, remove, set, get 可以随机访问元素 Lis族集合类:# List族中,最主要的三种集合是ArrayList,Vector和LinkedList,后面将对这三种类进行分析和比较。 可以简单对比一下List和Set List Set 有序 Y N 重复元素 Y ......

Scala_for_impatients_Ch4

Chapter 4: maps and tuples#Note# Scala has a pleasant syntax for creating, querying, and traversing maps. the call map.get(key) returns an Option object that is either Some(value for key) or None. ......

Scala_for_impatients_Ch3

Note# Use an Array if the length is fixed, and an ArrayBuffer if the length can vary. Don’t use new when supplying initial values. Use () to access elements. Use for (elem <- arr) to traverse th......

Scala_for_impatients_Ch2

Note# An if expression has a value. A block has a value—the value of its last expression. The Scala for loop is like an “enhanced” Java for loop. for ( i -> 0 to n) for ( i -> 0 until n) Se......

Angular2项目demo——安装

好友最近在学Angular2,刚完成一个feature,还提交到GIT上。我心下好奇,就准备玩一下他的这个小功能。谁知,卡在工程部署上。 Frey-Fu 部署过程#clone项目到本地# 1git clone https://github.com/Frey-Fu/ng2-echarts.git 阅读README.md# This is ECharts for Angular2, code ......