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

Luckily those things never happen in the private sector. Theranos?


what does being the private sector have to do with anything? We're talking about use of taxpayer money.


I'd like to make the point that private and public are coupled, in a way that if you dismantle everything public/tax funded, there is effectively nothing left except private by definition (with all it's upsides and downsides where the latter will be amplified in the absence of public oversight bodies funded by public money based on public law).

Now I (as a non US citizen, but one of a country that has it's fair share of needless bureaucracy) wholeheartedly agree that there is waste, a lack of oversight/transparency and probably a need for more say of the common taxpayer on how their money is spent.

But as someone who learnt the meaning of the Terms "Gleichschaltung" and "Ermächtigungsgesetz" in school, I wholeheartedly disagree with the current measures and how they unfold right in front of our eyes.


Trump won his first term in 2016 because Americans were fed up with the Bush+Obama status quo of endless wars and wast

Does this include threatening Greenland with military action or does it not count as war if there is little resistance to be expected?


Or now Gaza. I guess they don’t count trade wars. Dalewyn could have his family deported and still think Trump is doing the right thing. I gave up responding.


As Trump said when an interviewer asked him about Ukraine: "I want people to stop dying." I think most Americans share that sentiment with regards to war, so no, trade wars don't count.

It's objective fact that Trump did not start a single war during his first term (he only inherited wars from his predecessors), his successor Biden immediately went back to starting wars. Americans will not tolerate declarations of war or otherwise military actions on Denmark/Greenland or Panama, we voted for him in large part because he is the first President in a long time who hates wars.

No. More. Wars. This is non-negotiable. Every single warmonger and the military industrial complex can go fuck themselves.

However, if we can get Greenland and the Panama Canal amicably through business/diplomacy then, as an American, why not?

>Dalewyn could have his family deported

If we're here illegally then fuck yeah Trump is doing the right thing; he's just enforcing the law as written. I thought we were all about rule of law?


> However, if we can get Greenland and the Panama Canal amicably through business/diplomacy then, as an American, why not?

was there anything amicable about his recent claims about greenland ?

How do you reconcile having a leader suggesting curing covid with bleach to know how to make government efficients ? Musk couldn't turn twitter back as far as we know either..


You seem to be very confused, among other things, about who started the Ukraine war and why. Gonna guess you probably think Obama started the Iraq war and probably the Civil War and WWII as well.


He doesn't care, he wants Ukraine to surrender so they can die quietly.


> It's objective fact that Trump did not start a single war during his first term (he only inherited wars from his predecessors), his successor Biden immediately went back to starting wars.

What war?

Seriously, what war?

I've tried searching for what wars, and found that the only ones started by the US this century were by Bush Jr.; neither Obama nor Biden went to war.

Do you mean the war Russia started by invading Ukraine? The ongoing conflict between Israel and various but changing subsets of their neighbours? Because these were not started by the US, they are outside the control of the US.

> No. More. Wars. This is non-negotiable. Every single warmonger and the military industrial complex can go fuck themselves.

> However, if we can get Greenland and the Panama Canal amicably through business/diplomacy then, as an American, why not?

He refused, when asked, to rule out using military force.


FYI, https://en.wikipedia.org/wiki/List_of_wars_involving_the_Uni... lists the following since Obama's inauguration:

Operation Ocean Shield (2009–2016), International intervention in Libya (2011), Operation Observant Compass (2011–2017), US military intervention in Niger (2013–2024), US-led intervention in Iraq (2014–2021), US intervention in the Syrian civil war (2014–present), US intervention in Libya (2015–2019), Operation Prosperity Guardian (2023–present), Israel–Hamas war (2024–present).


> Israel–Hamas war (2024–present).

As I said, not started by the US.

This seems to apply in general to that list, e.g. Prosperity Guardian is not even a war, and crucially it is a response to Houthi-led attacks on shipping in the Red Sea so the US also didn't start it. (Which can be described as an escalation that was itself caused by US economic support of Israel, but that kind of geopolitical implications are a never-ending rabbit hole even with 50 years of hindsight that I don't get to benefit from).

Their (and Canada's, Germany's) reason for picking sides in the Syrian civil war is completely opaque from the perspective of normal people like me (if I count as 'normal'…), but again, they didn't start it: civil war.

etc.


You said

> neither Obama nor Biden went to war.

I believe this is false.


> if we can get Greenland and the Panama Canal amicably through business/diplomacy then

This is a joke right? I'm not sure 'amicably' means holding a gun to someone's head to get them to do what you want them to do. Trump stated he would use force if necessary.

> No. More. Wars.

Biden also didn't start any wars. Trump is talking about annexing Gaza, and he continues to talk about war with Iran. Trumps aggression is how wars start because it puts everyone on edge.

When Trump starts a war, which seems inevitable unless his advisors get some control, will you then admit it was dumb to vote for Trump? I'm sure you'll explain it away somehow as #winning.

> I thought we were all about rule of law?

I just assume you're trolling at this point. Trump just pardoned people who beat up law enforcement. He also talks about deporting people he simply doesn't like. He's farther from the rule of law than any POTUS in history.


> his successor Biden immediately went back to starting wars

Congratulations, seems like you have fully bought into MAGA propaganda.


> It's objective fact that Trump did not start a single war during his first term

No, its not. He certainly engaged in an armed conflict with Iran which was not an active conflict before his term.

> his successor Biden immediately went back to starting wars.

No, he didn't.

> No. More. Wars.

Since election, Trump has threatened war in or with Mexico, Denmark, and Panama, as well as the US actively completing the genocide Israel has started in Gaza. “No. More. Wars." Is very clearly not his priority.


- https://github.com/olimorris/codecompanion.nvim

- https://github.com/yetone/avante.nvim

Did not have the time to test them yet and there are probably more.


Can I also get the security/isolation benefits that a duly configured docker/podman can provide (container can only act on mounted volume, non-root user, other seccomp settings?).

I feel better doing my "npm install"s in such an environment (of course it's still not a VM – but that's another topic).

When I read about nix, reproducibility is a goal, but security/isolation is a non-goal.


> When I read about nix, reproducibility is a goal, but [...] isolation is a non-goal.

Generally, yes.

But you can use or put together something like this to run Nix inside a devcontainer instead of locally: https://github.com/xtruder/nix-devcontainer

So you can use them in conjunction (or alternation, if for some projects you're okay running without a container) without having to specify your development environments twice.

> I feel better doing my "npm install"s in such an environment (of course it's still not a VM – but that's another topic).

There are basically two kinds of integration you can do for a project with Nix, which I'll call deep and shallow. In shallow integration, you just have Nix provide the toolchain and then you build the project (manually, with a script, with a Makefile, whatever). This is pretty common and pretty easy, and gives you no protection from malicious NPM build scripts.

For deep integration, you can actually have Nix build your whole project. This has some downsides, like that it can't really handle incremental builds. It also imposes restrictions, like no network access by anything but Nix at build time, all packages are built by special build users with no homedirs and no perms to access anything, etc. When you do that kind of build/install, you do get some protection from crypto miners lurking in the NPM registry or PyPI or whatever.


You can generate fully reproducible OCI/docker containers with devenv, so yes I think.

https://devenv.sh/containers/


https://github.com/zeroxoneafour/polonium

This certainly looks interesting. Cannot comment on it's current state, as I still use bismuth on x11


And then there is nano bionic, explosives detecting spinach.

https://news.mit.edu/2016/nanobionic-spinach-plants-detect-e...


There also is obsidian.nvim [1] if you want to mix and match obsidian and neovim for using/editing obsidian vaults.

1: https://github.com/epwalsh/obsidian.nvim


I use this combination for months and can recommend it.


I also used the very same script until I stumbled upon this on hn [0].

    #!/usr/bin/env bash
    langs=(eng ara fas chi_sim chi_tra deu ell fin heb hun jpn kor nld rus tur)
    lang=$(printf '%s\n' "${langs[@]}" | dmenu "$@")
    maim -us | tesseract --dpi 145 -l eng+${lang} - - | xsel -bi

[0]: https://news.ycombinator.com/item?id=33704483#33705272


Ah just saw rjzzleep posted an updated version here. Happy to steal this one again :)


Looks nice


I like how easy zellij was to set up and it's capabilities to define new layouts as well as the default way of displaying contextual shortcuts that one can disable after one memorized the most important shortcuts.

What I would still like to see is support for kitty image protocol [1] so I could use e.g. image.nvim [2] which currently works in tmux (which I migrated away from in favor of zellij).

[1] https://github.com/zellij-org/zellij/issues/2814

[2] https://github.com/3rd/image.nvim


Love that someone signed up for this comment :). Seeing them performing the polymer album at a small venue (where some instrumental parts where performed live) right after Nils Frahm is a fond memory of mine, and I agree that there is not really much out there that compares to their unique sound.

Next to their usual stuff/albums there is a plethora of remixes out there. Can recommend this fan-driven youtube channel for an overview:

https://www.youtube.com/@ThePlaided


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

Search: