trevor

joined 1 year ago
[–] trevor@lemmy.blahaj.zone 4 points 5 hours ago* (last edited 5 hours ago)

The closest that you can get is using something like Grayjay, where they have their own social media system, but your comments will only be interactable to other people using Grayjay.

[–] trevor@lemmy.blahaj.zone 1 points 22 hours ago

FYI for anyone that hasn't answered the survey yet: you can leave this question blank.

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

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 5 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 17 points 1 week ago (2 children)

It didn't help that democrats had a hard-right pivot by laundering the racist "border crisis" narrative and didn't propose any progressive alternative narratives to anything else.

[–] 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 2 weeks 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 2 weeks 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 2 weeks ago* (last edited 2 weeks 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.

10
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 ›