Late Stage Capitalism
A One-Stop-Shop for Evidence of our Social, Moral and Ideological Rot.
(It is also the official version of r/LateStageCapitalism/ on the Fediverse)
This community is for:
News, discussion, memes, and links criticizing capitalism and advancing viewpoints that challenge the narratives which act as legitimations for the status quo of modern class society. Posts need not be about capitalism specifically, whether late-stage or otherwise; we simply aim to cater to a socialist audience.
We do allow links to threads and comments on Lemmy/Reddit, as long as they are relevant to the content guidelines and follow the rules. Use NP links, or your post will be deleted.
Philosophy:
This community has its roots in broad-based anti-capitalist thought, with an emphasis on Marxist concepts and analysis and a commitment to antiracism and inclusive feminism.
When it comes to proposed alternatives to Capitalism, it is the general consensus of this community that class-divisions and alienated labour must be abolished; production must be collectively organized by the laborers themselves for the direct benefit of all. We call this socialism.
Find out more here: The Principles of Communism
Rules:
1. Lemmygrad-wide rules apply. Behavior such as brigading and harassment won't be permitted. Neither will posts that can be interpreted as explicit threats of/calls for violence.
2. Any post that makes a claim should have a RELIABLE source or explanation in the comments by OP. All claims, news articles, tweets and so forth that are an example of LSC should be substantiated with a reliable, factual and verifiable source. Any posts that egregiously break this rule will have their poster temporarily banned. If the Automoderator deletes the comment with sources that's fine, the moderators can still see and restore it.
3. No trolling. "I was just trolling" won't be accepted as a defense for breaking rules, and we will ban for intentionally disruptive behavior or attacks on our community, users, or philosophy.
4. No capitalist apologia, anti-socialism, or liberalism. This community is intended for a socialist audience, and while good faith questions are allowed, pushing your own counter-narrative here is not. We do not allow support here for capitalism or for the parties or ideologies that uphold it. We are not a liberal or (U.S.-/Social-) Democrat community; we are a socialist community.
5. No imperialism, conservatism, reactionism or zionism. This includes not just ideologies to the right of liberalism but also right-wing fixations such as national/ethnic/cultural chauvinism and military/police worship regardless of the underlying ideology. We take no side in the Russia/Ukraine conflict.
6. No "lesser evil" rhetoric. Lesser-evil rhetoric in relation to elections or current policies is prohibited. Dismissing voting third party because they are “useless” or because you are “throwing your vote away” also violates this rule. It also encompasses saying Trump is “worse” for Gaza, as that place is already completely destroyed. Trump is merely carrying out what the American ruling class started under Biden. Resorts being built and mass relocation were already happening under Biden and Kamala would’ve continued it.
7. No bigotry. No racism, sexism, homophobia, transphobia, ableism, or classism. The respect for readers who are subject to these forms of bigotry takes priority in this community over your right to speak freely.
8. Be nice to each other. Be respectful towards other socialists you disagree with, but also non-socialists who follow the rules and participate in good faith. Feel free to dunk on trolls, bigots and bootlickers to your heart’s content.
9. Bans are at moderator discretion. We reserve the right to eject users (as well as remove, lock, or otherwise moderate any content on the community) for reasons not listed if we consider it necessary to do so.
10. Don’t bother sending us personal promotion requests. We are not an advertising platform for your blog or YouTube channel.
11. Do not post content from Dan Price, any other CEO/business owner or ANY liberal politician/official.
This is regarding positive posts or posts agreeing with their statement. Negative posts are permitted but better suited to communities like /c/ShitReactionariesSay
Please note that Robert Reich or Bernie Sanders as liberals also fall under this rule.
12. Do not post NSFL content and flair NSFW posts accordingly. NSFL posts will be removed. Flair NSFW posts with the appropriate content warning flair, otherwise you will be banned temporarily.
13. This is not a debate community. Constructive questions and discussion are welcome, but our basic philosophy is non-negotiable and we aren’t interested in repeatedly having to explain or justify it. We also won’t debate about so-called “socialist” countries. There are plenty of political debate communities, so take your 'gotchas' there.
14. No AI generated content. The community does not allow for AI generated content, even if it’s pro-socialist/communist.
view the rest of the comments
For coding I like to "talk to" Deepseek or Gemini for advice on approaches because most of the time when I need their help its for a problem that I have never worked before. I don't like prompting them for whole solutions because it robs of a learning opportunity and the code is often over weirdly overengineered. Like recently I asked it for thoughts on a python script I was working on and they added so much noise over useless shit like parametrising hardcoded values.
With the GPT + deepseek combo it fixes that problem (in my layman's eyes); deepseek has a problem of overengineering especially if you don't scope it correctly but if it works on an initial script, it will mostly stay within it. It's also able to simplify GPT code.
For the life of me I have never been able to learn javascript, so when I need to code something for ProleWiki I just throw the problem at them. You can look into https://en.prolewiki.org/wiki/MediaWiki:Common.js our script file for what they came up with - the color scheme picker, the typeface picker, and the testimonials code. Color picker is a bit overengineered because we have a theme that should only be available for one month out of the year and it was simpler to hardcode it in.
I still have to think about the problem, if I don't scope it well enough they will come up with whatever they feel like. For the color schemes when I had the first custom theme working I told them to refactor the code so that we could add new themes in an array, and they came up with everything. So now I can add unlimited themes by just adding a line in the array.
Potential simplifications that they don't think about (and hence why it's good to know how the generated code works) is that there's no need for className and LabelId in the array, it could generate that from the value. But eh, it works.
edit - using it as a "copilot" is also a good use, though I find that sometimes it just utterly fails. It's still an RNG machine at heart. But if you get it to work, it can really help unlock your other skills and not get stuck on one part of the process.