HackerTrans
TopNewTrendsCommentsPastAskShowJobs

semanticc

no profile record

comments

semanticc
·há 12 dias·discuss
That's not an effect. As both in the case of a dividedend and a stock buy back, the company's market cap drops by the amount of cash that's being distributed out, creating an identical re-buying situation in market cap-weighted index funds. Stock price itself is irrelevant for index fund rebalances (unlike for shareholder returns).
semanticc
·há 13 dias·discuss
> So for my definition of “everywhere,” with the caveats mentioned above, the following features work everywhere. YMMV.

  .
  ^, $
  […], [^…]
  \*
  \w, \W, \s, \S
  \1 - \9 backreferences
  \b \B
  ? + 
  | alternation
  {n,m} for counting matches
  (...) capturing
Except that these don't work in macOS/BSD sed (even with -E flag):

- \w, \W, \s, \S - need to use POSIX classes instead: [[:alnum:]], [^[:alnum:]], [[:space:]], [^[:space:]]

- \b - need to use use [[:<:]] (word start) and [[:>:]] (word end) instead

- \B - (not a word start/end) no alternatives
semanticc
·há 2 meses·discuss
Easy with https://karabiner-elements.pqrs.org on Mac.
semanticc
·há 3 meses·discuss
It's not documented, but unfortunately neither of these re-signs the commits even if GPG signing is configured. They are based on `git replay`, and that doesn't sign either (at least yet).
semanticc
·há 3 meses·discuss
How/why did it consume more tokens?
semanticc
·há 3 meses·discuss
I think the script would be named as `#` so that it can be called via `\# mycmd` instead of `\\# mycmd`.
semanticc
·há 4 meses·discuss
Unless you disable cursor blinking because you find it annoying (like I do).
semanticc
·há 4 meses·discuss
Node 24+ does respect HTTP_PROXY when NODE_USE_ENV_PROXY=1 is set.
semanticc
·há 5 meses·discuss
> GitHub’s contributor graphs use mailmap.

This is not true, .mailmap is [unfortunately] not supported by GitHub: https://github.com/orgs/community/discussions/22518
semanticc
·há 6 meses·discuss
Do you have an example of this in mind where the known "tit for tat" strategy falls short?
semanticc
·há 9 meses·discuss
Linux is not developed in GitHub.