archomrade

joined 2 years ago
[–] archomrade@midwest.social -1 points 4 months ago (2 children)

Outside of how they relate to material conditions, it doesn't.

It can't help inform your gender identity any more than it can help you decide what toppings to put on your pizza. Attributing that kind of cultural expression to an ideology that has nothing to say about it isn't just dumb, it's fascistic.

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

Ideologies are a part of culture, but culture isn't a part of all ideologies, see?

"The culture of Marxism" is a misnomer - any distinct 'culture' that marxists might share is incidental to what marxism actually is. Suggesting that transgender expression is somehow a distinct feature of a culture 'of marxism' is exactly the thing 'cultural bolshevism' and 'cultural marxism' are pointing to.

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

Unless you're planning on articulating what it is you're actually objecting to I can't really help you make sense of those two statements.

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

Because 90% of Marx’s writing is about class relations.

Yes that's the point. Marx isn't concerned with cultural expression outside of how it's used inside class relations. Which is why it's inane to point to 'the culture of marxism', because outside of that narrow materialist context marxism doesn't concern itself with culture.

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

Thumbs are fingers but fingers aren't all thumbs.

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

The only point in which Marx comments on cultural practices is to point to how it is used to reinforce labor relations with capital.

If there's any definitive 'culture' to Marx it's more broadly counter-traditional than anything specific.

[–] archomrade@midwest.social 8 points 4 months ago

Yea, see, that's the problem - both of those terms are intended to describe a 'culture' of acceptance/normalization of lgbtq and non-traditional expression and associate it with the revolutionary language of Marx - the implication being that Marxists are intentionally pushing those norms and values as a part of their revolutionary action.

All of which is relevant to the actual content of the original post - either you simply missed the whole point of the meme or you've accepted the premise of the term itself.

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

Marxism is explicitly a materialist worldview - it has no real way of comparing cultural qualities

Unless you just mean 'the culture of marxists', but then you've pretty much taken up the term in its original meaning. Especially since the original post is about transgenter identity...

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

Yea, but the problem is that there is no different literal meaning from the dog whistle. What would 'cultural Marxism' even mean to a Marxist?

Nobody is questioning your anti-tankie bona-fides here. We're pointing to the irony of someone trying hard to otherize tankies from other leftists accidentally appropriating a term that's pretty much exclusively used to malign both for the acceptance of LGBTQ expression.

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

'Cultural marxism' being mistaken for ML terminology in a comment that's trying to scold a shitpost for being too friendly toward the wrong kind of leftist is just a little too on the nose.

Color me surprised that the kind of user who goes out of their way to broadcast their anti-tankie allegiances isn't familiar with the broadly-used reactionary pejorative used to describe liberals that has been around since at least the 1990's

[–] archomrade@midwest.social 3 points 4 months ago

“I’ve come to view home ownership and healthcare as destabilizing forces in my life,” said Bernie, a 45-year-old network engineer from Minneapolis. To finance owning his and his wife’s $300,000 home and saving for the future, the couple was foregoing medical and dental treatment of any kind and cutting back on expenses everywhere, he said, despite a pre-tax household income of more than $250,000.

I have no idea where in Minneapolis this person is but this is nothing like my own experience in the metro area.

My wife and I bought our home in 2021, for about the same price as he's describing and with an income far less than theirs, and we're expending less than 30% on our mortgage payment (including our insurance premiums and taxes). Maybe they bought theirs at the interest rate peak in 2020, whereas we bought ours when the interest rates bottomed out, but I can quite confidently say that our home is not the main burden on our finances.

What is killing us is raising food and healthcare costs, as well as our student loans. Our energy utility announced last year that they would be implementing surge pricing that could almost double our energy costs, and since the utility administers the state solar incentive program themselves, they quoted us a PV system cost almost twice what you can find on the open market (they use your average monthly energy bill to determine how much you can afford to pay for the system, which ought to be criminal). We're getting fucked up down and sideways, but our mortgage payment is probably the most stable expense we have.

There are a lot of reasons things are shit and financially precarious, but owning my home has been a rare bright spot in our otherwise gloomy financial picture. If we were still renting, not only would we be in the same strained situation as we are now, but we'd be constantly anxious about our rent skyrocketing, too.

Home ownership isn't all sunshine and rainbows, but the alternative of renting is often just as expensive - on top of being at the whims of landlords. They've been publishing articles for a decade now trying to convince people that home ownership is overrated and renting is the way of the future, and I really wish I could trust them to report on it transparently.

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

Huh, it works great on my android os Nvidia shield

 
 
 

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?

 

It's educate, AGITATE, organize

edit: putting this at the top so people understand the basis for this:

You may well ask: “Why direct action? Why sit ins, marches and so forth? Isn’t negotiation a better path?” You are quite right in calling for negotiation. Indeed, this is the very purpose of direct action. Nonviolent direct action seeks to create such a crisis and foster such a tension that a community which has constantly refused to negotiate is forced to confront the issue. It seeks so to dramatize the issue that it can no longer be ignored. My citing the creation of tension as part of the work of the nonviolent resister may sound rather shocking. But I must confess that I am not afraid of the word “tension.” I have earnestly opposed violent tension, but there is a type of constructive, nonviolent tension which is necessary for growth. Just as Socrates felt that it was necessary to create a tension in the mind so that individuals could rise from the bondage of myths and half truths to the unfettered realm of creative analysis and objective appraisal, so must we see the need for nonviolent gadflies to create the kind of tension in society that will help men rise from the dark depths of prejudice and racism to the majestic heights of understanding and brotherhood.

Letter from Birmingham, MLK

 
 
158
Political Subtext (midwest.social)
submitted 1 year ago* (last edited 1 year ago) by archomrade@midwest.social to c/politicalmemes@lemmy.world
 

edit: spelling

 
 
 
 
-42
submitted 1 year ago* (last edited 1 year ago) by archomrade@midwest.social to c/politicalmemes@lemmy.world
 

Edited to be slightly more fair to people complaining that they don't think genocide is good just fine

Here's a link to join a protest, courtesy of mozz

view more: ‹ prev next ›