HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mkroman

no profile record

comments

mkroman
·2 месяца назад·discuss
The plugin is specifically for handling backups via object storage.

CloudNativePG also implements support for volume snapshots: https://cloudnative-pg.io/docs/1.29/backup#backup-methods
mkroman
·2 месяца назад·discuss
It's a terminal. It was a terminal before they pivoted to AI (I don't blame them, with their funding rounds I don't see them having particularly free reins) Before this, it was all about collaborative (CRDT) features. I have no idea why you'd want a terminal that is also an agent harness, but I appreciate them making it open source none the less.
mkroman
·3 месяца назад·discuss
> how are we in 2026 and phones dont have guest mode or "i handed it to my kid mode"

They do. Android have had multi-user and guest profiles since Android 5.

The only reason I really know this is because I heard how Google completely bungled it in Android 14 on Pixel devices[1] :D

[1]: https://arstechnica.com/gadgets/2023/10/android-14s-ransomwa...
mkroman
·3 месяца назад·discuss
How? The article states:

> For the same reason, plugging in an external keyboard is also a no-go since freshly updated iPhones are placed in what's known as a Before First Unlock state, which prevents wired accessories from working until the passcode is entered.

The user can't even enter their passcode, how do you expect them to perform code execution?
mkroman
·6 месяцев назад·discuss
> but if you do specs and tests it's actually the opposite, you can go beyond technical debt and regenerate your code as you like.

Having to write all the specs and tests just right so you can regenerate the code until you get the desired output just sounds like an expensive version of the infinite monkey theorem, but with LLMs instead of monkeys.
mkroman
·6 месяцев назад·discuss
Ah cool, thanks, didn't know this existed. I just get a dummy message when playing audio, so I'll play around with some speech dispatcher[1] solutions later!

> Oh, and mozilla's off-line translate for private translation of web pages... that's another neat AI thing they added that I've found super helpful.

Yes, it's awesome! And one of my favorite additions to Firefox in many years, it's stuff like that they should focus on if they want AI, imo.

[1]: https://wiki.archlinux.org/title/Speech_dispatcher
mkroman
·6 месяцев назад·discuss
Ah yeah, there's this: https://github.com/mozilla/TTS

I can't seem to find anything that mentions a Firefox integration though?
mkroman
·6 месяцев назад·discuss
I don't understand how they expect offline LLM models to work in a meaningful capacity for users.. Isn't there a single multilingual person working at Mozilla?

All of the small LLM models break down as soon as you try to do something that isn't written in English, because - surprise - they're just too small.

There would need to be a hardware breakthrough, or they would have to somehow solve the heavy cost of switching the models between pages.

Instead of useful AI stuff that is a clear improvement to accessibility, they're insistent on ham-fisting LLM solutions that no one have even asked for.

Off the top of my head, they could instead:

1. Integrate something like whisper to add automatic captions to videos or transcribe audio

2. Integrate one of the many really great text to speech models to read articles or text out loud
mkroman
·7 месяцев назад·discuss
What I don't see mentioned here or in the article:

PostNord Denmark has been operating with massive losses for a while now, in part because they were required by law to be able to deliver everywhere in Denmark, when there were very little demand for it. The money just isn't there, which is why the law has been changed.

The cost of sending a letter was also just going up and up. In 2025, it cost $4.55 _per letter_.
mkroman
·8 месяцев назад·discuss
> I wish Docker Swarm survived.

I heard good things about Nomad (albeit from before Hashicorp changed their licenses): https://developer.hashicorp.com/nomad

I got the impression it was like a smaller, more opinionated k8s. Like a mix between Docker Swarm and k8s.

It's rare that I see it mentioned though, so I'm not sure how big the community is.
mkroman
·8 месяцев назад·discuss
> CUE was a fork of the Go compiler (Marcel was on the Go team at the time and wanted to reuse much of the infra within the codebase)

Ah, that makes sense, I guess. I also get the feeling that the language itself is still under very active development, so until 1.0 is released I don't think it matters too much what it's implemented in.

> Also, so much of the k8s ecosystem is in Go that it was a natural choice.

That might turn out to be a costly decision, imho. I wanted to use CUE to manage a repository of schema definitions, and from these I wanted to generate other formats, such as JSON schemas, with constraints hopefully taken from the high-level CUE.

I figured I'd try and hack something together, but it was a complete non-starter since I don't work within the Go ecosystem.

Projects like the cue language live and breathe from an active community with related tooling, so the decision still really boggles my mind.

I'll stay optimistic and hope that once it reaches 1.0, someone will write an implementation that is easily embedded for my use-cases. I won't hold my breath though, since the scope is getting quite big.
mkroman
·8 месяцев назад·discuss
shudders.. `| nindent 12`..

I've been trying to apply CUE to my work, but the tooling just isn't there for much of what I need yet. It also seems really short-sighted that it is implemented in Go which is notoriously bad for embedding.