自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

鼓钟于宫

只是记录...

  • 博客(0)
  • 资源 (57)
  • 收藏
  • 关注

空空如也

面向对象分析与设计 第3版 中文版

面向对象分析与设计第三版的中文版。 感觉翻译的还算可以。 英语好的,可以去看原版。

2016-03-21

Assembly Language Step-by-Step Programming with DOS and Linux, Second Edition

一步一步学汇编的第二版,再dos和linux下。 第三版是把dos环境去掉了 chm版本的

2016-03-12

一步一步学习汇编程序设计

一步一步学习汇编程序设计的第二版,英文版。

2016-03-11

线上幽灵:凯文·米特尼克自传

凯文·米特尼克 的三部畅销书之一。 中文版。

2016-02-26

Head First Servlets and JSP 2nd Edition 英文文字版

Head First Servlets and JSP 2nd Edition 英文版 文字版,绝对高清,非扫描版

2016-01-21

深入理解计算机系统 英文版

从程序的角度理解计算机系统,适合程序员系统的理解整个计算机

2016-01-21

javaee7精粹 英文版 高清

这本书适合有javaee经验的人了解javaee7的新增功能。 初学可能看起来有困难 英文版的

2016-01-21

programming python 英文版 第4版

英文版第四版,可以作为learning python的后继学习资料

2015-11-06

python学习手册 英文版 learning python 5th

learning python的第五版,python版本是3.3,对比2.7. 比较新的一本书,英文版的。 经典书,但是由于内容很详细,篇幅很长,其实不太适合入门之用,可以作为参考书籍。

2015-11-06

一步一步学习linux汇编语言程序设计 第三版 英文版

第三版的一步一步学习linux汇编语言程序设计 英文版,比较好的入门书籍

2015-09-16

hadoop技术内幕:深入解析hadoop common和hdfs架构设计与实现原理

hadoop技术内幕,讲解common和hdfs的内容,仅供学习和研究使用。

2015-08-03

learning storm

apache storm的书籍,现在storm的书籍还比较少。英文版。 主要讲的搭建集群,与其他技术集成的内容。

2015-08-03

hadoop权威指南 英文版 第四版

第四版的hadoop权威指南,加入了hadoop 2.x的内容,前三版都是1.x的内容。英文版的。

2015-08-03

分布式计算原理与应用

分布式技术的入门教材,分布式系统原理与范型和分布式系统概念与设计太过于庞杂,没有实际经验读起来很枯燥,很难理解。这本书讲得比较浅,适合入门,有例子。

2015-07-27

响应式web设计实践

响应式web设计实践的英文版本。完整版。

2015-07-20

Responsive Web Design by Example 2nd Edition

响应式设计 实例。第二版。英文版的。主要讲响应式布局的知识

2015-07-17

莱昂氏unix源代码分析英文版+源码

英文版的莱昂氏unix源码分析+源代码。

2015-07-07

PDP11 手册

PDP11的手册,可以配合莱昂氏unix内核源码分析这本书看。

2015-06-24

unix v6和v7的源码

unix v6和v7的源代码,可以配合看莱昂氏unix源码分析这本书。

2015-06-24

coffeescript实战(英文文字完整版)

manning出版的in action系列之 coffescript 英文完整版。 2014年的书,应该是比较新的东西。

2015-05-30

Computer Organization and Design RISC-V Edition The Hardware Software Interface

这个书不用介绍,risc-v版本的。但是分太贵。封装成rar格式。供大家学习交流

2019-02-12

Mastering Concurrency Programming with Java 8

Master the principles and techniques of multithreaded programming with the Java 8 Concurrency API, About This Book, Implement concurrent applications using the Java 8 Concurrency API and its new componentsImprove the performance of your applications or process more data at the same time, taking advantage of all of your resources.Construct real-world examples related to machine learning, data mining, image processing, and client/server environments, Who This Book Is For, If you are a competent Java developer with a good understanding of concurrency but have no knowledge of how to effectively implement concurrent programs or use streams to make processes more efficient, then this book is for you., What You Will Learn, Design concurrent applications by converting a sequential algorithm into a concurrent oneDiscover how to avoid all the possible problems you can get in concurrent algorithmsUse the Executor framework to manage concurrent tasks without creating threadsExtend and modify Executors to adapt their behavior to your needsSolve problems using the divide and conquer technique and the Fork/Join frameworkProcess massive data sets with parallel streams and Map/Reduce implementationControl data-race conditions using concurrent data structures and synchronization mechanismsTest and monitor concurrent applications, In Detail, Concurrency programming allows several large tasks to be divided into smaller sub-tasks, which are further processed as individual tasks that run in parallel. All the sub-tasks are combined together once the required results are achieved; they are then merged to get the final output. The whole process is very complex. This process goes from the design of concurrent algorithms to the testing phase where concurrent applications need extra attention. Java includes a comprehensive API with a lot of ready-to-use components to implement powerful concurrency applications in an easy way, but with a high flexibility to adapt these components to your needs., The book starts with a full description of design principles of concurrent applications and how to parallelize a sequential algorithm. We'll show you how to use all the components of the Java Concurrency API from basics to the most advanced techniques to implement them in powerful concurrency applications in Java., You will be using real-world examples of complex algorithms related to machine learning, data mining, natural language processing, image processing in client / server environments. Next, you will learn how to use the most important components of the Java 8 Concurrency API: the Executor framework to execute multiple tasks in your applications, the phaser class to implement concurrent tasks divided into phases, and the Fork/Join framework to implement concurrent tasks that can be split into smaller problems (using the divide and conquer technique). Toward the end, we will cover the new inclusions in Java 8 API, the Map and Reduce model, and the Map and Collect model. The book will also teach you about the data structures and synchronization utilities to avoid data-race conditions and other critical problems. Finally, the book ends with a detailed description of the tools and techniques that you can use to test a Java concurrent application., Style and approach, A complete guide implementing real-world examples with algorithms related to machine learning, data mining, and natural language processing in client/server environments. All the examples are explained in a step-by-step approach.

2017-09-07

javascript allonge 6th edition

javascript allonge的第六版,pdf的比较难找,但是可以在线看的。

2017-04-18

functional programming in javascript.epub

我前两份文档中,上传了一个fpjs,读着读着发现好像挺多错误,仔细看了看,确实不是真正的fpjs。这本才是。 比较难找。本来我想转成pdf的,但是转完之后很难看。所以还是留着epub格式的。 我前面传的那本假fpjs书,其实内容挺好的,但是细节不尽如人意。也有可能是库的版本不对吧。

2017-04-17

函数式javascript

这是两本关注javascript函数式编程fjs和fpjs的其中一本,fjs。 作者是clojurescript的作者。就是传说中的大牛,对函数式的理解应该比较独到。 不过函数式编程是个大课题。不是一本两本书就能涵盖的。仅供学习交流。

2017-04-15

javascript函数式编程

这本书是实践类型的。但是可能有一些库的原因吧,感觉小错误挺多的。这本书是跟fpjs同名,所以弄错了,但是整本书还是挺好的。

2017-04-15

深入理解Linux内核第三版英文

这份文档,比较清晰,不是网上那些而是有错误的书

2017-02-09

深度学习 Yoshua Bengio 2016版

深度学习 Yoshua Bengio 2016版

2017-01-16

Functional Analysis Notes (2011) Mr. Andrew Pinchuck

泛函分析基础知识讲义。

2017-01-16

线性代数应该这样学,英文版

线性带入入门书籍

2017-01-16

The Lambda Calculus Its Syntax and Semantics 2nd

lambda的书

2016-11-11

AN INTRODUCTION TO FUNCTIONAL PROGRAMMING THROUGH LAMBDA CALCULUS

lambda的书。

2016-11-11

hashkell programming from first principles

这是haskell官方推荐的几本书籍之一。 并没有与命令式语言对比,而是纯粹入门函数式概念。 挺不错的一本书,仅供学习和交流。

2016-10-10

Essentials of Programming Languages 3rd英文版

第三版的eopl,英文版。 用scheme实现各种编程语言中的特性。

2016-04-09

java io 英文版

java io包的知识。英文版。讲的比较详细

2016-03-31

java nio 中文版

Java nio的书,nio的版本比较早jdk1.4的。O’Reilly 中文版 但是其中有描述io底层原理的内容,并且不深。适合入门。

2016-03-31

Pro Java 7 NIO.2 pdf 英文版

java nio的书,里面例子挺多的。

2016-03-31

ejb3实战 第二版 英文版

ejb3 in action 第二版,英文版。

2016-03-24

ant实战 第二版 英文版

ant:构建工具。 ant实战英文版,第二版。

2016-03-21

面向对象分析与设计 第三版 英文版

面向对象分析与设计 第三版 英文版。 英语不好的可以看中文版

2016-03-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除