Live data from Hacker News

Viewing profile — aquasync

aquasync

HN member
Joined
Wed, May 29, 2024, 12:31 AM UTC
HN karma
9
Public activity
3 items

About aquasync

No profile information was provided.

Recent public activity

  1. comment
    Comment #42871249

    Thanks for the info! My pixel has already applied the update unfortunately - any ideas if switching to lineageos is still helpful in that case? They’re not offering the free batter…

  2. comment
    Comment #41367131

    While the article says that backticks don't provide access to the exit status, you can retrieve it with $?.exitstatus.

  3. comment
    Comment #40507025

    R's evaluation of arguments is lazy, so while not at the level of Haskell it feels like a lazy language to me. Try eg: f = function(x) { print('hello'); x } f(print('world')) X is …