home.social
  1. TIL you can run `ffmpeg` (compiled to ) directly in the browser (recording, converting, streaming) via github.com/ffmpegwasm/ffmpeg.w

  2. Jail-breaking Unitree Robot Dog by... injecting `curl` commands after random password... youtube.com/watch?v=lA8WuXDXfc

  3. A 1 million line PR rewriting from to just dropped... github.com/oven-sh/bun/pull/30

  4. Fascinating talk with and contributors Jean-Baptiste Kempf and Kieran Kunhya:

    > "And everything we’ve just said in the past couple of minutes, every sentence is someone’s lifetime’s work. There are books about- … every sentence"

    lexfridman.com/ffmpeg-transcri

  5. is simple! To copy ("yank"?) the entire buffer into clipboard, just hit [Esc] for Normal mode, followed by `ggyG`! ("go to the beginning of the buffer, yank selection, go to the end of buffer".) Of course you must first add this to use your OSes clipboard...:

    ```
    vim.opt.clipboard = "unnamedplus"
    ```

  6. I switched from to and I was blown away that the editor can still be responsive in 2020s. Now I moved further to . It's obviously even more responsive. Downside: it responds very quickly to my random key presses and I have no idea what I'm doing

  7. Colors in HTTP server access logs is something I had no idea is so useful! Good work, framework

  8. The podcast with Dave Plummer (most known for creating Windows Task Manager) was a joy to listen: lexfridman.com/dave-plummer/

  9. Great article about cascading failures, with outage in us-east-1 taking down entire region as an example. I mean, the incident from 2015, not the recent one 😉 blog.mi.hdm-stuttgart.de/index

  10. More than 10 hours and 440 MiB MP3 on my mobile. These podcasts are getting ridiculous...

  11. Back in 2014 I had a talk on the very first conference. One of my slides was joking that all of these lines are equivalent, except one, which doesn't compile. I have no idea which one was it ;-)

    The last time I used full-time was almost a decade ago | nurkiewicz.github.io/talks/201

  12. Apparently made a huge pivot from actor toolkit inspired by to "Enterprise Agentic AI" :-( akka.io/

  13. "Delete leftover IDE Storage Directories" in just cleaned up 8 GiB+ of disk (!) Leftovers from outdated and no longer used IDE versions

  14. "Evaluating persistent, replicated message queues" mega article by @adamwarski et. al. is pure gold. softwaremill.com/mqperf/ Features and more

  15. One more reason to avoid Jira ;-) "they found unencrypted usernames and passwords that the worker used to access and manage customers’ accounts, including an account for . The hacker says the credentials were stored on the worker’s machine in a project management tool called " wired.com/story/epam-snowflake

  16. So I'm watching this premium tutorial. The expert shows how fetching 3 URLs sequentially takes 2.1s, whereas running concurrently takes only... 400ms. Both "tests" in the same process. I'm pretty sure connection pooling, DNS caching, HTTP caching and so on contributed much more than ... And I thought using float32 for money, a few chapters back, was bad

  17. Top 10 Tools for Kafka Engineers:
    1.
    2.
    3. Kafka Streams
    4.
    5. Kafka UIs
    6.
    7. Cruise Control
    8. Kafka Security Manager
    9.
    10. Kafka Proxy

    From: thenewstack.io/top-10-tools-fo

  18. released IDE for writing... documentation! I'm just surprised it doesn't seem to support out-of-the-box jetbrains.com/writerside/

  19. I suspect UI is using and . There are some hints, about 137 of them in the exposed stack trace

  20. @sos Well, it seems like they simply put in the cloud through API. It can actually be a reasonable business model: they run heavy ffmpeg workloads in serverless fashion. ffmpeg is mentioned once in their blog. They also explain their stack: API GW, AWS , AWS , AWS , AWS , AWS . You pay for the infrastructure you use + profit margin. Many companies simply take open source software and host it in the cloud

  21. So I'm using on top of on top of (with plugins) on top of . At this point I have no idea which terminal features come from which software. And if I really need all of these installed

  22. Am I the only one still preferring , and over desktop tools like ? Findings like that aren't helpful: leeholmes.com/security-risks-o

  23. " [...] had these internal control-plane entities (as part of the implementation) called tablet servers, which had large indexes, and at some point they became a scaling bottleneck. So the Bigtable engineers scratched their heads over how to make it scale, and realized that they could replace the tablet servers with Bigtables to unblock the scaling. So Bigtable is part of its own implementation. It’s Bigtables all the way down" steve-yegge.medium.com/dear-go

  24. : "The Modern Way to Write . Expressive Syntax and Faster Coding". I'm not 100% sure this example convinces me:

    `a |> & + 1 |> bar`

    In some sense I appreciate the regularity of the syntax, but I still somehow find `bar(a + 1)` easier to read...

  25. Fantastic explanation of algorithm: youtube.com/watch?v=lJYufx0bfpw. What's great about this video is that it uses very basic concepts, so that even non-programmers will understand it. On the other hand, CS terms like hash functions or sorted sets are mentioned in fine print, so the video doesn't sound childish

  26. We should give some credit for things like inventing AJAX (XMLHttpRequest), and . Also, developing , and . And some decent hardware, like keybords and mice. They're not only and

  27. about - a managed VS Code or Gateway that you can access through your browser or thin client. Essentially, hosted on the cloud. Not a new idea, but it's interesting to see it more and more frequently | cloud.google.com/workstations

  28. @infosec812 Actually simplified WebSockets significantly. E.g. here's a complete rudimentary chat that receives a message over web socket and broadcasts to everyone else: github.com/nurkiewicz/reactor-. Maybe 10 lines of real code.

  29. Not sure if I'm amazed how detailed the stack trace is, or terrified looking at the number of operators involved for a simple HTTP 404.

  30. How to read a live-stream of posts on #Mastodon using #Java #Spring and #WebFlux. About 5-10 posts per second