Readit News logoReadit News
leobuskin commented on Meta acquires Moltbook   axios.com/2026/03/10/meta... · Posted by u/mmayberry
neom · 2 days ago
I'm not sure they invented that, I used moltbook and found it didn't have it, so I created it and posted it here a good 2 weeks before they posted their post: https://news.ycombinator.com/item?id=46850284 - not that I care, want credit, or think ideas are worth anything, just like I didn't invent it, they didn't invent it either. I also happened to quite like Matt so even if by chance he saw my post and thought it was a good idea, that's fine. (I feel I sound bitter in this post, I'm not)
leobuskin · 2 days ago
In this new AI-driven world, ideas mean everything; one more year - it will be battles of ideas (not implementations as before).
leobuskin commented on Doom in Django: testing the limits of LiveView at 600.000 divs/segundo   en.andros.dev/blog/7b1b60... · Posted by u/andros
agentifysh · 2 months ago
if only i could run django on cloudflare workers

guess i could run it on a dedicated server

would be nice if we can get django and liveview working without a server

leobuskin · 2 months ago
you can do it on wasmer's workers, their last wasm/python approach is pretty solid (compatibility, performance). it's sad to say, but after 4 years of "beta" Python support on CF workers - it's still ugly. I dunno who was responsible for such a neglect, but even with the last changes - total fiasco
leobuskin commented on Doom in Django: testing the limits of LiveView at 600.000 divs/segundo   en.andros.dev/blog/7b1b60... · Posted by u/andros
pawelduda · 2 months ago
Shame Phoenix LiveView is missing from the comparison
leobuskin · 2 months ago
It's only django-related third-party packages comparison (and SSR itself), would be a bit strange to compare with a different language/stack and/or framework
leobuskin commented on Manus AI 100M USD ARR   manus.im/blog/manus-100m-... · Posted by u/ms7892
gregjw · 2 months ago
Never met a single person who has used it. Only ever Replit/Lovable/Bolt/v0. Interesting.
leobuskin · 2 months ago
Never met a single person who used Replit/Lovable/Bolt/v0, all folks have either custom harnesses around top-tier labs' models, or use their dev-tools (cc, codex, etc). It feels like Manus & Co are very niche thing
leobuskin commented on Django: what’s new in 6.0   adamj.eu/tech/2025/12/03/... · Posted by u/rbanffy
saaspirant · 3 months ago
From your experience, what is a better alternative guys?
leobuskin · 3 months ago
There’s no alternative (while prototyping), and anything else is better (when you properly defined your case).
leobuskin commented on Django: what’s new in 6.0   adamj.eu/tech/2025/12/03/... · Posted by u/rbanffy
hintoftime · 3 months ago
Why is celery awful?
leobuskin · 3 months ago
It's okay till it's not. Everyone I know who had Celery in production was looking for a substitution (custom or third-party) on a regular basis. Too many moving pieces and nuances (config × logic × backend), too many unresolved problems deep in its core (we've seen some ghosts you can't debug), too much of a codebase to understand or hack. At some point we were able to stabilize it (a bunch of magic tricks and patches) and froze every related piece; it worked well under pressure (thanks, RabbitMQ).
leobuskin commented on Show HN: Runprompt – run .prompt files from the command line   github.com/chr15m/runprom... · Posted by u/chr15m
cedws · 3 months ago
Can it be made to be directly executable with a shebang line?
leobuskin · 3 months ago
/usr/local/bin/promptrun

  #!/bin/bash
  file="$1"
  model=$(sed -n '2p' "$file" | sed 's/^# \*//')
  prompt=$(tail -n +3 "$file")
  curl -s https://api.anthropic.com/v1/messages \
    -H "x-api-key: $ANTHROPIC_API_KEY" \
    -H "content-type: application/json" \
    -H "anthropic-version: 2023-06-01" \
    -d "{
      \"model\": \"$model\",
      \"max_tokens\": 1024,
      \"messages\": [{\"role\": \"user\", \"content\": $(echo "$prompt" | jq -Rs .)}]
    }" | jq -r '.content[0].text'

hello.prompt

  #!/usr/local/bin/promptrun
  # claude-sonnet-4-20250514

  Write a haiku about terminal commands.

Deleted Comment

leobuskin commented on Launch HN: JSX Tool (YC F25) – A Browser Dev-Panel IDE for React    · Posted by u/jsunderland323
jsunderland323 · 4 months ago
No it's all good and it's a fair point.

So from my vantage point we need some way to create revenue. We have tried to make as much of the tool free as we can. We do a 10% markup on tokens issued by us. That's better than cursor who does 25%. We support BYOK so you can use your own claude key, and vertex key. If you do that you are basically just paying us a flat troll tole of $16/month to use our entire frontend but you are free to be unbounded by a markup on your tokens. We actually prefer this because it's better unit economics for us. So please bring your own key!

leobuskin · 4 months ago
But here's the thing: most of your real audience doesn't have API keys (except a few enterprise-ish folks or startups who got credits). They already pay subscription(s) (and will continue to pay the maximum, which will keep growing). The entire token resale model creates a weird economy and interdependency that shouldn't exist in the first place. In the end, all the deals with top-tier labs will be changing, most middlemen will start manipulating the token exchange rate at some point, and there's no transparency or single source of trust. What's the Endspiel here?
leobuskin commented on .NET 10   devblogs.microsoft.com/do... · Posted by u/runesoerensen
el_benhameen · 4 months ago
FWIW, the .net folks seem to have put a lot of effort into the native AOT pipeline in the last few releases. We have a large, non-trivial application with a fair amount of legacy code, and getting it AOT’d in .net 10 (targeting wasm, even!) was not an insane lift.
leobuskin · 4 months ago
How is the WASM target looking nowadays? I tried it in 2023 and early 2024, and it was far from complete (JS interop, poor documentation scattered across GitHub issues, and so on). I still can't find a single trustworthy source of documentation on how to proceed. C# would look great at the edge (Cloudflare Workers).

u/leobuskin

KarmaCake day37April 10, 2025
About
leonardbuskin [at] gmail
View Original