HackerLangs
TopNewTrendsCommentsPastAskShowJobs

phyrex

871 karmajoined 14 years ago

comments

phyrex
·5 days ago·discuss
That's exactly what Zuckerberg said a year ago or so :/
phyrex
·25 days ago·discuss
Say more?
phyrex
·last month·discuss
Those glasses don't record by themselves. Somebody pressed the button and deliberately recorded it.
phyrex
·last month·discuss
Those plans exist in Europe. Not sure if they're available elsewhere or how popular they are there
phyrex
·2 months ago·discuss
Yes, erlang and increasingly rust
phyrex
·3 months ago·discuss
You could work in Erlang, PHP, and C++ at Meta ;)
phyrex
·3 months ago·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
·3 months ago·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
·4 months ago·discuss
Camera is recording/taking a picture
phyrex
·5 months ago·discuss
Why?
phyrex
·5 months ago·discuss
*weird
phyrex
·5 months ago·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
·5 months ago·discuss
Wow, good for you, you can make A LOT of money!! https://bugbounty.meta.com/
phyrex
·6 months ago·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
·7 months ago·discuss
I hate the stock kobo reader, so this is exciting!
phyrex
·8 months ago·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
·8 months ago·discuss
Each snapshot of the repo isn't that big, but all the snapshots together, plus all the commit metadata and such, are
phyrex
·8 months ago·discuss
Microsoft has actually done a lot of work to scale got to large repos
phyrex
·8 months ago·discuss
Very sure, i work in one
phyrex
·8 months ago·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