81
submitted 2 months ago* (last edited 2 months ago) by thelastaxolotl@hexbear.net to c/chapotraphouse@hexbear.net

The Freedom Road Socialist Organization (FRSO) is a communist political party in the United States. FRSO formed in 1985 as a merger of several Maoist-oriented New Communist movement organizations.

In 1985, the Proletarian Unity League and the Revolutionary Workers Headquarters merged to create FRSO. In 1986, FRSO fused with the Organization for Revolutionary Unity. In 1988, FRSO absorbed the Amílcar Cabral-Paul Robeson Collective.

FRSO's component groups believed that ultraleftism was the US New Communist movement's main error. Merging under the FRSO banner, these groups hoped to consolidate the movement's remnants in a single organization and move beyond the sectarianism that marked the previous decades.

1999 split

In response to the 1989 Tiananmen Square protests and the dissolution of the Soviet Union, FRSO began to develop two distinct positions on socialist countries. The "Left Refoundation" group, aligned with democratic socialism, argued that these events resulted from a deep crisis of Marxism. The "Fight Back!" group, aligned with Marxism-Leninism, argued that these events resulted from revisionism rather than failures within Marxism. These divisions grew during the 1990s. In 1998, the Left Refoundation group wrote an internal document, "Theses on Left Refoundation", and requested an organization-wide discussion.

Both factions claimed the name "Freedom Road Socialist Organization". In 2006, the Left Refoundation group renamed itself to "FRSO/OSCL", combining the English and Spanish acronym. In 2019, the Left Refoundation group renamed itself to Liberation Road.

Publications

FRSO's main publication is the website and monthly paper Fight Back! News (FB!N) and its Spanish section Lucha y Resiste.

Congress

The 9th Congress of FRSO, held in spring 2022, came at a critical juncture in the development of the people’s struggle and the accelerating decline of monopoly capitalism in the U.S. As the call to the congress states, in the recent period “we have seen a level of struggle that is unprecedented since the 1960s. The great rebellion following the murder of George Floyd, which was both broad and militant, signals the shape of things to come. It can be said the burning police stations helped illuminate the road to freedom. The fight against police crimes led to a resurgence of the African American national movement.”

Megathreads and spaces to hang out:

reminders:

  • 💚 You nerds can join specific comms to see posts about all sorts of topics
  • 💙 Hexbear’s algorithm prioritizes comments over upbears
  • 💜 Sorting by new you nerd
  • 🐶 Join the unofficial Hexbear-adjacent Mastodon instance toots.matapacos.dog

Links To Resources (Aid and Theory):

Aid:

Theory:

Financial Support to the Bearsite

(page 2) 50 comments
sorted by: hot top controversial new old
[-] oscardejarjayes@hexbear.net 16 points 2 months ago

Man, Hexbears search function sucks. I can never find what I'm looking for, and often it shows my stuff outside of the bounds I specify. Time in particular, it just shows me from whenever despite time limits on both sides. I've tested it, even have a really big time window, like 3 years or something, and with words that I copied from the message, and my first result will be outside of the time window, have only some but not all of the words, and not be the right thing.

load more comments (1 replies)
[-] DragonBallZinn@hexbear.net 15 points 2 months ago

Y’all ever find it funny that chuds love angrily railing against “condescending elites with their ‘experts’ and ‘fact-checking’.” but the second you start discussing anything in the realm of economics, they all get smug-ass grins and start their long condescending lecture on how they’re smarter than you because of their vicarious expertise?

Chuds “fucking love economics” the same way they accuse the left they “fucking love science”.

load more comments (1 replies)
[-] AntiOutsideAktion@hexbear.net 15 points 2 months ago

So bad times. My landlord is kicking me out in 60 days and I have to figure out how to swing a safe place for me and my cats again.

I might start posting craigslist spare bedroom ads just for ragebait. All I want to do is contact these people and verbally shame them.

HEY! ANYBODY WANT TO LIVE IN A TRAILER IN SOME GUY'S BACK YARD FOR A FUCKING GRAND A MONTH??

load more comments (4 replies)
[-] DragonBallZinn@hexbear.net 15 points 2 months ago* (last edited 2 months ago)

Have a bit of a belated new years resolution: be less misanthropic. It’s easy to assume people are just jackasses by nature, so of course fascism will win. But I really want to challenge that paradigm. Thankfully there are three things not even I can deny are weak points for chuds:

  1. Israel. Supporting it is also being seen more and more as cringe as being pro-Palestine is undeniably counter-culture

  2. Incels. Even back in the day r/cringeanarchy mocked them.

  3. Economics (as always). Here chuds go from trolls to the self-appointed “experts” and love giving academic dunks on why it is good the rich get everything and how us dumb poor rubes will never understand their genius! If you’re explaining, you’re losing.

[-] Carl@hexbear.net 15 points 2 months ago* (last edited 2 months ago)

Today's discussion of Lemmy and piefed made me want to learn the basics of Rust programming-communism I guess carcinization also applies to lefty software devs

some rusty code, results of about three or four hours with https://doc.rust-lang.org/, not much but I'm self-teaching here

fn main() {
    counttoten();
    countdown();
    timestables();
    find_target(create_grid(5, 5), 50);
    find_target(create_grid(10, 10), 50);
}

fn counttoten() {
    let mut x: i32 = 1;
    loop {
        println!("Counting to ten!  {x}");
        x += 1;
        if x > 10 {
            break
        }
    }
}

fn countdown() {
    let mut x: i32 = 10;
    while x > 0 {
        println!("Counting Down!  {x}");
        x -= 1;
    }
}

fn timestables() {
    for x in 1..=3 {
        for y in 1..=3 {
            let z: i32 = x * y;
            println!("{x} times {y} is {z}")
        }
    }
}

fn find_target(grid: Vec<Vec<i32>>, target: i32) -> bool {
    let mut found = false;
    'search: for row in grid {
        for value in row {
            if value == target {
                println!("Found {target}!");
                found = true;
                break 'search;                
            }
        }
    }
        
    if found {
        true
    } else {
        println!("Did not find {target}.");
        false
    }
}

fn create_grid(rows: usize, cols: usize) -> Vec<Vec<i32>> {
    let mut grid = Vec::new();
    let mut gridcounter = 1;

    for _ in 0..rows {
        let mut row = Vec::new();
        for _ in 0..cols {
            row.push(gridcounter);
            gridcounter += 1;
        }
        grid.push(row);
    }

    grid
}

load more comments (4 replies)
[-] ClathrateG@hexbear.net 14 points 2 months ago
load more comments (3 replies)
[-] vovchik_ilich@hexbear.net 14 points 2 months ago

I fucking hate Europe. I just had a great job interview which I nailed for an electronics-related company, but of fucking course there are military projects. The conditions are good, but I don't think I can accept a job related to the military field seeing what Europe has been doing in Palestine

load more comments (3 replies)
[-] neroiscariot@hexbear.net 14 points 2 months ago

Vent post: last week, a big ass truck plowed into my car in the snow. The truck was fine, but totally fucked up the side of my car. The dude was nice enough, admitted fault, and we exchanged info (I opted to NOT call the police, because, fuck that).

Now his insurance has admitted fault, got me a rental, yadda yadda but they claim that the cost of the damage (13k) is more than the value of the car. Similar vehicles to mine are selling for $20,000...but they are trying to give me a check for <$8,000. I told them I am in a chapter 13 bankruptcy, and giving me a check would be the same as giving it to the court...I told them this is the ONE thing I own, I jsut want it fixed, and they just keep brushing me off like I am nothing. This is so infuriating. My friends are telling me to get a personal injury lawyer and try to get more money. I don't want more money, I just want my fucking car back. Now State Farm is offering $4k and I can have the car as is with a salvage title. This country fucking sucks so god damn much.

load more comments (2 replies)
[-] whatdoiputhere12@hexbear.net 14 points 2 months ago

feel like shit I want summer time back

load more comments (1 replies)
[-] LetterLiker@hexbear.net 14 points 2 months ago* (last edited 2 months ago)

cw: SA/violence/shit tier boss

I love that I to have to drag my boss kicking and screaming to remove the local notorious violent sexual predator from the premises.

Your bartender is literally hiding from this prick and your first instinct is to entertain him for two hours and give him a discount (and then lied to me about it!). Then the removed comes in today, after I talked sense into management into barring him, and the bossman apologizes (to the removed!) and takes him outside and then possibly points out the bartender who he makes uncomfortable. That is according to the bartender, there may be another excuse but I'm finished giving this moron grace. I'm going to lose my fucking mind on this asshole.

This is a fucking week after I had a conversation with him about not telling regulars your servers' schedules. What the fuck? That's day one shit. Jesus.

And he's serving up asscrack 3/5 days a work week.

e: ooo sorry I didn't realize that word was banned (I saw it elsewhere when I was browsing. maybe it was a different instance? I don't really fully understand the fediverse.) although it makes sense. sorry mods.

load more comments (2 replies)
[-] Blockocheese@hexbear.net 14 points 2 months ago

I either have shittier insurance than I thought or I unintentionally picked a really expensive form of birth control because turns out I was prescribed the generic and its still almost $60 a month

Thankfully I have a Costco membership and can get it for like $25 a month through them

Plus it justifies my costco membership by saving me like $300 a year

I hate this country

[-] GalaxyBrain@hexbear.net 14 points 2 months ago

Did some gud lighting and poses for other gunpla, knowing how to tske pictures is paying off

load more comments (1 replies)
[-] Arahnya@hexbear.net 14 points 2 months ago

ive shoveled six parking spots, because instead of burying people for taking a spot I cleared, im just gonna make another. Now everyone has more spots!

load more comments (1 replies)
[-] KnilAdlez@hexbear.net 14 points 2 months ago* (last edited 2 months ago)

I need, like, socialization training. I've no friends, only my partner, and my social anxiety has been allowed to get out of control. Covid + autoimmune disease really fucked me socially, and I don't know what to do to fix it.

load more comments (2 replies)
[-] HarryLime@hexbear.net 14 points 2 months ago
[-] segfault11@hexbear.net 13 points 2 months ago

(pretend you’re seeing this post a few days ago when ye put that apology in the newspaper) he’s trying to take the yeezy way out

[-] DragonBallZinn@hexbear.net 13 points 2 months ago* (last edited 2 months ago)

How I feel waking up that the richest person in human history is literally the “quirk chungus” meme but a fascist.

They all act like badass war gods, but Muskrat’s personality is all the negative stereotypes of millennials concentrated in a gen X manchild. Bro is literally the “how do you do, fellow kids?” meme.

[-] segfault11@hexbear.net 13 points 2 months ago

i'm gonna become an asian version of "ethnic" white americans who are always like "my ancestors are from ireland and sweden and italy and" but instead it's flaunting that i'm 1/8 chinese

load more comments (3 replies)
[-] Blockocheese@hexbear.net 13 points 2 months ago

Capital is beating my ass i wont lie

Still on chapter 1 lol and hoping I understood what hes saying about the abstraction of use value

I think hes saying if you remove the 2 factors of the commodity then their only trait left is that they're products of labor. But if you somehow seperate a commodity from its use value youre also separating it from its raw materials and the labor used to transform it into said commodity.

This separation for use value and thus labor would result in the distinctions between different types of labor to cease existing, reducing all types of labor to just a general, abstract human labor

blob-no-thoughts

load more comments (9 replies)
[-] LumpenFella@hexbear.net 13 points 2 months ago
[-] Dort_Owl@hexbear.net 13 points 2 months ago

New mega!

How is everyone today?

load more comments (5 replies)
[-] segfault11@hexbear.net 13 points 2 months ago

I got my license to use the internet

load more comments (1 replies)
[-] infuziSporg@hexbear.net 13 points 2 months ago

Really wish the energy economy would hurry up and collapse already, ideally in the next 10-15 years.

I hunger for $2/kWh electricity prices and $15/gal gasoline prices, which will unravel the Western lifestyle, make daily driving prohibitive, and force people to think conservatively about everything they plug into an outlet and every switch they flip on.

A world without cars or AI, brought to us by natural economic consequences. All it takes is for us to run past the barriers, peak oil and peak 'every mineral resource we use to bypass oil'.

I wish unlimited Special Economic Period on North America and Europe.

[-] KuroXppi@hexbear.net 13 points 2 months ago

I enjoyed camping. Short but fun. Sumburbt. Don't want to work tomorrow. Also newpipe not working on phone anymore so maybe who knows try to kick the watching YouTube over meals habit

load more comments (4 replies)
[-] GalaxyBrain@hexbear.net 13 points 2 months ago
load more comments (1 replies)
[-] Blockocheese@hexbear.net 13 points 2 months ago

107 pages into my edition of Capital and I'm finally starting chapter 1 squidward-nervous

load more comments (4 replies)
[-] Thordros@hexbear.net 13 points 2 months ago

I had a really great bowl of lentil soup for dinner from a local hole in the wall restaurant. It tasted kinda beefy, even though they definitely didn't use any beef stock in it—the chef said they added marmite to it??

Set me back $5. I am very full and very happy.

load more comments (4 replies)
[-] Wakmrow@hexbear.net 13 points 2 months ago

Fucking livid organizing with children anarchists. Fuck them.

load more comments (3 replies)
[-] wombat@hexbear.net 13 points 2 months ago

it is january 31 and stalin saved the world from fascism

[-] DragonBallZinn@hexbear.net 13 points 2 months ago* (last edited 2 months ago)

frothingfash: “TaKe ThE rEdPiLl!”

  • Ironically a rallying cry for the privileged and well-pedigreed to reaffirm their elite status, to demand MORE comfort.
  • The ‘truth’ they claim seems to not cause them any discomfort at all. In fact it’s very comforting for them
  • Literally has been corrupted to just mean self-servingly go along with whatever you want to be true.

must-go: “Put on the shades!”

  • Get to see the doublespeak elites are really trying to say
  • They Live addresses the fact your enemies have the best PR money can buy
  • Creator explicitly told chuds claiming antisemitic conclusions to fuck off. It’s fair game.
[-] StillNoLeftLeft@hexbear.net 13 points 2 months ago

God damn I had a dream last night of an Elon Musk themed childrens park that was just so shit that nobody liked it.

There was this activity where you had to throw a ball through a hole, but instead of being able to just throw the ball yourself the idea was to use this shitty human shaped wooden dummy and make it throw the ball using a lever. Of course it never worked.

The best part was this pond in the middle of the park that had small boats floating in it with fake elon musk look a like rubber dummies sitting in them. The funniest bit was when I properly saw one of the dummies up close and it looked like a banana shaped person, like the pilot in Airplane. Which for whatever reason made me think in the dream that musk has no neck.

load more comments (1 replies)
[-] tocopherol@hexbear.net 13 points 2 months ago* (last edited 2 months ago)

Yesterday I had a sharp pain in my foot, like a tendon was tearing slightly or something but it wasn't that bad, so I continued to stand for a few hours and dance with high energy, and now my foot is fucked and I can't walk. This is a PSA, listen to your body if you want to prevent repetitive stress injuries.

Honestly though a really attractive person took my hand outta no where and danced with me for a bit so I don't really regret it big-cool

load more comments (2 replies)
[-] Rey_McSriff@hexbear.net 13 points 2 months ago

Logging in to make my once-weekly, court-mandated comment on chapo dot chat

load more comments (3 replies)
[-] AntiOutsideAktion@hexbear.net 13 points 2 months ago

Had a fun day of shouting insults directly into my manchild landlord's face the other day. During which, he insisted that he WASN'T a worthless nepo baby parasite because he bought the house himself with his own big boy money back in 2009 when the market was at its bottom.

In 2009 he was probably fresh out of high school. I looked up the history of the property and it did indeed sell that year for about 200k.

This is the self mythology of these kinds of people.

load more comments (4 replies)
[-] RION@hexbear.net 12 points 2 months ago

Dad gave me some older speakers he had that sound great! But they don't have Bluetooth oddly, and I've been trying to move more towards locally stored music... this might be the thing to finally get me to start a home server

load more comments (3 replies)
[-] Dort_Owl@hexbear.net 12 points 2 months ago* (last edited 2 months ago)

Bears make such lazy sounds for such a powerful animal. Like tigers are all "FROWWWL!" meanwhile bears be like "Ugggghagh"

load more comments (1 replies)
[-] Carl@hexbear.net 12 points 2 months ago* (last edited 2 months ago)

niko-wonderous Technology Connections starts ranting

niko-concern "That's why you need to vote for Democrats!"

load more comments (2 replies)
[-] Grownbravy@hexbear.net 12 points 2 months ago

it's almost annoying how more lib south american leftist are than american leftists, yelling at us to buy guns like i haven't just lived a week with no heating.

actually no material analysis with them

load more comments
view more: ‹ prev next ›
this post was submitted on 30 Jan 2026
81 points (98.8% liked)

Chapotraphouse

14344 readers
374 users here now

Banned? DM Wmill to appeal.

No anti-nautilism posts. See: Eco-fascism Primer

Slop posts go in c/slop. Don't post low-hanging fruit here.

founded 5 years ago
MODERATORS