自定义博客皮肤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)
  • 资源 (14)
  • 收藏
  • 关注

空空如也

build_your_own_angularjs

要想学习一门技术,最有效的方法就是自己也模拟建一个,把其中的机制和原理搞得清清楚楚。这本书买电子版可是需要30dollar。相信看完本书,你的功力大增

2016-07-10

Pro JavaScript Design Patterns

As a web developer, you’ll already know that JavaScript™ is a powerful language, allowing you to add an impressive array of dynamic functionality to otherwise static web sites. But there is more power waiting to be unlocked--JavaScript is capable of full object-oriented capabilities, and by applying OOP principles, best practices, and design patterns to your code, you can make it more powerful, more efficient, and easier to work with alone or as part of a team., With Pro JavaScript Design Patterns, you’ll start with the basics of object-oriented programming in JavaScript applicable to design patterns, including making JavaScript more expressive, inheritance, encapsulation, information hiding, and more. With that covered, you can kick-start your JavaScript development in the second part of the book, where you’ll find detail on how to implement and take advantage of several design patterns in JavaScript, including composites, decorators, façades, adapters, and many more., Each chapter is packed with real-world examples of how the design patterns are best used and expert advice on writing better code, as well as what to watch out for. Along the way you’ll discover how to create your own libraries and APIs for even more efficient coding., * Master the basics of object-oriented programming in JavaScript, as they apply to design patterns., * Apply design patterns to your kick-start your JavaScript development., * Work through several real-world examples.

2016-07-10

apache mina server 2.0 中文参考手册

Apache Mina Server 是一个网络通信应用框架,也就是说,它主要是对基于 TCP/IP、UDP/IP 协议栈的通信框架(当然,也可以提供 JAVA 对象的序列化服务、虚拟机管道通信服务等), Mina 可以帮助我们快速开发高性能、高扩展性的网络通信应用,Mina 提供了事件驱动、异 步(Mina 的异步 IO 默认使用的是 JAVA NIO 作为底层支持)操作的编程模型。 本文讲得比较详细,围绕例子step by step

2016-06-29

AOP in .net

AOP in .NET is a great resource for those interested in learning how aspects can help maintain separation of concerns in a code base. I encourage you to take a look. 这本书由浅入深,有hello world 的入门案例,还有从没有AOP到AOP的重构对比,也有深入的AOP方方面面。想成为AOP高手的人必读。

2016-06-29

Hello! Python

这是本有的独特的讲Python的书,注重实际,书中程序可以拿来使用。 In Hello! Python, I’ve tried to re-create that process, but speeded up, with all the things I’ve learned about programming and the pitfalls I’ve encountered. Every chapter (except the first and last) includes a practical program at its core to illustrate either a particular Python feature or a library—often several. Some of them are fun, some of xviii Preface them are useful, but there are no boring beginning chapters where you learn, in excruciating detail, every feature of a list or dictionary—or, worse, learn how Python adds numbers together.

2016-06-26

DOM启蒙 英文版DOM enlightment

Douglas Crockford在他的《JavaScript语言精粹》一书 中给过我们一张理解JavaScript语言内部工作机制的示意图。现在Cody Lindley给了我们一张对应文档对象模型。” —— Jeremy Keith Clearleft.com创始人与技术总监,《DOM 脚本编写》作者 通过《DOM启蒙》,读者将学习如何通过文档对象模型(DOM)更有效率地操作 HTML,而无需DOM操作库的帮助。作者Cody Lindley(jQuery手册)用菜谱风格的代码示例,用演示多种节点对象的工作方式,带你领略现代DOM理念。 在过去的十年里,框架简化了DOM的用法,后者因此被开发者尘封在前者之下。本书通过现代浏览器原生的概念与代码,将这些工具带回视线。读者将理解jQuery在DOM脚本编写中扮演的角色,并学习如何在移动应用和特定浏览器中直接使用DOM编写应用程序。 · 理解JavaScript节点对象和它们与DOM的关系 · 学习document、element、text,以及Document-Fragment对象的属性与方法 · 深入研究元素节点选取、尺寸位置等几何信息获取,以及内联样式 · 添加CSS样式表到一个HTML文档,并使用CSSStyle-Rule对象 · 使用多种方式绑定DOM事件 · 学习作者对dom.js的愿景,dom.js的灵感源自jQuery,是个为现代浏览器而作的DOM操作库 Cody Lindley,TandemSeven 首席前端架构师,拥有13年专业的HTML、CSS、 JavaScript、Flash,以及客户端性能技术经验。编写前端代码或与界面、交互设计打交道之余,他在多个技术大会上发表演讲。

2016-06-26

Dependency.Injection.in.NET

这是专门讲述DI(依赖注入)的书,包括了如何DIY 一个依赖注入。依赖注入现在是非常热门的一个技术,要成为高手,必须掌握。本书是英文高清版

2016-06-26

.net 模式:框架设计与过程

这本书是英文版,终于从国外网站下载。尽管书有点老,但是里面的技术一点都不老,其中涉及的框架和设计模式非常实用,例如线程管理器的实现等,异常的处理等等。想成为架构师,那么就要认真学习,必有收获。

2016-06-19

how to create your own virtual machine in c#

教你写虚拟机的好文,有代码示例。 Welcome to my tutorial on virtual machines. This tutorial will introduce you to the concept of a virtual machine and then we will, step by step, create our own simple virtual machine in C#. Keep in mind that a virtual machine is a very complicated thing and even the simplest virtual machine can take years for a team of programmers to create. With that said, don’t expect to be able to create your own language or virtual machine that will take over .NET or Java overnight

2016-06-11

Compiler Construction using Flex and Bison

经典的Flex和Bison的解读文章,了解Flex和bison必读

2016-06-11

AES加密算法c语言实现代码.

AES加密算法c语言实现代码

2014-08-30

bgp_case_study经典

The BGP, which RFC 1771 defines, allows you to create loop−free interdomain routing between autonomous systems (ASs). An AS is a set of routers under a single technical administration. Routers in an AS can use multiple Interior Gateway Protocols (IGPs) to exchange routing information inside the AS. The routers can use an exterior gateway protocol to route packets outside the AS. How Does BGP Work? BGP uses TCP as the transport protocol, on port 179. Two BGP routers form a TCP

2014-08-30

CC2540 Mini Development Kit Quick Start Guide.

TI 蓝牙模块 CC2540 Mini Development Kit Quick Start Guide.

2014-07-18

空空如也

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

TA关注的人

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