Hacker Newsnew | past | comments | ask | show | jobs | submit | bkircher's commentslogin

A LLM in a browser has access to untrusted input (a web site) and secrets (my 1password account)? Not sure this is such a good idea.


Forced or not, there’s observable slop in documentation and specs in my company’s Confluence.


If someone used AI to generate some doc, I reserve the right to use AI to summarise it.

Any lossy mistakes won’t be my fault right?


Excellent talk! Sad seeing Strange Loop go…


Does anyone know of a good (preferably US based) replacement? It had a unique vibe.


Ever used MS Teams?


There are a couple of smaller "cloud" providers who do not ([1]). I think this might be simply because they lack the tech for traffic shaping here. So they usually implement a "fair use policy" (whatever that means). But yes, ingress and egress traffic is essentially offered for free.

[1]: Another one is gridscale.io, also from Germany


Like the (sadly) usual "Hey, just calling you up to let you know that I just send you an email! Have you read it yet? What do you think?"


Productivity goes up 130%


I can't change my face. I can change all my passwords, though. Also, I don't own an iPhone.


You don't need to change your face.

Your face is only authenticating you to your device because that's what you chose. If you don't want that (e.g. your identical twin sister loves pranking you) you can just use a different authenticator. The remote web site deliberately has no idea your face was involved, it just knows your identity was verified on its behalf by the hardware storing your private key.


This is why I don't like bio-metrics...

I can have a near infinite number of passwords, but I only have 1 face, or 10 fingers. When all of my fingerprints are compromised, and the system only allows fingerprint login, now what do I do ?


Can’t I just do all what docker-compose does with a Makefile and a couple of

  docker network create
  docker run
and so on? With much less magic involved?


> Can’t I just do all what docker-compose does with a Makefile

There's a lot of value in just being able to run a set of unified Docker Compose commands and have things work the same in every case with the same YAML configuration.

But technically yes you could replicate that behavior, however Docker Compose does a bunch of pretty nice things, like when you run docker-compose up it will intelligently recreate containers that changed but leave the others untouched. Then there's the whole concept of override files, etc..

It would take a fair amount of scripting to emulate all of that behavior along with getting all of the signal processing and piping multiple services to 1 terminal output acting well. Even today Docker Compose has issues with that after years of development.

You should run docker-compose with --verbose one day just to see what really happens under the hood. Compose is doing a lot. For example I wrote about this a while back. It also includes an example output of running a single service app with --verbose: https://nickjanetakis.com/blog/docker-tip-60-what-really-hap...


The benefit is standardization. If every team you join has a `docker-compose.yml` to run a local development environment you know exactly what it is, how to add things to it, etc. If every team you join has a custom solution for an extremely lightweight development environment than you need to be brought up to speed every single time.

It's a similar argument to "Why do you need Makefiles when you can just write a bunch of bash files and a meta-bash file to execute each sub script based on the stat results of a list of files?"


The recommended approach for managing groups of multiple containers with podman seems to be using pods (hence the name), which can be managed by Makefiles as you describe.


This is like asking "can't I just use a cellar + ice instead of using a fridge?".

Yes, through a lot of scripting, you can emulate docker-compose. But compose actually handles a lot of things, to the point that manual scripting doesn't really make any sense.

I don't understand how people manage multiple related containers -without- compose. It makes things so much easier.


Related: vendors should also support fwupd [1].

[1] https://www.fwupd.org/


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: