[-] trevor@lemmy.blahaj.zone 1 points 3 days ago

Where do you get the nightly builds?

[-] trevor@lemmy.blahaj.zone 9 points 3 days ago* (last edited 3 days 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 4 days ago

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

[-] trevor@lemmy.blahaj.zone 28 points 4 days ago

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 4 days ago* (last edited 4 days 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 64 points 2 weeks ago* (last edited 2 weeks ago)

Beto likely lost because he said the stupidest shit that a dem running in Texas could have said ("we will take your guns!") and it killed his campaign momentum. And even then, he only lost by 2-3%.

To my knowledge, Allred hasn't shot himself in the foot like that, so there is a real chance for him to win.

[-] trevor@lemmy.blahaj.zone 63 points 1 month ago

Nobody look at how much water (and exploitation) that animal agriculture requires 🫣

[-] trevor@lemmy.blahaj.zone 184 points 2 months ago

Lula is so fucking great. He's literally just backing up the courts that are applying the law fairly and as-written, which is more than I can say for most leaders.

[-] trevor@lemmy.blahaj.zone 97 points 4 months ago* (last edited 4 months ago)

Here's a neat tip:

You can go to most publisher or developer pages on Steam and "ignore" them to prevent Steam from ever showing you their slop again.

Example:

  1. Go to: https://store.steampowered.com/developer/Ubisoft
  2. Click the "Settings" cog.
  3. "Ignore this creator"

You can do the same with EA, 2K, etc. Don't even give these parasites microseconds of your time when they release their next slop title.

[-] trevor@lemmy.blahaj.zone 56 points 8 months ago

They've been too busy doing god's work to get around to something like making an icon 🫡

But seriously: I think the icon looks nice 🙂

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.

[-] trevor@lemmy.blahaj.zone 69 points 1 year ago

Still more efficient on resource utilization than animal agriculture. If you hate almond milk for that reason, you should want the dairy industry completely abolished.

view more: next ›

trevor

joined 1 year ago