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

Accountability? Never heard of him, probably works in another department. Check out with Carol.


Funny analogy. “The only constant is change”. Thats why humans constantly repeat the same mistakes we covered and wrote about in last 3000 years.

The pace of learning for our spieces is devastatingly slow. We rather regress faster than learn.

We are closer to idiocracy, due to knowledge and skills atrophy (not only due to AI).


So when we can fire C suite? Not like they do any meaningful work beside paying themselves tens of millions of bonuses.

Ah - never ? Because corpo ladder is rigged? Ok, thats what I thought.


TL;DR is that its extremely hard to show staff level expertise if you work at a wrong company. And the amount of companies that still need this expertise is ever decreasing (big corpos with a lot of autonomy)

This is the real reason why we dont see natural path for more ppl to progress towards Staff level.

Interestingly noone talks about this. “Be first or bust”


As an autistic person that has issues with understanding other ppls “feelings” - Yes, you are labeled as deficient.

But… I can always make better decisions, coldly calculate pros and cons, dont let feelings take better of me.

Im much better at anything I do than your average person.

Example I started carpenting work, became better at it in few weeks than my teacher that does it for 20 years (his words).

Can start doing something new and become really good at it very fast.

In a logical sense - Im much much better than any average normal person at anything.

But Im deficient, because I have issues socializing or understanding ppl behaviour.

Ps. I talk straight from heart, coz I see no value in lying.

Ps2. I also strongly believe, ppl like me are the next evolution step for humans. Overdependance on feelings and first guesses is very detrimental for us as a spieces.


There is no "next step" in evolution, nor any concern for what is or is not "detrimental for us as a spieces".

Evolution is much simpler, at its core: Is autism heritable and do autistic people leave behind more viable offspring than the non-autistic? Then the proportion of autistic people can be expected to grow, otherwise it most likely won't


Is your ability to acquire new skills easily related to autism? At the end of the day, does it matter?

I have ADHD and I've found peace in trying not to assign precise moral value to different characteristics that I have. Easier said than done, of course…


How does it handle 100000 write transactions per second ?

From multi-client architecture and with regional HA?


Its not a meme. Postgres does all of those things good enough to be always considered the first pick.

I love Postgres. Im using it for majority of my career in IT. It never failed me, even on very big scale.

Amazing piece of software.


Difference is in how you sell it.

We all know that people make mistakes. I.e. crash a car from time to time.

We all are sold a view that AI will save humanity, cure all diseases, solve all problems, allow for autonomous driving and many other (lies?).

While making basic mistakes or crashing on trivial crossroads..

Hype is way overblown.


The anti-hype is also way overblown. Nobody is saying that today's AI is omniscient and never makes mistakes. Future models will make fewer mistakes. They will still not hook into the universe with a cheat code and do everything at 100 percent reliability. It's a straw man.


The hype has significant real-world consequences such as nonsensical amounts of funding and valuations that could crash the world economy at some point. Until there some "check" on this system, i think the anti-hype is quite valid.


Overblown? Not really. There is still not enough of criticism given asinine hype given by the LLM and adjacent companies.

Funny of you to mention strawman after presenting one.


Docker containers are not enough isolation for anyone that cares about jailbreak scenarios.

Only real alternative is to use microvms. My goto solution for this are apple/containers.


> Docker containers are not enough isolation for anyone that cares about jailbreak scenarios.

For the vast majority of developers, containers are enough, which is why they are ubiquitous while vms are less common. Ofc that ubiquity has led to lazy configuration, which is how the jailbreaking can occur. Knowing what you are doing with containers is a requirement to use containers as an AI sandbox.


the big thing containers don't allow is for the agent to run and use docker itself without compromising the host

I'm not sure where "vast majority" cuts in but I would say a huge number of developers use docker and it is inconvenient at best if your AI harness can't actually run and test the infra it is building against


The AI launches new kernel bugs as matter of course.


> Only real alternative is to use microvms. My goto solution for this are apple/containers.

Why microVMs? I never ever run a container, AI harness or other, in something else than a full on VM. I could use a microVM but in any case I really don't see why I'd run a container on one of my bare metal OS: the place of a container is inside a VM (or microVM).

Especially for AI harnesses where the threat of an escape is very real: the more defense in depth, the better.

And If I can use rootless Podman instead of "rootfull" Docker, the better. Most of my containers are Podman btw.

> My goto solution for this are apple/containers.

To each his own: my goto solution is an actual server on my LAN with shitload of cores and memory and plenty of scripts to provision VMs etc.

I really don't understand why people are YOLO'ing containers on their bare metal OS.


> I really don't understand why people are YOLO'ing containers on their bare metal OS.

You know about the people who do not bother with the container? Quite a few make “No problem so far” comments on HN discussions.


I agree. I thought everybody knew to never use docker for high security, because it is "security lite". Might as well just use firejail. I presume that an agent knows more about networking and virtualization than I do. The only real solution is using multi-tenant level vm isolation, while presuming that the agent still might break out of their vm. So the vms need to be hosted on their own physical box that only runs the kvm provisioning host (or similar), and is firewalled on its own isolated network. It's a bit of a pain of course, but anything less feels almost like security theatre rather than meaningful to me. Otherwise you need to stick to the remote chatbots only.


multi-tenant level vm isolation does not solve, imho, specific issues like data exfiltration (ssh private key, api tokens) or privilege escalation, as the vm still contains the whole kernel and userspace inside. So breaking out of the vm may be a realistic scenario.


Yes of course, the secrets have to be isolated from the VMs, preferably at the network gateway and not on the same KVM host. But as far as I know there is no safer containerization technology than a VM, and the only way to be more secure would be to have a physical computer per agent process? A KVM does not use the host kernel and user space, and provides hardware level isolation (the CPU hypervisor etc), that's the point. I think that once you are inside of vm, just using firejail is the better approach, since you have more direct control over the OS level controls that are being leveraged by various container solutions anyways. At any rate, that's what I did.

If you can't isolate a computer on your network, you probably can't isolate your network from the internet, so it's an irrelevant exercise at that point. And yes, probably you can't do any of those things and any frontier model could technically hack your network, but I don't think there's a better way to do it?


Many thanks for the insight. Actually you are right, kvm provides a different level of isolation. If there is a better way to do it... Not sure about that. It seems this is somehow unexplored territory right now, and the current hype about frontier-models capable of """everything""" is difficult to fight against. Entire VMs bring quite a lot overhead, though, I picture it as many agents being able to run in isolated environments in the very same dev laptop. My current approach has been to use podman so far. It supports libkrun, so I may give a try to microVMs in my current project.


The nice thing about running a microVM like a container is the interface is relatively easy, especially if you've used containers before.


There were not the solution for a while now, that is why Kata containers came to be in first place.


I love how countries calculate inflation now:

- Basic utilities, food, heating, energy, gas.. 50-100% increase in cost

- piano, railway carrage, something nobody uses - 0.34% increase

Thus inflation is only 5% - capiche?


It's been more than 100% btw


It feels like 200% is approaching, from an arbitrary start point of 2013.


Test attempt to remove comment


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

Search: