HackerLangs
TopNewTrendsCommentsPastAskShowJobs

phyrex

871 karmajoined hace 14 años

comments

phyrex
·hace 5 días·discuss
That's exactly what Zuckerberg said a year ago or so :/
phyrex
·hace 25 días·discuss
Say more?
phyrex
·el mes pasado·discuss
Those glasses don't record by themselves. Somebody pressed the button and deliberately recorded it.
phyrex
·el mes pasado·discuss
Those plans exist in Europe. Not sure if they're available elsewhere or how popular they are there
phyrex
·hace 2 meses·discuss
Yes, erlang and increasingly rust
phyrex
·hace 3 meses·discuss
You could work in Erlang, PHP, and C++ at Meta ;)
phyrex
·hace 3 meses·discuss
> Not sure I’ve ever seen a real life business man go from boyking god emperor to clearly incompetent scam artist quite like Mr Altman

Elon Musk?!
phyrex
·hace 3 meses·discuss
That must have been a long time ago. Nowadays there are a lot of safeguards and that's one of the things that gets you fired right away.
phyrex
·hace 4 meses·discuss
Camera is recording/taking a picture
phyrex
·hace 5 meses·discuss
Why?
phyrex
·hace 5 meses·discuss
*weird
phyrex
·hace 5 meses·discuss
That's literally graphql though? That's the whole idea. This is so weis, clearly the author is aware of graphql but then just decided to reimplement half the backend? Why?
phyrex
·hace 5 meses·discuss
Wow, good for you, you can make A LOT of money!! https://bugbounty.meta.com/
phyrex
·hace 6 meses·discuss
workaround from the issue discussion:

```

  Problem: Claude Code 2.1.0 crashes with Invalid Version: 2.1.0 (2026-01-07) because the CHANGELOG.md format changed to include dates in version headers (e.g., ## 2.1.0 (2026-01-07)). The code parses these headers as object keys and tries to sort them using semver's .gt() function, which can't parse version strings with date suffixes.

  Affected functions: W37, gw0, and an unnamed function around line 3091 that fetches recent release notes.

  Fix: Wrap version strings with semver.coerce() before comparison. Run these 4 sed commands on cli.js:

  CLI_JS="$HOME/.nvm/versions/node/$(node -v)/lib/node_modules/@anthropic-ai/claude-code/cli.js"

  # Backup first
  cp "$CLI_JS" "$CLI_JS.backup"

  # Patch 1: Fix ve2.gt sort (recent release notes)
  sed -i 's/Object\.keys(B)\.sort((Y,J)=>ve2\.gt(Y,J,{loose:!0})?-1:1)/Object.keys(B).sort((Y,J)=>ve2.gt(ve2.coerce(Y),ve2.coerce(J),{loose:!0})?-1:1)/g' "$CLI_JS"

  # Patch 2: Fix gw0 sort
  sed -i 's/sort((G,Z)=>Wt\.gt(G,Z,{loose:!0})?1:-1)/sort((G,Z)=>Wt.gt(Wt.coerce(G),Wt.coerce(Z),{loose:!0})?1:-1)/g' "$CLI_JS"

  # Patch 3: Fix W37 filter
  sed -i 's/filter((\[J\])=>!Y||Wt\.gt(J,Y,{loose:!0}))/filter(([J])=>!Y||Wt.gt(Wt.coerce(J),Y,{loose:!0}))/g' "$CLI_JS"

  # Patch 4: Fix W37 sort
  sed -i 's/sort((\[J\],\[X\])=>Wt\.gt(J,X,{loose:!0})?-1:1)/sort(([J],[X])=>Wt.gt(Wt.coerce(J),Wt.coerce(X),{loose:!0})?-1:1)/g' "$CLI_JS"

  Note: If installed via different method, adjust CLI_JS path accordingly (e.g., /usr/lib/node_modules/@anthropic-ai/claude-code/cli.js).
```
phyrex
·hace 7 meses·discuss
I hate the stock kobo reader, so this is exciting!
phyrex
·hace 8 meses·discuss
It's a good idea. Obviously you can't preemptively OCR all images but having "context menu -> follow link" which works on QR codes and images with links in them seems totally doable do me
phyrex
·hace 8 meses·discuss
Each snapshot of the repo isn't that big, but all the snapshots together, plus all the commit metadata and such, are
phyrex
·hace 8 meses·discuss
Microsoft has actually done a lot of work to scale got to large repos
phyrex
·hace 8 meses·discuss
Very sure, i work in one
phyrex
·hace 8 meses·discuss
The datacenter OS doesn't have to be the same as the developer OS. At my work (of similar scale) the datacenters all run Linux but very nearly all developers are on MacOS