IngramChen 積分 0

第 16 點,好的 commit message:

When applied, this commit will: {{ YOUR COMMIT MESSAGE}}

For example:
– When applied this commit will Update README file
– When applied this commit will Add validation for GET /user/:id API call
– When applied this commit will Revert commit 12345

這個聯想不錯。

是說有人的 commit message 通通寫中文嗎?

chchwy 積分 0

這個教學影片的旁白,乍聽之下有點像咕狗小姐之類的機器人語音,聽一陣子後才發現原來是真人XDDD

IngramChen 積分 0

有 async 之後 transaction 大部份都破功了. async 真的是 nosql 類的功能才適合

IngramChen 積分 0

沒有一個公開的服務可以接受 self signed ssl 吧

qrtt1 積分 1

文件1 有提到,不能用自簽的 ssl

Note: The SSL certificate must be issued by an authorized CA. If a self-issued SSL certificate is applied to your server, requests sent from the LINE platform will fail.
koji 積分 0

沒想到最後還提了一下 Flutter

haocheng 積分 0

先是 SQL Server 可以跑在 Linux 上,現在連 bash/ubuntu userspace 都整個搬到 Windows 了,看來換個 CEO 真的有用!!

IngramChen 積分 5

Java concurrent framework 是魔人 Doug Lea 設計的,是世界上少數真的了解 concurrency 的人物。

Java 提供 high level 的工具 (executor, actor, fiber...etc) ,也有提供高效能的 data structure (ConcurrentHashMap... etc),最後再進一步還有 Semaphore、ReentrantReadWriteLock 等等 primitive 元件。高階、低階的需求都能完全的滿足,沒有更好的平台了

kaif 積分 0

各產品可以當作是一堆不同的小公司吧

IngramChen 積分 0

Angular2 有 dart 的版本,我猜就是用 AngularDart2 寫的 (沒登入去看)

IngramChen 積分 1

Google 使用的 front end

  • Gmail -- Closure compiler
  • Google Analytics -- 看不出來,可能跟 Gmail 一樣
  • Google Inbox -- GWT
  • Adsense -- GWT
  • Google Cloud Engine dashboard -- Angular

而現在新版的 AdWords 轉到 Dart 去了。Google 的技術是多頭馬車…

haocheng 積分 0

想試試 jigsaw + JDK9 的可以下載來玩玩看了

popcorny 積分 2

小弟小的小小library。會寫這個的理由是因為Java Stream因為是pull mode的,所以aggregation只能做一次,改用Push Mode後,我可以同時寫檔,對兩三種目的做Aggregation。這全部都可以在one pass就解決。

應該是有其他的reactive library都是push/pull都有提供,但是因為想要reuse Collector,所以就刻出這個library出來用 :P