HackerLangs
トップ新着トレンドコメント過去質問紹介求人

MuffinFlavored

no profile record

コメント

MuffinFlavored
·19 日前·議論
I think I've read from a few different sources that the Claude Code $100-$200/mo plans are subsidized so hard that it's basically $2k-$8k/mo in "would-be" equivalent API token usages.

This kind of makes sense in that space while the subsidies (if true) last?

Unrelated, "tokens" feels very like... back-then blockchain to me. All the craze.
MuffinFlavored
·20 日前·議論
The company I work for, the code Opus 4.8 is able to generate, is higher quality than what was left behind by 10+ years of contractors that have come and gone.
MuffinFlavored
·20 日前·議論
> Just stop caring about quality.

I'm not so sure this is true anymore. It may have been years ago but... can you honestly say "the Bun project was fully AI written, therefore the quality is poor"?

Any concrete examples/proof?
MuffinFlavored
·20 日前·議論
I know a ton of people absolutely hate this level of "LLM code + LLM PR description + LLM PR review" but my boss would have an orgasm if I was able to use AI half as well in our org... :/
MuffinFlavored
·24 日前·議論
I'd like the see the author achieve the same setup but with Nix
MuffinFlavored
·24 日前·議論
I must have tried to write the same "perfect" IRC client from scratch in C a dozen times growing up...
MuffinFlavored
·28 日前·議論
Did open source phones win? No, iPhone is pretty dominant.

Did open source operating systems win? No, MacOS/Windows are pretty dominant.

Does open source... cloud hosting, social media, ride sharing apps, you name it win? Not in my experience?
MuffinFlavored
·2 か月前·議論
> email service provider (pissmail)

I'm sorry this happened to you.
MuffinFlavored
·2 か月前·議論
This is a foothold business living entirely at Apple's discretion.

edit: more research

> Chert is in the Sendblue/Blooio lineage, which runs genuine Apple software on real Macs logged into real Apple IDs. They're almost certainly not doing "Beeper Plus again."
MuffinFlavored
·2 か月前·議論
I wonder how many "behind the curve/not super modern" corporations were using Bun or Deno to begin with.

Part of me thinks it's a mild overreaction. It's not like people audit every line of kernel/driver/BIOS/EFI code before running Linux? As long as the tests pass and the performance doesn't regress and it's secure... why are people so mad that it was vibe coded? Is it because it was an irresponsible thing to do? Maybe?

I don't know, I see both sides.
MuffinFlavored
·2 か月前·議論
> Well and uber cut the driver pay in half and doubled the price

Devil's advocate:

* inflation caused everything to go up to some degree since then

* if it was "that bad" as you say, they wouldn't be extremely profitable and have so many users

both things can be true? "they cut the driver pay in half and doubled the price" did not lead to the collapse of the business/people to stop using it.
MuffinFlavored
·2 か月前·議論
> Frontier AI companies are selling at a loss.

How big/deep of a loss?

I feel like I read this every day for years that Uber did this same "idiotic, losing" strategy (how it was pitched/discussed) and then one day we woke up and... without much fuss, boom, they were profitable seemingly overnight.
MuffinFlavored
·2 か月前·議論
Might want to add how this compares to other products in the space.

Some that come to mind that are potentially tangentially related/similar:

https://github.com/evidence-dev/evidence
MuffinFlavored
·3 か月前·議論
Have you tried NixOS/flakes? What was your reaction?
MuffinFlavored
·3 か月前·議論
I wish they would just rip the bandaid to stop everybody's entitled whining.

"We're sorry, what we were able to give you for $100/mo before now needs to be $200/mo (or more). We miscalculated/we were too generous/gave too much away for too little. It's a new technology, we are seeing a ton of demand, we are trying to run a business, hope you understand. If you don't want it, don't pay for it."
MuffinFlavored
·3 か月前·議論
I wish people would pay more attention to:

* Anthropic is in some way trying to run a business (not a charity) and at least (eventually?) make money and not subsidize usage forever

* "What a steal/good deal" the $100-$200/mo plans are compared to if they had to pay for raw API usage

and less on "how dare you reserve the right to tweak the generous usage patterns you open-ended-ly gave us, we are owed something!"
MuffinFlavored
·3 か月前·議論
How big of a handicap on performance is the external enclosure for something like an RTX5090?
MuffinFlavored
·3 か月前·議論
> Running DeepSeek V3 (685B) requires 8×H100 GPUs which is about $14k/month. Most developers only need 15-25 tok/s.

> deepseek-v3.2-685b, $40/mo/slot for ~20 tok/s, 465 slots total

> 465 users × 20 tok/s = 9,300 tok/s needed

> The node peaks at ~3,000 tok/s total. So at full capacity they can really only serve:

> 3,000 ÷ 20 = 150 concurrent users at 20 tok/s

> That's only 32% of the cohort being active simultaneously.
MuffinFlavored
·4 か月前·議論
Can you help me understand why devenv is needed instead of a shell like this/what is gained?

    { pkgs }:
    
    pkgs.mkShell {
      nativeBuildInputs = with pkgs; [
        # build tools
        cmake
        ninja
        gnumake
        pkg-config
      ];
    
      buildInputs = with pkgs; [
        # java
        jdk8
    
        # compilers
        gcc
        clang
        llvmPackages.libcxx
    
        # libraries
        capstone
        icu
        openssl_3
        libusb1
        libftdi
        zlib
    
        # scripting
        (python3.withPackages (ps: with ps; [
          requests
          pyelftools
        ]))
      ];
    
      # capstone headers are in include/capstone/ but blutter expects include/
      shellHook = ''
        export CPATH="${pkgs.capstone}/include/capstone:$CPATH"
        export CPLUS_INCLUDE_PATH="${pkgs.capstone}/include/capstone:$CPLUS_INCLUDE_PATH"
      '';
    }
MuffinFlavored
·4 か月前·議論
really good question.

right now I have bought into the Nix koolaid a bit.

I have NixOS Linux machines and then nix-darwin on my Mac.

I use Nix to install Brew and then Brew to manage casks for things like Chrome what I'm sure updates itself. So the "flake.lock" probably isn't super accurate for the apps you described.