Home

Alpha Way

Web Developer @ I don't want to tell you

  • 
  • 
  • 
  • 我的2015读书单

    almost 5 years ago
    • 福尔摩斯全集(图注版)(2015-01-06 Done)

    简评:9本一套的书,完整收录了福尔摩斯正典的60个故事,并且附带了很详尽的注释,还有很多延伸阅读的文章,可以说通过这套书可以完整领略到福尔摩斯故事的美妙之处。绝对值得一读的一套书。

    • 潮汕文化精神(2015-01-06 Done)

    简评:剖析了潮汕文化精神的内在。不是所有人都会有耐心看下去,毕竟这是一部学术著作。

    • 解忧杂货店(2015-01-07 Done)

    简评:三个小偷,在逃亡中仓惶逃进一家已经倒闭多年的杂货店,在里面收到了一封咨询烦恼的信,由此展开了这部小说的故事。这是推理小说之王的东野圭吾一部与推理无关的温馨作品,几个看似无关的故事却环环相扣,值得我大力推荐。

    • 神探伽利略(2015-01-12 Done)

    简评:东野圭吾的名作《神探伽利略》的初次登场,包含了5个短篇的故事,可以用科学解释的诡计,却也精彩。福山雅治的电视剧更是让这部小说出了名。

    • 秘密(2015-01-13 Done)

    简评:东野圭吾的巅峰之作。花了半天时间看完,在晚上睡觉之前一直在思考如果主人公的遭遇放到我身上要怎么办之类的问题。总之发人深省。

    • 神探伽利略2:预知梦(2015-01-14 Done)

    简评:一口气在看完《秘密》之后继续看伽利略的第二部。伽利略这两部小说我都是买了正版的,看来我也是成了东野圭吾的fan了。

    • 神探伽利略7:虚像小丑(2015-01-15 Done)

    简评:收录了伽利略系列的4个短篇故事。

    • 神探伽利略8:禁忌魔术(2015-01-16 Done)

    简评:收录了伽利略系列的4个短篇故事。

    • 盛夏方程式(2015-01-18 Done)

    简评:东野圭吾的伽利略系列的长篇。我个人是不大喜欢汤川教授在这个故事里面表现出来的行为的,特别是电影版,我觉得不算一个特别好的故事。

    • 怪笑小说(2015-01-19 Done)

    简评:几个短篇合集,道尽社会荒诞现实。

    • 白夜行(2015-01-25 Done)

    简评:东野圭吾巅峰之作。两个无法在阳光下牵手的人!故事读来,感觉很沉重。

    • 知日!知日!知日!这次彻底读懂日本(2015-01-27 Done)

    简评:知日的书,第一本。浅显地从天皇的历史开始,说了一遍日本的历史。顺带介绍了一些日本文化知识。觉得是比以前我读过的《一本书读懂日本》要好一些。

    • 知日!知日!知日!这次彻底读懂日本2(2015-01-29 Done)

    简评:第二本。

    • 知日!知日!知日!这次彻底读懂日本3(2015-01-31 Done)

    简评:第三本。

    • 嫌疑人X的献身(2015-02-3 Done)

    简评:东野圭吾的长篇推理小说,很久以前已经看过了电影,所以这次看对剧情了解更深入一点了。

    • 分身(2015-02-6 Done)

    简评:有传说这个世界上跟你一样容貌的还有两人...看到一半我才记起来好几年前我看过这部的电视剧,长泽雅美主演的。

    • 来到地球第一天(2015-02-8 Done)

    简评:科普文章的合集,大象公会出品。很多文章我觉得比知乎上的回答会更深入一些,毕竟是专业媒体。

  • Fix the Pow can't start in OSX Yosemite (10.10)

    over 5 years ago

    Pow is a zero-configuration Rack server for Mac OS X. It makes developing Rails and Rack applications as frictionless as possible. Unfortunately, Yosemite breaks pow because ipfw has been completely removed from the OS. I was able to get pow working again using PF, which is the new recommended way to do port forwarding in OS X. Here's what I did to get it working:

    1. First, add an anchor file to contain the pow port forwarding rule. Place the following code in /etc/pf.anchors/com.pow: (Note: edit these files require root privileges)
    rdr pass on lo0 inet proto tcp from any to any port 80 -> 127.0.0.1 port 20559
    
    
    

    NOTE: The trailing line break is required. Otherwise pf will say you have a syntax error.

    • Next, add two lines to /etc/pf.conf to load your new rule. It is important where these lines go. Add this line right after rdr-anchor "com.apple/*" :
    rdr-anchor "pow"
    
    • Also in /etc/pf.conf, Add this line directly after load anchor "com.apple" from "/etc/pf.anchors/com.apple" :
    load anchor "pow" from "/etc/pf.anchors/com.pow"
    
    
    

    Again, make sure to maintain the final line break.

    • Next, reload the rules into pf by running sudo pfctl -f /etc/pf.conf

    • Finally, enable pf by running sudo pfctl -e

  • 心がここにありません

    over 5 years ago

    つまらない。人生は何ですか。
    僕の人生はどちらへ行きますか。私はわかりません。
    最近、仕事が難しいなりました。何方も知りません。
    何が欲しいですか、わかりません。
    大変ですね

  • I am on Rails (2) -- Partial

    over 6 years ago

    If you wrote one piece of code many times in your View, you should consider using a partial instead of writing that code again. Partial templates - usually just called "partials" - is a mechanism that reuse your code, that what Rails always said: "Don't repeat yourself".

    Read on →
  • I am on Rails (1) -- Association

    over 6 years ago

    Ruby on Rails is the most popular web framework which base on Ruby programming language. From last week, I started a Rails study on Tealeaf academy. In the week, I read some articles and coded a simple project. These help me understood the rails more clearly.

    Read on →

Copyright © 2014 Alpha . Theme iaawd by poying