E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Principles
好书推荐
., Agile Software Development:
Principles
, Patterns and Practices 即讲面向对象,又讲敏捷开发 Alexander C.,
·
2015-10-31 17:36
推荐
"
Principles
of Reactive Programming" 之
(3)
Cluster 讲课的这哥们接下来讲了下Akka Cluster的使用,但是是通过把一个以前讲过的actor 系统改成使用cluster来介绍的Akka cluster. 这部分代码很多,还是直接看视频吧。或者,看这篇文章, Akka Clustering, Step by Step 更直白一些,不用事先了解课程中那个比较复杂的例子。 还是从正常的顺序了解下Akka Cluster吧。 A
·
2015-10-31 16:17
programming
"
Principles
of Reactive Programming" 之
(2)
Actor Path 我们知道actor是有层级的(hierarchical),第、每个actor在它的父actor的名字空间下都有一个名字。这样就构成了一个树状的结构,就像是文件系统。每个actor就像文件系统里的一个文件夹,因为每个actor都可以有子actor,因此,它们更像是文件夹,而不是文件。 val system = ActorSystem("HelloWorld&qu
·
2015-10-31 16:16
programming
从List[Future[T]]到Future[List[T]]
在课程<
Principles
Of Reactive Programming>里Week3的一节 "Promises, promises, promises"中,Erik
·
2015-10-31 16:15
future
"
Principles
of Reactive Programming" 之
(1)
week7中的前两节课的标题是”Actors are Distributed",讲了很多Akka Cluster的内容,同时也很难理解。 Roland Kuhn并没有讲太多Akka Cluster自身如何工作的细节,而是更关注于如何利用Akka Cluster来把Actor分布到不同的节点上,或许这么安排是因为Akka Cluster能讲的东西太多,而Coursera的课时不够。但是,
·
2015-10-31 16:15
programming
读Agile Software Development感想(附“薪水支付案例研究”的C#源代码)
一直以来都没什么时间可以静下心来学习一些知识,想想软件工程方面比较欠缺,最近有点闲暇去了趟图书馆,看到了Uncle Bob的Agile Software Development-
Principles
,
·
2015-10-31 16:13
software
敏捷宣言遵循的十二条原则
敏捷宣言遵循的十二条原则Twelve
Principles
behind the Agile Manifesto 我们遵循以下原则: We follow these
principles
:
·
2015-10-31 15:55
敏捷
代码重构相关书籍
From JoumeyMan to Master 程序员修炼之道 Pattern-Oriented Software Architecture Volume 4 面向模式的软件架构 卷4 Agile
Principles
·
2015-10-31 14:51
代码
Agile
Principles
,Patterns,And Practices in C# 之Strategy Pattern
from:吕震宇 Code // Strategy pattern -- Structural example using System; // "Strategy" abstract class Strategy { &nb
·
2015-10-31 11:15
strategy
Agile
Principles
,Patterns,And Practices in C# 之OCP源代码
Code // public interface Shape { void Draw(); } public class Circle:Shape { public void Draw()
·
2015-10-31 11:15
Pattern
腐烂中设计的特征--
Principles
and Patterns读书笔记一
原作者 Robert C Martin 1 Rigidity.刚性, 软件越来越难于修改的趋势。即使一个小的改动也会因为依赖关系而引发一系列其它模块的修改。因为越来越难以修改,最后老板就下令不得修改。刚性由技术上升为政治 2 Fragility 脆弱性 每次修改都引发软件多处崩溃的趋势。崩溃经常发生在和修改处没有概念上联系的位置。 3 Immobility 固定性 &nb
·
2015-10-31 11:12
Pattern
Computer Science Conference Rankings 计算机科学会议排名 Rank
ACM SIGMOD Conf on Management of Data PODS: ACM SIGMOD Conf on
Principles
·
2015-10-31 11:09
rank
Eclipse的UI规范(核心部分)
of Eclipse: 核心 Guideline 1.1 Follow and apply good user interface design
principles
·
2015-10-31 11:02
eclipse
Architecture.SOLID
Principles
1. Single Responsibility http://en.wikipedia.org/wiki/Single_responsibility_principle (ToRead) 2. Open/Closed http://en.wikipedia.org/wiki/Open/closed_principle 3. Liskov Substitution http://en.w
·
2015-10-31 10:53
Architecture
Scala中的语言特性是如何实现的(3) -- Trait
:http://cuipengfei.me/blog/2013/10/13/scala-trait/ 我在Coursera上跟了一门叫做Functional Programming
Principles
·
2015-10-31 10:36
scala
Template Method模板方法模式
Template模式获得一种反向控制结构效果,这也是面向对象系统的分析和设计中一个原则DIP(依赖倒置:Dependency Inversion
Principles
)。其含义就是父类调用子类
·
2015-10-31 10:23
template
依赖倒置原则DIP(Dependency-Inversion
Principles
)
Dependency-Inversion Principle a.高层模块不应该依赖于低层模块,二者都应该依赖于抽象. b.抽象不应该依赖于细节,细节应该依赖于抽象. 高层模块包含了一个应该程序中的重要的策略选择和业务模型.正是这些高层模块才使得其所有的应用程序区别于其他.如果高层依赖于低层,那么对低层模块的改动就会直接影响到高层模块,从而迫使它们依次做出改动. 类似于OCP原则.
·
2015-10-31 10:21
dependency
Joshua Porter谈优秀的UI设计原则
Joshua Porter是HubSpot公司的UI工程师,他在“
Principles
of User Interface Design”一文中总结了若干优秀的UI设计原则。
·
2015-10-31 10:18
port
26 Hints for Agile Software Development(敏捷开发的26条建议)
Below is a list of 26 key
principles
to guide an agile soft
·
2015-10-31 10:45
software
好的软件人员一生要看的60本书
Programming)2.系统化思维导论(An Introduction to Systems Thinking, Silver Anniversary Edition)3.系统设计的一般原理( General
Principles
·
2015-10-31 10:33
软件
理解敏捷开发准则
他们提出的Twelve
Principles
of Agile Software引发
·
2015-10-31 09:25
敏捷开发
1.3 Seven Testing
Principles
1.3 Seven Testing
Principles
2015-06-23 Principle 1 - Testing shows presence of defects(测试显示存在缺陷)
·
2015-10-31 09:36
test
《敏捷软件开发原则,模式与实践》读书笔记
书名:《敏捷软件开发原则,模式与实践》agile software development
principles
,patterns,and practices 作者:Robert C.Martin 敏捷软件开发宣言
·
2015-10-31 09:04
读书笔记
控制反转(Inversion of Control)之我的理解
关于控制反转(Inversion of Control),在具体实现上也有许多其它的叫法,如依赖倒置(Dependency Inversion
Principles
, DIP)、依赖注入(Dependency
·
2015-10-31 09:23
version
Supervision 行为模式
官方链接:http://erlang.org/doc/man/supervisor.html http://erlang.org/doc/design_
principles
/sup_princ.html
·
2015-10-31 09:34
visio
Building a Non-blocking TCP server using OTP
principles
转自:https://erlangcentral.org/wiki/index.php/Building_a_Non-blocking_TCP_server_using_OTP_
principles
·
2015-10-31 09:32
server
深入了解java同步、锁紧机构
我们假定读者想了解更多的并发知识推荐一本书《java并发编程实战》,这是一个经典的书,英语水平良好的学生也可以读《Concurrent programming in Java - design
principles
·
2015-10-31 08:22
java
植入式营销植入式营销
http://www.knowthis.com/
principles
-of-marketing-tutorials/types-of-advertising-media/product-placement-advertising
·
2015-10-31 08:46
营销
C++程序设计原理与实践(C++之父最新力作)
C++程序设计原理与实践(C++之父最新力作) 基本信息原书名: Programming:
Principles
and Practice Using C++ 原出版社: Addison-Wesley
·
2015-10-31 08:40
程序设计
什么是DIP、IoC、DI?
DIP 依赖倒置原则DIP(Dependency-Inversion
Principles
) IoC 控制反转(Inversion of Control,IoC),简言之就是代码的控制器交由系统控制
·
2015-10-30 14:32
IOC
"
Principles
of Computer System Design"读后感 -- 江鋆晨
Principles
of Computer System Design是一本针对计算机系统设计人员的著作。作者是MIT的Saltzer和Kaashoek。
·
2015-10-30 14:32
System
精益设计: 设计团队如何改善用户体验
《精益设计: 设计团队如何改善用户体验》 基本信息 原书名:Lean UX: Applying lean
principles
to improve user experience 作者:
·
2015-10-30 11:43
用户体验
java的互斥_转帖
这个文章不错 在Doug lea的那本著名的《Java并发编程—设计原则与模式》,英文名" Concurrent Programming in Java™: Design
Principles
·
2015-10-30 10:37
java
龙书鲸书虎书
龙书英文名为《Compilers:
Principles
, Techniques, and Tools 》,中文名《编译原理技术和工具》,作者 Alfred。
·
2015-10-30 10:38
书
整理及优化CSS代码的七个原则
英文原文:http://www.smashingmagazine.com/2008/08/18/ 译文原文:http://blog.bingo929.com/7-
principles
-optimized-css.html
·
2015-10-28 09:50
css
C++ GUI库FLTK学习心得(一)
后来无意间翻到过C++之父Bjarne Stroustrup的新书《Programming:
Principles
and Practice using C++》,这本书的用意是带领没有丰富编程经验的人入门
·
2015-10-28 08:27
C++
Android——设计原则(Design
Principles
)
Enchant Me Delight me in surprising ways(动画、音效。。。) Real objects are more fun than buttons and menus(实物化图标。。。) Let me make it mine(可定制背景。。。) Get to know me(记忆用户偏好。。。)
·
2015-10-27 15:33
android
Agile
Principles
,Patterns,And Practices in C# 之保龄球积分
/* ************************* * Function:bowling ball for score * Reladsed Time:2008-08-11 * Writer:Robot.H * code segment:Agile
·
2015-10-27 14:56
Pattern
面向对象设计原则-
Principles
and Patterns读书笔记三
Martin 原文:http://www.objectmentor.com/resources/articles/
Principles
_and_Patterns.pdf 引用页:http://www.objectmentor.com
·
2015-10-27 14:39
Pattern
Notes of
Principles
of Parallel Programming: Peril-L Notation - TODO
Content 1 syntax and semantic 2 example set 1 syntax and semantic 1.1 extending C Peril-L notation stands on the shoulder of C. 1.2 parallel threads forall(<intVar in
·
2015-10-27 14:20
programming
Notes of
Principles
of Parallel Programming - TODO
Principles
of Parallel Programming. Beijing: China Machine Press. 2008.
·
2015-10-27 14:20
programming
60fps on the mobile web
dawn of the smartphone and tablet as a mobile-first experience, allowing us to rethink content layout
principles
·
2015-10-27 13:53
mobile
ECNUOJ 2574
Principles
of Compiler
Principles
of Compiler Time Limit:1000MS Memory Limit:65536KBTotal Submit:473 Accepted:106
·
2015-10-27 13:41
compiler
HOW-TO GEEK SCHOOL
You will learn many
principles
that will help you have a more secure
·
2015-10-27 13:33
OO
除了封装,继承,多态 您还知道那些?-面向对象设计的金字塔
关键词和定义都提供双语,让我们感受下原汁原味,顺便学点专业英语… 基本的面向对象原则(Basic OO
principles
) 作为专科出生程序员,上学的时候我们第一次接触面向对象编程
·
2015-10-27 11:16
面向对象
How to merge two images into one using Actionscript
This example makes things a bit more complex to show some
principles
.
·
2015-10-24 09:01
actionscript
Cheatsheet: 2011 07.19 ~ 07.31
Other The Difficulty with Deadlocks Lucene.net is back on track The
Principles
of Good Programming
·
2015-10-23 08:35
sh
使用 erlang OTP 模式编写非阻塞的 tcp 服务器(来自erlang wiki)
参考资料:http://erlangcentral.org/wiki/index.php/Building_a_Non-blocking_TCP_server_using_OTP_
principles
·
2015-10-23 08:46
erlang
[SOLID]The
Principles
of OOD
From:The
Principles
of OOD What is object oriented design? What is it all about?
·
2015-10-21 13:09
OO
Top Down Operator Precedence - 自顶向下算符优先分析法
作者:Douglas Crockford 简介 1973年,波士顿 Vaughan Pratt 在 编程语言原则座谈会(
Principles
of Programming Languages Symposium
·
2015-10-21 12:03
Opera
上一页
12
13
14
15
16
17
18
19
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他