trevor

joined 1 year ago
[–] trevor@lemmy.blahaj.zone 19 points 9 hours ago

It would require acting outside the confines of the law, because fascists aren't bound by the law either. And the more the US government is made obvious to be a joke, the more people might finally get the fucking clue that institutions are meaningless when they don't actually enforce the rules or provide meaningful support for what the working class actually needs, and they might eventually decide to do something about it.

That is, of course, hopeful thinking on my part, but I think it's the only correct answer to "what can we do when an overt fascist has power".

Additionally, on an interpersonal level, you need to find communities IRL if you don't have them, and be defiant together. Don't let these evil fucks normalize anymore bigotry or conspiracies than they already have. Even if social norms would dictate otherwise, call that shit out when it happens.

And don't preemptively give up or resign your position if you hold some sort of influential role in society. Don't make it easy for them. Every single bit of defiance makes it that much harder to impose the hell which they intend to inflict, which is in and of itself valuable.

[–] trevor@lemmy.blahaj.zone 27 points 3 days ago

The only time I ever have to even think about drivers is when I'm cursed with something from work that has to be written for, or done in Windows. Drivers on Linux are great if you don't need something like an obscure piece of hardware, and even then, your odds are probably better than on Windows. .

[–] trevor@lemmy.blahaj.zone 8 points 1 week ago* (last edited 1 week ago)

That's correct. If you use a custom domain for your aliases, you can take them with you when you leave.

I still use their domains though, for the last reason you mentioned. I'd be interested in knowing of there are any truly anonymous domains you can get (preferably without crypto nonsense).

[–] trevor@lemmy.blahaj.zone 1 points 1 week ago (1 children)

Where do you get the nightly builds?

[–] trevor@lemmy.blahaj.zone 9 points 1 week ago* (last edited 1 week ago)

The desktop app can be used as a bridge for biometrics in the browser extension, but other than that, it basically serves no unique purpose unless and until they add autofill for desktop applications.

[–] trevor@lemmy.blahaj.zone 13 points 1 week ago

Totally fair. I'm curious to see if anyone else may have reasons why it might be suboptimal.

[–] trevor@lemmy.blahaj.zone 29 points 1 week ago (2 children)

Is the a downside to repacking the deb package? They're basically just zip files of the same binary you'd run on most other Linux distros.

[–] trevor@lemmy.blahaj.zone 2 points 1 week ago* (last edited 1 week ago)

The problem isn't isn't solved by Biden or Harris being "strong" on the border, because it is the wrong problem.

The real problem is that democrats have accepted the right-wing framing on immigration, by laundering the far-right narrative that there is a border crisis and putting forward a far-right immigration bill that would give the president unilateral power to shut down the border.

Them capitulating to this narrative lends validity to patently racist propaganda, like we're seeing with Haitian migrants and the "Venezuelan gangs" story.

Aside from the fact that demonizing minority groups being a morally disgusting thing to do, it's really stupid political strategy for the democrats. Voters that are preoccupied with brown people coming into the country will vote overwhelmingly for Repugs every single time. Democrats will not be able to win over those ~~people~~ racists by trying to out-righting the Republicans.

[–] trevor@lemmy.blahaj.zone -4 points 2 weeks ago (1 children)

The problem isn't the democracy bit. It's the enabling racism and genocide, being spineless, and blind trust in institutions and civility bit that could cost them the election.

[–] trevor@lemmy.blahaj.zone 10 points 2 weeks ago

Best we can do is laundering the far-right narrative that there is a crisis at the border and advocating for the far-right border bill that Republicans want.

[–] trevor@lemmy.blahaj.zone 3 points 2 weeks ago

Yeah. It's scary to see how many freaks can be convinced otherwise are all over the place.

[–] trevor@lemmy.blahaj.zone 3 points 2 weeks ago (1 children)

Thanks for sharing the actual license text.

To me, this stinks of companies knowing that if they're actually required to reproduce the data, they'll get hit with copyright infringement or other IP-related litigation. Whereas if they can just be trusted to very honestly list their sources, they can omit the sources they weren't authorized to steal and reproduce content from, they can get away with it.

I think that, in practice, this means that the industry standard will be to lie and omit the incriminating data sources, and when someone tries to reproduce the model they won't actually be able to, but they also won't be able to easily prove one way or another if data was withheld.

Really, what should (but won't) happen, is that we should fix our broken IP laws and companies should be held to account for when they engage in behavior that would be prosecuted as piracy or Computer Fraud and Abuse if you or I did it.

AI is pretty much the epitome of companies getting to act with impunity in the eyes of the law and exerting that power over everyone else, and it's annoying to see it get a blessing from an "open source" organization.

1
submitted 9 months ago* (last edited 9 months ago) by trevor@lemmy.blahaj.zone to c/docker@programming.dev
 

I am looking for something that can take a Dockerfile, like the following as an input:


FROM --platform=linux/amd64 debian:latest
ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && apt install -y curl unzip libsecret-1-0 jq
COPY entrypoint.sh .
ENTRYPOINT [ "/entrypoint.sh" ]

And produce a a multi-stage Dockerfile where the last stage is built from scratch, with the dependencies for the script in the ENTRYPOINT (or CMD) copied over, like this:


FROM --platform=linux/amd64 debian:latest as builder
ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && apt install -y curl unzip libsecret-1-0 jq

FROM --platform=linux/amd64 scratch as app
SHELL ["/bin/bash"]

# the binaries executed in entrypoint.sh
COPY --from=builder /bin/bash /bin/bash
COPY --from=builder /usr/bin/curl /usr/bin/curl
COPY --from=builder /usr/bin/jq /usr/bin/jq
COPY --from=builder /usr/bin/sleep /usr/bin/sleep

# shared libraries of the binaries
COPY --from=builder /lib/x86_64-linux-gnu/libjq.so.1 /lib/x86_64-linux-gnu/libjq.so.1
COPY --from=builder /lib/x86_64-linux-gnu/libcurl.so.4 /lib/x86_64-linux-gnu/libcurl.so.4
COPY --from=builder /lib/x86_64-linux-gnu/libz.so.1 /lib/x86_64-linux-gnu/libz.so.1
# ...a bunch of other shared libs...

# entrypoint
COPY entrypoint.sh /entrypoint.sh

ENTRYPOINT [ "/entrypoint.sh" ]

I've had pretty decent success creating images like this manually (using ldd to find the dependencies) based on this blog. To my knowledge, there's nothing out there that automates producing an image built from scratch, specifically. If something like this doesn't exist, I'm willing to build it myself.

view more: next ›