cuipengfei.me cuipengfei.me

cuipengfei.me

崔鹏飞的Octopress Blog

2015竟然这么快就过去一半了。逝者如斯夫。 博客 第一季度总结的时候说: 今年的博客主线任务定为OO与FP的比较和结合应用吧。 这个任务完成的不错,这个主题写了7篇博客。 迭代器已经irrelevant了,中介者和备忘录太简单就没写,状态模式没找到好的FP实现方式。 …

http://www.cuipengfei.me/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR CUIPENGFEI.ME

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.7 out of 5 with 9 reviews
5 star
6
4 star
3
3 star
0
2 star
0
1 star
0

Hey there! Start your review of cuipengfei.me

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

5.7 seconds

FAVICON PREVIEW

  • cuipengfei.me

    16x16

CONTACTS AT CUIPENGFEI.ME

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
崔鹏飞的Octopress Blog | cuipengfei.me Reviews
<META>
DESCRIPTION
2015竟然这么快就过去一半了。逝者如斯夫。 博客 第一季度总结的时候说: 今年的博客主线任务定为OO与FP的比较和结合应用吧。 这个任务完成的不错,这个主题写了7篇博客。 迭代器已经irrelevant了,中介者和备忘录太简单就没写,状态模式没找到好的FP实现方式。 …
<META>
KEYWORDS
1 崔鹏飞的octopress blog
2 blog
3 archives
4 jul 4 th
5 逝者如斯夫
6 第一季度总结的时候说
7 今年的博客主线任务定为oo与fp的比较和结合应用吧
8 这个任务完成的不错,这个主题写了7篇博客
9 这样11种行为模式除去上述4个,算是基本覆盖完了
10 这一点后面mooc再说
CONTENT
Page content here
KEYWORDS ON
PAGE
崔鹏飞的octopress blog,blog,archives,jul 4 th,逝者如斯夫,第一季度总结的时候说,今年的博客主线任务定为oo与fp的比较和结合应用吧,这个任务完成的不错,这个主题写了7篇博客,这样11种行为模式除去上述4个,算是基本覆盖完了,这一点后面mooc再说,这样,不算季度总结的博客,写了12篇,数量和内容自己都满意,和技术相关的还可以充当复习和刷新记忆的资料,不错,博客这方面达标了,这个季度比较惨,这一季度只读了五本书,自己写的笔记,瞄一眼,整本书的内容和重点就全部复活
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

崔鹏飞的Octopress Blog | cuipengfei.me Reviews

https://cuipengfei.me

2015竟然这么快就过去一半了。逝者如斯夫。 博客 第一季度总结的时候说: 今年的博客主线任务定为OO与FP的比较和结合应用吧。 这个任务完成的不错,这个主题写了7篇博客。 迭代器已经irrelevant了,中介者和备忘录太简单就没写,状态模式没找到好的FP实现方式。 …

INTERNAL PAGES

cuipengfei.me cuipengfei.me
1

揭开Scala的糖衣(8) -- pattern matching - 崔鹏飞的Octopress Blog

http://cuipengfei.me/blog/2013/12/29/desugar-scala-8

揭开Scala的糖衣(8) - Pattern Matching. 但是和Java的switch case不一样的是,Scala的pattern matching作为一个expression是可以evaluate一个值出来的,我们把上面的代码改一下,让doSomething,doSomethingElse和doDefault都返回点东西. This is a dog. This is a cat named kitty. 这段代码很容易懂,如果创建出来的animal是狗的话,无论它的名字叫什么,我们都返回this is a dog,如果是一只名叫kitty的猫,则返回this is a cat named kitty。 如果没有pattern matching,那么就要写if去判断类型,如果类型符合还要做类型转换,然后把转换后的变量中的属性取出来,再然后才能对属性的值做判断,最后才能返回点东西……. This is a cat named kitty. This is a dog. This is a cat named kitty. This is a cat named kitty.

2

抹掉Scala的糖衣(14) -- update method - 崔鹏飞的Octopress Blog

http://cuipengfei.me/blog/2014/06/12/scala-update-method

抹掉Scala的糖衣(14) - Update Method. Changing address of $name, whose age is $age to $newAddress. Actually change the address. AddressOf(name = “xiao ming”, age = 23)可以看做一个整体,它就如同一个可读可写的属性。 Laquo; 除去Scala的糖衣(13) - default parameter value. Desugar Scala(15) - unapply和unapplySeq方法 ». 访问者模式 in FP Pattern Matching. 观察者模式 in FP Mutation vs Transformation. 解释器模式 OOP versus Functional Decomposition.

3

访问者模式 in FP:Pattern Matching - 崔鹏飞的Octopress Blog

http://cuipengfei.me/blog/2015/06/16/visitor-pattern-pattern-match

访问者模式 in FP Pattern Matching. 这个模式的基本想法如下 首先我们拥有一个由许多对象构成的对象结构,这些对象的类都拥有一个accept方法用来接受访问者对象 访问者是一个接口,它拥有一个visit方法,这个方法对访问到的对象结构中不同类型的元素作出不同的反应 在对象结构的一次访问过程中,我们遍历整个对象结构,对每一个元素都实施accept方法,在每一个元素的accept方法中回调访问者的visit方法,从而使访问者得以处理对象结构的每一个元素。 Kicking my $name wheel. Pattern match这种神奇的语言特性是如何实现的呢 背后的原因并不神奇,更多详情请参考我之前的另一篇博客 http:/ cuipengfei.me/blog/2013/12/29/desugar-scala-8/. Laquo; 观察者模式 in FP Mutation vs Transformation. 模板方法模式 子类型多态和高阶函数 ». 访问者模式 in FP Pattern Matching. 观察者模式 in FP Mutation vs Transformation.

4

twu pecha kucha - 崔鹏飞的Octopress Blog

http://cuipengfei.me/blog/2015/04/22/twu-pecha-kucha

Laquo; Principles of Reactive Programming Week One作业导学. Principles of Reactive Programming Week Two作业导学 ». 访问者模式 in FP Pattern Matching. 观察者模式 in FP Mutation vs Transformation. 解释器模式 OOP versus Functional Decomposition.

5

观察者模式 in FP:Mutation vs Transformation - 崔鹏飞的Octopress Blog

http://cuipengfei.me/blog/2015/06/13/observers-pattern-fp

观察者模式 in FP Mutation vs Transformation. 举一个 Head first design pattern 中的例子. Improving weather on the way! More of the same. Watch out for cooler, rainy weather. History.last.temperature} F degrees and. History.last.humidity} % humidity. History.map( .temperature).sum / history.size}. History.map( .temperature).max}. History.map( .temperature).max}. Improving weather on the way! More of the same. Watch out for cooler, rainy weather. 气温的sum是否算对了 测温次数是否算错了 气压变化是否记录对了 这些都是变化的点,这些都是导致错误的可能性之所在。

UPGRADE TO PREMIUM TO VIEW 12 MORE

TOTAL PAGES IN THIS WEBSITE

17

SOCIAL ENGAGEMENT



OTHER SITES

cuipen.top cuipen.top

博彩网址_六合彩六合彩_正规棋牌游戏_生财有道黑白图库欢迎光临_博彩网址_【超级VIP~恭候大家光临】

膏 手在民间, 杏林千方集 探秘. 中华网健康频道联系电话 (010)56076906 网上不良信息举报电话 (010)52598588-8758. 发布时间 2016-11-28 15:23:53 Powered by Www.Cn7w.

cuipeng.blogspot.com cuipeng.blogspot.com

ENG099

Friday, June 3, 2011. Blog Entry 22 Farmers Market. Above are some of the pictures that I took at the Farmers Market at Union Square. In the afternoon, more people came and I could see the businesses were earning more. Chen Qun came a little bit later to join me in shopping and taking photos. We spent a few hours in the market. I bought apples, red potatoes, and lettuce. Qun bought some vegetables and a plant. We both bought a jar of fall season honey brought down from upstate New York. Living in the Mat...

cuipeng.info cuipeng.info

RocDream

再见了 你们 再见了 公司.

cuipeng.org cuipeng.org

崔鹏的个人网站☆★鹏友天空★☆

cuipengfei.com cuipengfei.com

崔鹏飞的个人博客

Google了好久最后发现问题出在libgail18这个debian包上, 见https:/ bugs.eclipse.org/bugs/show bug.cgi? 因此,解决方法就是卸掉这个,或者libgail-common. 一个优雅的办法是 64位系统上 sudo mv /usr/lib/x86 64-linux-gnu/. [ 阅读全文. 转自 http:/ www.cnblogs.com/wangkongming/p/3531808.html 以前在ubuntu上安装过secureCRT,是自己按照网上的教程安装的。 1,下载secureCRT包 根据自己电脑的系统,下载对于的 secureCRT包 下载地址 http:/ www.vandyke.com/download/index.html 直接到官网上下. [ 阅读全文. PHP PDO 大对象 (LOBs). 8220;大”通常意味着”大约 4kb 或以上”,尽管某些数据库在数据达到”大”之前可以轻松地处理多达 32kb 的数据。 每次Eclipse装插件都非常慢,怎么办 check for update也很慢。

cuipengfei.me cuipengfei.me

崔鹏飞的Octopress Blog

Principles of Reactive Programming作业导学写了两篇,后面的有点难,写不出来了。 把Principles of Reactive Programming跟完了,证书拿到了。 接了出版社一个翻译的活儿, Seven more languages in seven weeks ,是本蛮不错的书。 可以看到,这三个月做多的时间放在了TWU的备课上 26% ,其次是翻译书 16% ,mooc和blog紧跟其后 13%和10% ,然后还有读书和写TWU需要的总结反馈 都是7%。 Head First Design Patterns 里有一个🌰. 而如果是要用子类型多态 subtype polymorphism 来做到这样的自由组合,那么我们需要的或许就是策略模式,把泡和加调料分别写成接口并提供不同的实现类来组合。 子类型多态 subtype polymorphism 是个好东西,但是在某些场景下显得有点重。 访问者模式 in FP Pattern Matching. Kicking my $name wheel. 举一个 Head first design pattern 中的例子.

cuiper.com cuiper.com

www.cuiper.com

cuiper.eu cuiper.eu

Agnes Cuiper

Harmen van der Wal. Tycho van der Wal. Ilse van der Wal. Allard van der Wal.

cuiper.info cuiper.info

cuiper.info

Dies ist die Homepage von Benedikt Cuiper. Bitte benutzen Sie einen Browser, der Frames unterstuetzt. Dies ist die Homepage von Benedikt Cuiper. Bitte benutzen Sie einen Browser, der Frames unterstuetzt.

cuiper.m-x.de cuiper.m-x.de

www.cuiper.com

cuiper.net cuiper.net

cuiper.net

Cuiper.net - homepage. Sorry, but you need a browser that supports frames to visit this site.