archomrade

joined 2 years ago
[–] archomrade@midwest.social 4 points 3 weeks ago

Fuck that, Israel should be carved out of Texas, not Palestine.

It will be much more cost effective to deliver our lethal aid within our own borders rather than across the Atlantic.

[–] archomrade@midwest.social 3 points 4 months ago (1 children)

My parents and school administrators' attempts at blocking unsanctioned activities is what taught me computer literacy

There was nothing quite as satisfying as getting caught opening addictinggames on a web browser through a proxy when the teacher was convinced they had blocked it completely.

[–] archomrade@midwest.social 0 points 4 months ago (2 children)

I'm not accusing anyone of being pro-dems, I'm pointing out that this line of reporting is intentionally misdirecting anger at voters - who can literally only react to the policies and governance of the democrats as they are - instead of the democrats sabotaging themselves for thinking they could have their cake and eat it too.

Thinking that the democrats could participate in a highly-publicized genocide and not lose any voters is folly, but then turning around blaming the voters for the loss of votes is beyond hubris and well into delusion. Anyone with eyes could see this loss coming from a mile away and was screaming at the democrats to change course.

[–] archomrade@midwest.social 0 points 4 months ago (5 children)

People here still blaming this on minority voters are deafeningly silent on party leadership holding the coalition hostage over AIPAC funding

Stop directing your anger at people being robbed of basic representation instead of political actors who are gleefully accepting blood money to turn against their constituents and a blind eye to genocide

collapsed inline media

 

Over the weekend I set up some outdated wyze v3 cameras with hacked firmware to enable rtsp, and was able to load the stream into frigate to do some mouse-infestation detection. This worked great, and it was with hardware I already had laying around, but now i'm in need of some more coverage and I don't want extension cords hanging from my basement ceiling everywhere.

I thought there might be another ~$50 wifi battery camera somewhere out there that could be hacked or had native rtsp support, but my search is coming up short.... seems like either people settle for cloud-polling cheap ones or they splurge on some real quality mid-range ones. Anyone know of any cheap options?

For those curious, here's the git repo for the wyzecams i found. It's as easy as loading a micro-sd with the firmware, giving it an ssh key, and then turning it back on. Then you can ssh into it over the network and enable things like rtsp and a bunch of other features i don't know what to do with. It has proven to be handy, but it doesn't support the outdoor battery-powered models.

[–] archomrade@midwest.social 1 points 9 months ago

I'm honestly surprised peertube has lasted as long as it has as it is

[–] archomrade@midwest.social 0 points 11 months ago (1 children)

Anything but stop the racist dictator from completely destroying gaza and slaughtering all the Muslim children, more like.

Why are we so quick to assume Harris will not listen to pro-palestinian protestors? She's made some good decisions recently, maybe she'll keep the good times rolling.

[–] archomrade@midwest.social 1 points 11 months ago

If it's raining a lot, they're going to report on the rain a lot, too.

And by what metric is this article deceptive? Her speech was interrupted, and there are uncommitted voters concerned about her gaza policy. They even referenced the conversation they had with Harris before the rally:

Leaders of the Uncommitted National Movement, which supported voting "uncommitted" on Democratic primary ballots rather than voting for Biden, briefly spoke with Harris at the Detroit rally.

"Michigan voters want to support you, but we need a policy that will save lives in Gaza right now. I meet with community members every day in Michigan who are losing tens and hundreds of family members in Gaza. Right now, we need an arms embargo," Layla Elabed, a co-founder of Uncommitted, told Harris, according to the group.

Y'all are just to traumatized to handle even the slightest political tension. This isn't even necessarily a bad moment for Harris, it just alludes to some lingering disagreement between the base and leadership that has yet to be resolved, which is to be expected at this point.

Go touch some grass or something.

[–] archomrade@midwest.social 1 points 11 months ago (2 children)

Like getting angry with the weatherman for reporting on the rain.

[–] archomrade@midwest.social 0 points 11 months ago (1 children)

I used to think the same thing, but I did an effort post about this about a year ago (here's the link)

The article you linked to says something similar to my own understanding: basically, DRM circumvention for personal use is officially not allowed under DMCA and could absolutely be used against you in court, though the likelihood is low. The exceptions the author mentions are pretty nebulous, and the Library of Congress actually addresses the most common cases in their discussions and publication and affirms that they are not allowed.

I don't personally agree with their interpretation, but I think more people ought to know that it's officially not legal to circumvent DRM for personal use.

[–] archomrade@midwest.social 0 points 11 months ago (3 children)

I think everyone ought to strip their media of drm, but you should know that personal use does not qualify as fair use under US law

 

Edited for legibility

 

edit: a working solution is proposed by @Lifebandit666@feddit.uk below:

So you’re trying to get 2 instances of qbt behind the same Gluetun vpn container?

I don’t use Qbt but I certainly have done in the past. Am I correct in remembering that in the gui you can change the port?

If so, maybe what you could do is set up your stack with 1 instance in, go into the GUI and change the port on the service to 8000 or 8081 or whatever.

Map that port in your Gluetun config and leave the default port open for QBT, and add a second instance to the stack with a different name and addresses for the config files.

Restart the stack and have 2 instances.


Has anyone run into issues with docker port collisions when trying to run images behind a bridge network (i think I got those terms right?)?

I'm trying to run the arr stack behind a VPN container (gluetun for those familiar), and I would really like to duplicate a container image within the stack (e.g. a separate download client for different types of downloads). As soon as I set the network_mode to 'service' or 'container', i lose the ability to set the public/internal port of the service, which means any image that doesn't allow setting ports from an environment variable is stuck with whatever the default port is within the application.

Here's an example .yml:

services:
  gluetun:
    image: qmcgaw/gluetun:latest
    container_name: gluetun
    cap_add:
      - NET_ADMIN
    environment:
      - VPN_SERVICE_PROVIDER=mullvad
      - VPN_TYPE=[redacted]
      - WIREGUARD_PRIVATE_KEY=[redacted]
      - WIREGUARD_ADDRESSES=[redacted]
      - SERVER_COUNTRIES=[redacted]
    ports:
      - "8080:8080" #qbittorrent
      - "6881:6881"
      - "6881:6881/udp"
      - "9696:9696" # Prowlarr
      - "7878:7878" # Radar
      - "8686:8686" # Lidarr
      - "8989:8989" # Sonarr
    restart: always

  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: "qbittorrent"
    network_mode: "service:gluetun"
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=CST/CDT
      - WEBUI_PORT=8080
    volumes:
      - /docker/appdata/qbittorrent:/config
      - /media/nas_share/data:/data)

Declaring ports in the qbittorrent service raises an error saying you cannot set ports when using the service network mode. Linuxserver.io has a WEBUI_PORT environment variable, but using it without also setting the service ports breaks it (their documentation says this is due to CSRF issues and port mapping, but then why even include it as a variable?)

The only workaround i can think of is doing a local build of the image that needs duplication to allow ports to be configured from the e variables, OR run duplicate gluetun containers for each client which seems dumb and not at all worthwhile.

Has anyone dealt with this before?

[–] archomrade@midwest.social 1 points 1 year ago

I'll personally donate $100 to the DNC (i'm poor leave me alone) if Hilary goes to every campaign stop chanting 'lock him up'

 
 
view more: next ›