2015年计划透析10本英文原著,最开始选定的第一本英文书是<Who Moved my Cheese>,可是这本书实在是太短.太简单了,总体的意思就是要顺应变化,要跳出自己的舒适区,全文不认识的单词也不多,所以很快读完后就开始找第其它的适合我的英文书. 根据<把你的英语用起来>作者的推荐,从zyea要到了<Daughter of Deceit>的文本,发送到Kindle上阅读试试.这书对于我来说果然还是有难度的,前面一堆人物的出场,让我实在搞不清楚他们之间的关系.看了不…
https://hacks.mozilla.org/2015/04/es6-in-depth-an-introduction/ What falls under the scope of ECMAScript? The JavaScript programming language is standardized by ECMA (a standards body like W3C) under the name ECMAScript. Among other things, ECMAScrip…
C语言细节——献给入门者(三) >>主题:关于强制类型转换 先来瞎扯下强制类型转换,c语言有很多数据类型,long,short,int,float,double,bool,char等等.当我们要将一种数据类型赋值给另一种数据类型,或者将某个操作数进行如此的转化的时候,就用到了强制类型转换. 强制类型转换分成两种:1.显示强制类型转换(主动) 2.隐式强制类型转换(被动/自动) 要区分这两者很简单,看下面例子:(we assume that b is a variable of integer…
///:~容我对这个系列美其名曰"读书笔记",其实shi在练习英文哈:-) Introduction to Objects Object-oriented programming(OOP) is part of this movement toward using the computer as an expressive medium. This chapter will introduce you to the basic concepts of OOP, including an…
https://www.kernel.org/doc/Documentation/zh_CN/CodingStyle Chinese translated version of Documentation/CodingStyle If you have any comment or update to the content, please post to LKML directly.However, if you have problem communicating in English yo…
Welcome to Log4j 2! Introduction Almost every large application includes its own logging or tracing API. In conformance with this rule, the E.U. SEMPER project decided to write its own tracing API. This was in early 1996. After countless enhancements…
Chinese translated version of Documentation/CodingStyle If you have any comment or update to the content, please post to LKML directly. However, if you have problem communicating in English you can also ask the Chinese maintainer for help. Contact…
Meta Learning/ Learning to Learn/ One Shot Learning/ Lifelong Learning 2018-08-03 19:16:56 本文转自:https://github.com/floodsung/Meta-Learning-Papers 1 Legacy Papers [1] Nicolas Schweighofer and Kenji Doya. Meta-learning in reinforcement learning. Neural…
1. <代码大全> 史蒂夫·迈克康奈尔 (Code Complete) 2. <程序员修炼之道> Andrew Hunt [读过了,非常好的一本书] (Pragmatic Programmer) 3. <计算机程序的构造和解释> Harold Abelson (Structure and Interpretation of Computer Programs) 4. <C程序设计语言>Dennis M. Ritchie (The C Programmin…
英文原文:The Best Font for Programming: M+ 程序员的最佳等宽字体是 M+. 一个偶然机会遇到了这个字体,在命运多舛的 kod 编辑器体验了.这个字体非比寻常,我坚持这个选择已有三年多时间了. // 编注:kod 一个面向在 OS X 平台开发的编辑器. 我看过很多讲编程字体的文章(<10 个不错的编程等宽字体>.<5 个最佳编程字体>),但这个可爱的字体却没有上榜. 在 Retina 屏幕下,笔画纤细,宽度纤瘦看起来很不错,M+ 字体超凡的纤细,…
对象初始化器和集合初始化器只是语法糖,但是能让你的代码看起来更加清晰.至少能让对象初始化的代码和其他业务执行的代码分开,可读性会好一些. 本文将编写一个类型,可以使用集合初始化器构造这个类型.不只是添加元素的集合初始化器,还有带索引的集合初始化器. 稍微提一下对象初始化器 很普通的类型就可以支持对象初始化器,只需要对象有可以 set 的属性或者可访问的字段即可. public class Walterlv { public string Site { get; set; } } 初始化时可以…