HackerTrans
TopNewTrendsCommentsPastAskShowJobs

aquasync

no profile record

comments

aquasync
·letztes Jahr·discuss
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 battery replacement in Aus otherwise I’d do that - hard to be sure that getting a new battery in a local repair shop wouldn’t be similarly affected by the new limits (presumably some sort of blacklist on serial numbers?).
aquasync
·vor 2 Jahren·discuss
While the article says that backticks don't provide access to the exit status, you can retrieve it with $?.exitstatus.
aquasync
·vor 2 Jahren·discuss
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 not evaluated in f until referenced. Indeed if you remove x from f, world is not printed.