haocheng 積分 1

我猜主要是在安裝 APP 之前大家會擔心這個 APP 是不是會一直追蹤我的位置上傳到 server 之類的

fanboy1016 積分 3

有違反個人意願的行為疑慮時,就不會有人想要安裝這APP了

chchwy 積分 1

現在比較不推 Travis CI,因為去年開始限制給開源專案的免費時數(以前是無限)。而且現在有內建的 Github Action 可以用。

IngramChen 積分 0

確診後就強制公布啊, 還管什麼個人意願, 又沒隱私問題

koji 積分 1
List<URLData> retrieveURLs(URL... urls) throws Exception {
  try (var executor = Executors.newVirtualThreadExecutor()) {
    var tasks = Arrays.stream(urls)
            .map(url -> (Callable<URLData>)() -> getURL(url))
            .toList();
    return executor.submit(tasks)
            .filter(Future::isCompletedNormally)
            .map(Future::join)
            .toList();
  }
}

乍看想說isCompletedNormally會true嗎,結果這是新API然後 submit(java.util.Collection)1

Returns:
    stream of completed Futures

這 code review 沒看過的會搞不懂吧

christinatilly 積分 1

Travis CI is a continuous integration tool that can be integrated with your project to automatically test and deploy on each change you made

kaif 積分 1 編輯於

大公司 infra team 最後都是政治問題: 是做給長官 (customer) 看,還是真的是來服務 developer (user)

changyuheng 積分 1

怎麼防止破解也蠻重要的。加一個 cycle 總數的 counter 搭配 HMAC,應該就沒辦法透過簡單的 diff 破解了。

j0n 積分 1

2008年微軟開價 44.6 billion...

haocheng 積分 0

破解洗碗機的 DRM 還蠻有趣的,不過不知道會不會有法律問題?

haocheng 積分 0

補上 HN 的討論,太長了看不完… https://news.ycombinator.com/item?id=26998127

haocheng 積分 0

看到這張圖還蠻好笑的

https://twitter.com/ZiggyTheHamster/status/1388229284595044355

koji 積分 0

https://twitter.com/CaseyNewton/status/1388212468510380034?s=19

想說一些人會走,但沒想到比例這麼高

haocheng 積分 2

雖然標題很聳動,但看完文章之後會發現實務上是不太可能辦到的...

rein 積分 2

很多时候我们看不清,这不要紧,但至少有一些坑是可以避开的,比如 messaging app。

👍