Preferences

logankeenan
Joined 225 karma
logankeenan.com

  1. I guess I’ll start to look at an alternative to GitHub self hosted runners.

    It’s been awhile since I looked. What’s a good alternative?

  2. How would we effectively regulate social media? Being the regulator could be a very powerful political tool and used to capture or maintain political power.
  3. It’s been about a year since I looked into this sort of thing, but molmo will give you x,y coordinates. I hacked together a project about it. I also think Microsoft’s omniparser is good at finding coordinates too.

    https://huggingface.co/allenai/Molmo-7B-D-0924

    https://github.com/logankeenan/george

    https://github.com/microsoft/OmniParser

  4. I had no idea Romanization of Perian was a thing. Thanks for sharing!

    https://en.wikipedia.org/wiki/Romanization_of_Persian

  5. The BBC article spelled the dam's name wrong in their interactive image. It's Latyan Dam if anyone else wanted to look up more on it.

    https://en.wikipedia.org/wiki/Latyan_Dam https://maps.app.goo.gl/UzQrPMR4iHRdbsuP7

    Edit: TIL there can be different translations/spellings of Persian to English

  6. Using Rust instead of a Go would provide a smaller binary since it doesn't need a runtime. Compared to JavaScript apps, it's not terrible but also not great. One thing WASM has over JS is that it can decode and compile code in parallel across multiple threads as it streams in.

    https://hacks.mozilla.org/2018/01/making-webassembly-even-fa...

  7. It's really cool to see someone else gravitate toward this idea. I think there might be some real potential in the future. I wrote about a similar idea in 2022 [0] and 2023 [1]. The service worker approach was heavily inspired by Richard Anaya's work [2]. HTMX migrating to fetch [3] makes this even easier. I had to create a xhr-fetch-proxy [4] to intercept requests with htmx today. I'm not the author, but would be happy to answer any questions.

    [0] https://logankeenan.com/posts/a-rust-server-app-compiled-to-...

    [1] https://logankeenan.com/posts/client-side-server-with-rust-a...

    [2] https://github.com/richardanaya/wasm-service

    [3] https://www.hackerneue.com/item?id=45803358

    [4] https://github.com/logankeenan/xhr-fetch-proxy

  8. Oh that’ll be much nicer. Would myCustomFetch then need to return a Response?

    https://developer.mozilla.org/en-US/docs/Web/API/Response

  9. Yep, it's super nice. The Service Workers API also makes this really easy too. I experimented with compiling a Rust Axum server to WASM and then ran it in my service worker. Also, thanks for incorporating fetch into htmx!

    I thought I'd include an example of replacing fetch for anyone that come across this.

        const originalFetch = window.fetch;
        window.fetch = function(url, options) {
          if (url.includes('/api/user')) {
            const mockUser = {id: 1, name: 'John Doe', email: 'john@example.com'};
            return Promise.resolve(new Response(JSON.stringify(mockUser)));
          }
          return originalFetch(url, options);
        };
    
    https://developer.mozilla.org/en-US/docs/Web/API/ServiceWork...
  10. This is great! I had to create an xhr-fetch-proxy to use fetch and htmx. This change should open up a lot of fun possibilities.

    https://github.com/logankeenan/xhr-fetch-proxy

  11. > Usage their customers would not pay for if it did not have a positive ROI.

    I don't think we can assume that's true. Their customers are paying for it, but we don't know how profitable they are being with the AI compute they pay for.

  12. Can you elaborate on this a bit more? Does that mean OpenAI had a ~$9.4 billion loss so MSFT needs to put 49% of that loss in their books?
  13. I'm on the binary install with version v2.0.19. It never showed in the `/model` selector UI. I did end up typing `/model haiku` and now it shows as a custom model in the `/model` selector. It shows claude-haiku-4-5-20251001 when selected.
  14. I'm not seeing it as a model option in Claude Code for my Pro plan. Perhaps, it'll roll out eventually? Anyone else seeing it with the same plan?
  15. I’d really like to understand the total compute cost it takes to accomplish these tasks. I assume the compute is happening in a DC somewhere and not all onboard. Is the total cost of compute plus electricity to power the machine less than the cost of human labor to do the same task? At some point it’ll be less. If so, far out in the future until the prices make economic sense
  16. It’s great that they made an update.

    It’s not clear to me if this can result in a RCE. If it does, then does this mean that enough iPhone 6s are still out in the wild where a bad actor could easily take over a big enough portion to do more nefarious things?

  17. Has anyone had luck with bat boxes to help control the mosquito population?
  18. Iran is the largest state sponsor of terrorist groups. The key word being “state”. There are many well known terrorist groups that are not sponsored by Iran.
  19. With Electron, it will bundle chrome into the app so you only have to handle that single rendering engine. Tauri uses whatever is the default browser on the system the app is installed on
  20. Do you mean the actual rendering of html/css when you say rendering differences? Or are you referring more to differences in JS support?

This user hasn’t submitted anything.