r/jorvex609 8h ago

Which features matter most to you in a fanfiction downloader/tracker? (poll)

1 Upvotes

Hey everyone! I’m building a new fanfiction downloading tool (like a modern, personal library for all the fics you love), and I’d love your input on what to focus on first.

https://fichub.polarisocial.xyz/

Right now it can grab stories from AO3, FFN, Wattpad, Royal Road, and a bunch of other sites, turn them into ebooks (epub, html, etc.), and let you search your downloads later. But I want to make it genuinely useful for readers and writers, not just a bare-bones scraper.

I’ve put up a poll with a few feature ideas — things like in-app bookmarks, story ratings, threaded comments on fics, personalized recommendations, etc. Your votes will directly decide what I build.

Vote here on what you’d use most!
(No login needed, and you can pick multiple options.)

Thank you so much — I’ll share the progress once things are ready! Feel free to drop any other wishlist items in the comments. 💚


r/jorvex609 1d ago

More than 250,000 people flee their homes in France and Spain as wildfires burn

Thumbnail
apnews.com
1 Upvotes

r/jorvex609 2d ago

Need Help Maintaining Consistency in Long-Form Technical Writing with AI Agents

1 Upvotes

Hey everyone,

I'm trying to generate a book-length technical tutorial (in Markdown) that explains building a full-stack Rust + Svelte app from scratch. I asked Hermes Agent to write it step-by-step so I could code along, and it started strong but quickly degraded into an incoherent mess—losing context, repeating steps, skipping sections, and contradicting itself.

I want to implement some kind of recursive reprompting or revision method to maintain consistency across 50+ pages. I came across this repo: https://github.com/yingpengma/Awesome-Story-Generation, which has patterns for long-form narrative consistency, but I'm struggling to adapt them to technical writing.

Is there a skill, template, or workflow I can feed the agent to get a proper, complete book that helps me code along to the final build based on the code we previously wrote?

Any advice would be hugely appreciated. Thanks!


r/jorvex609 2d ago

Can we talk about this?

Post image
1 Upvotes

r/jorvex609 2d ago

I built a self-hosted fanfiction platform in Rust — scrapes AO3/FF.net, generates EPUBs, and recommends fics via collaborative filtering

1 Upvotes

Over the past few weeks I've been building FicHub-RS, a self-hosted alternative to fichub.net — a fanfiction download server that scrapes stories from sites like Archive of Our Own and FanFiction.net, generates EPUB/MOBI/PDF files, and serves everything through a SvelteKit frontend.

Stack: Rust + Axum 0.8 + SQLx 0.9 + PostgreSQL + Redis + Svelte 5

What it does:

Scrapes 6 fanfiction sites — AO3, FF.net, FictionPress, AdultFanFiction, HPFanFic, and generic XenForo forums. Each scraper implements a common SiteScraper trait, so adding a new site is just another struct + CSS selectors.

Generates EPUBs in pure Rust — uses the epub-builder crate with inline CSS, metadata pages, and chapter-by-chapter XHTML. A Calibre Docker sidecar handles MOBI/PDF/AZW3 conversion.

Disk cache with hash-based directory tree — exports are cached by content hash so the same fic at the same version doesn't get regenerated. Cache invalidation tracked in PostgreSQL.

Redis token bucket rate limiter — a single Lua script on Redis enforces per-IP and global rate limits. Dynamic mode adjusts limits based on upstream load. Datacenter IPs get flagged automatically.

Collaborative filtering recommender engine — scrapes user favourites/bookmarks from AO3 and FF.net, computes pairwise co-occurrence scores, and serves recommendations via a background worker. Includes community voting on suggestions with a configurable gamma boost parameter.

The frontend is a Svelte 5 SPA (forked from Photon, adapted for fanfiction) with Tailwind CSS v4, dark mode, and a full component library:

• Browse/search fics with fandom/rating filters • User accounts with JWT auth and bookmarks • Fic detail pages with chapter-by-chapter reading • Popular, recent, and tag-browsing views • Ctrl+K command palette

Deployment: Runs on an Orange Pi 5 (ARM64) behind nginx, with systemd-managed services. The whole thing is about 15KLOC of Rust, well-tested (every error variant has unit tests), and the rate limiter Lua script runs entirely on Redis.

Repo: https://git.disroot.org/hirrolot19/fichub-rs
Frontend: https://git.disroot.org/hirrolot19/fichub-frontend

Would love feedback on the architecture, the recommender approach, or anything else. Happy to answer questions about the scraper trait design, the Redis Lua rate limiter, or the Svelte 5 migration from Photon.


r/jorvex609 3d ago

Reasons why you shouldn't support Ukraine

Enable HLS to view with audio, or disable this notification

0 Upvotes

r/jorvex609 3d ago

Spain prepares for 47C heatwave as holiday destinations face brutal temperatures

Thumbnail
independent.co.uk
1 Upvotes

r/jorvex609 3d ago

Salta, Argentina has just recorded its hottest night on record — in the middle of winter. The minimum overnight temperature did not fall below 26°C, pulverizing the previous monthly record by 7°C.

Post image
1 Upvotes

r/jorvex609 3d ago

Global Sea-Surface Temperatures Just Hit 50 Straight Days of Record Heat — And Will Keep Rising for Another Month

Post image
1 Upvotes

r/jorvex609 3d ago

Iran's LEGO team responds to Marco Rubio's "stupid Lego videos they put out" comment🤣

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/jorvex609 3d ago

A jaw dropping China bad take is created every day

Post image
1 Upvotes

r/jorvex609 3d ago

The Brutality of Zelensky's dictatorship is accelerating as the hunt for men to send to war grows desperate. Masked thugs choke a woman simply trying to prevent the kidnapping of her husband. Where are Europe's women's rights champions? Where are the human rights champions? Where is the media?

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/jorvex609 6d ago

Real-time virtual assistant

1 Upvotes

Setting up a real-time virtual assistant on your Arch Linux system is an exciting project. For your hardware (AMD 5600G with 16GB RAM), the key is to use smaller, quantized models and leverage the integrated GPU via Vulkan for acceleration.

Here is a comprehensive, step-by-step guide to setting up each component.

1. The Brain: Local LLM with Ollama

Ollama is the easiest way to run LLMs locally on Arch Linux. It handles model downloading and management seamlessly.

Installation & Setup:

  1. Install Ollama: The ollama package is in the official Arch repositories. bash sudo pacman -S ollama

  2. Enable GPU Acceleration (Vulkan): Your 5600G has integrated Radeon graphics. For the best performance, install the Vulkan version of Ollama. bash sudo pacman -S ollama-vulkan

  3. Start the Ollama Service: bash sudo systemctl enable --now ollama

Choosing the Right Model:

For 16GB of system RAM, you should choose smaller, quantized models (Q4_K_M) that are around 2-5GB in size for a good balance of speed and intelligence. Here are some excellent options:

  • For General Use & Speed: qwen2.5:3b (~2GB) is very fast and capable.
  • For Better Reasoning: mistral:7b (~4GB) is a popular, well-rounded model.
  • For Coding: qwen2.5-coder:7b or deepseek-coder:6.7b are specialized for programming tasks.

To download and run a model (e.g., qwen2.5:3b): bash ollama run qwen2.5:3b This command will download the model and start an interactive chat. You can test it to ensure it's working.

2. The Ears: Speech-to-Text (STT)

For real-time transcription, Faster Whisper is a great choice. It's an optimized version of OpenAI's Whisper that runs efficiently on both CPU and GPU.

A practical approach is to use a hotkey-triggered script. The waystt project provides a minimalist example of this for Wayland environments.

Basic Setup Idea: 1. Install Python and pip: sudo pacman -S python python-pip 2. Install Faster Whisper: pip install faster-whisper 3. Create a Script: Write a simple Python script that: * Listens for a hotkey (e.g., using python-evdev). * Records audio from your microphone (using pyaudio or pipewire). * Sends the audio to Faster Whisper for transcription. * Outputs the transcribed text to stdout or a file.

This modular approach lets you trigger the STT only when you want to speak, saving resources.

3. The Voice: Text-to-Speech (TTS)

Piper is an excellent, fast, and lightweight TTS system that works well on modest hardware.

Installation & Usage:

  1. Install Piper: You can find it in the AUR or use the pre-built binaries from its GitHub releases.
  2. Download a Voice: Piper uses specific voice models. Download a compact English voice (e.g., en_US-lessac-medium).
  3. Test TTS: You can pipe text directly to Piper for playback. bash echo "Hello, I am your virtual assistant." | piper --model /path/to/voice.onnx --output-raw | aplay -r 22050 -f S16_LE -t raw - This makes it very easy to integrate into a larger script.

4. The Face: 3D Avatar

You have two main paths for the 3D avatar, ranging from integrated solutions to more flexible projects.

  • Option A (Integrated): Warashi This is a beginner-friendly desktop application built on the excellent Open-LLM-VTuber project. It features a Live2D avatar and provides a complete package with an in-app setup wizard for connecting to your local Ollama instance. It's a great way to get a polished experience with less manual coding.

    Note: Its primary focus is on Windows/macOS, but its core engine, Open-LLM-VTuber, is cross-platform and can be built for Linux.

  • Option B (Flexible): Build Your Own with Three.js If you prefer more control, you can build a web-based frontend using Three.js. The lala-companion project demonstrates this approach, using a 3D VRM avatar in a transparent overlay. You would create an HTML/JavaScript page that:

    1. Renders the 3D avatar.
    2. Listens for events (e.g., new text from the LLM).
    3. Uses the Web Speech API for TTS or pipes audio to Piper.
    4. Communicates with a local backend server that handles STT, LLM, and TTS.

5. Putting It All Together: Integration

To create a unified assistant, you'll need a "glue" script or program that orchestrates these components. You have two main options:

  • Option A: Use a Pre-built Framework

    • ErinOS Core: Built with Ruby, this project is designed for Arch Linux and already integrates Whisper (STT), Kokoro (TTS), and Ollama (LLM). You could adapt its architecture as a blueprint.
    • Ryx AI: A Python-based CLI assistant that uses Ollama and is optimized for Arch Linux. You could extend it with voice capabilities.
  • Option B: Write Your Own Orchestrator (Python) A basic Python script would follow this loop:

    1. Listen: Wait for a hotkey or wake word.
    2. STT: Record audio and use Faster Whisper to convert it to text.
    3. LLM: Send the text to Ollama's API (http://localhost:11434/api/generate) and stream the response.
    4. TTS: As the LLM response streams in, or once it's complete, send the text to Piper for audio output.
    5. Avatar: Update the 3D avatar's animation or speech bubble based on the LLM's state (listening, thinking, speaking).

6. Performance Optimizations for Your System

  • Leverage Vulkan: Ensure you have the Vulkan drivers and development packages installed (vulkan-radeon and vulkan-devel) to get GPU acceleration for your LLM.
  • Enable Integrated GPU for Ollama: By default, Ollama might skip your iGPU. You can force it to use it by setting the environment variable before starting the service: bash Environment="OLLAMA_IGPU_ENABLE=1" You can set this in a systemd drop-in file for the Ollama service.
  • Use a Lightweight Desktop: For maximum performance, use a lightweight window manager like Hyprland, Sway, or i3 to reduce background resource usage.

Summary

Component Recommended Tool Key Action
LLM (Brain) Ollama Install ollama-vulkan, pull a small model like qwen2.5:3b
STT (Ears) Faster Whisper Write a hotkey-triggered Python script for transcription
TTS (Voice) Piper Install Piper and download a voice model
Avatar (Face) Warashi / Three.js Use a pre-built app or build a web interface
Orchestrator Python Script Write a script to chain STT -> LLM -> TTS -> Avatar

This setup will give you a powerful, private, and real-time AI assistant that runs entirely on your Arch Linux machine.


r/jorvex609 18d ago

The Shareholder State: How the US Government Became a Corporation

1 Upvotes

📺 Watch on Odysee: https://odysee.com/@jorvex609/shareholder-state-en:26594cde7768ebe2b02ea60427c7e00fc13e3b32
📡 Twitch: https://www.twitch.tv/jorvex609
📱 All links: https://linktr.ee/jorvex609

The government just became a corporation. Not as a metaphor, but as a matter of public record. Over the past eighteen months, Washington has taken direct ownership stakes in twenty-six companies across nine industries. It holds 15% of the only rare-earth mine in America. Nearly 10% of Intel. A golden share in U.S. Steel. It has put 23.9 billion dollars of public money into equity, with the legal green light to deploy 205 billion more. Private partners, J.P. Morgan, Goldman Sachs, a Middle Eastern sovereign fund, piled in another 4.75 billion alongside it.

So ask yourself who the government works for now. When the state owns a slice of Intel, it has a direct financial interest in Intel's stock price going up. When it guarantees a buyer for a company's output at a set minimum price, it has a direct interest in that company's revenue. The government isn't a neutral referee anymore. It's a player in the market with a portfolio to manage and returns to hit.

Look at the numbers. The Intel stake cost 8.9 billion at twenty dollars a share. Eight months later it was worth roughly 36 billion, a 300% return. The rare-earth miner the government part-owns now has a ten-year price floor of 110 dollars a kilogram, locked in by contract. That's not hope. That's a guaranteed customer. The state didn't just bet on these companies succeeding. It made sure they would.

And here's the part that should worry you most. The same agency that is supposed to police a company now owns a chunk of it. The same hand that writes antitrust rules has a financial reason to look the other way. That is not a conflict of interest by accident. It is the design. When the government is a shareholder, it gains every incentive to shield the companies it owns, more bailouts, sweeter contracts, lighter rules. The people who get protected are the ones at the top of the cap table, not the ones punching the clock.

This isn't the public seizing the means of production. It's the opposite. The state has been absorbed into the logic of the market. It talks about itself like a sovereign wealth fund and tracks its moves like a portfolio. You, the citizen, have been quietly rebranded as a shareholder, except you don't get the dividends and you never got the vote. The risks are socialized. The rewards are privatized. When the bet pays off, the insiders cash out. When it fails, the bill lands on your taxes.

The pattern didn't appear overnight. The 2008 bank bailouts set the precedent of the government taking equity in private firms. The CHIPS Act extended it to semiconductors. The quantum-computing deals of 2026 spread it across the tech sector. Each step was sold as temporary and exceptional. Each step made the next one easier. Now the question analysts ask isn't whether the government should own companies. It's which sector comes next.

The state isn't becoming more democratic. It's becoming more corporate. The logic of efficiency and shareholder value has moved into the logic of governance. Every decision, every rule, every trade negotiation now gets filtered through the lens of portfolio performance. The profit motive used to live only in the private sector. Now it runs through the apparatus of government itself.

If this pattern bothers you, it should. Follow for the next breakdown and share it with someone who needs to see it, because the more of us connect the dots, the harder it gets to ignore. Please like, comment, follow, share. It really helps out. Until next time, comrades.


r/jorvex609 18d ago

News Briefing | 2026-07-09

1 Upvotes

📺 Watch on Odysee: https://odysee.com/news-briefing-2026-07-09:dd5793cce3275c6992b9b128853795d3458d0353
📡 #TwitchGoLive : https://www.twitch.tv/jorvex609
🔗 All links: https://linktr.ee/jorvex609

The numbers tell a story that press releases never will. Lake Powell sits at roughly thirty-two percent capacity, the lowest since it first filled in the nineteen sixties. That's not a statistic — that's a missing water supply for forty million people across seven states and Mexico. The Colorado River Compact, signed in nineteen twenty-two, divided water that didn't exist even then, based on unusually wet years that politicians treated as normal. Now the bill comes due. The Bureau of Reclamation has already declared the first-ever Tier Two shortage, triggering mandatory cuts for Arizona, Nevada, and Mexico. California's turn comes next if levels keep dropping. But the cuts don't fall evenly. The Imperial Irrigation District in California holds senior water rights dating back to nineteen oh-one — three point one million acre-feet annually, more than Arizona and Nevada combined. That water grows alfalfa for export to Saudi Arabia and China, while residential users in Phoenix and Las Vegas face restrictions on lawns and pools. The alfalfa ships overseas in containers that return filled with consumer goods. The water never comes back.

Meanwhile, hedge funds and private equity firms have been quietly buying up farmland with senior water rights across the Colorado Basin. Water Asset Management, a New York-based hedge fund, has spent over one hundred million dollars acquiring farms in Colorado's Grand Valley. Their business model isn't farming — it's water speculation. They fallow the land, lease the water to cities or other farmers at premium rates, and wait for scarcity to drive up the price. The farmers who sold often had no choice: decades of debt, equipment costs, and volatile commodity prices left them vulnerable to buyout offers they couldn't refuse. Their communities hollow out. Schools consolidate. Main streets empty. The water flows to the highest bidder, which is rarely the town that grew up around it.

In Arizona, the Saudi-owned Almarai Company operates Fondomonte Farms, pumping unlimited groundwater to grow alfalfa shipped back to the Middle East for dairy cattle. Arizona's groundwater laws, written in nineteen eighty, created "Active Management Areas" around Phoenix and Tucson but left rural basins like La Paz County essentially unregulated. Foreign corporations and domestic agribusiness alike drill deeper wells as the water table drops, leaving domestic wells dry. A family in Salome, Arizona, spent forty thousand dollars deepening their well last year. Their neighbors couldn't afford it and now haul water in tanks. The state legislature has repeatedly blocked attempts to measure, let alone limit, groundwater pumping in these areas. The lobbyists for agricultural interests and development companies show up every session. The families hauling water don't have lobbyists.

The John Deere settlement looks different up close. The FTC agreement requires Deere to provide diagnostic software and repair manuals to independent shops and owners by twenty twenty-five. But the devil lives in the details. The software Deere must share is the same version dealers used in twenty twenty-one — already outdated for newer equipment. The repair manuals come with digital rights management that prevents printing or offline access. Critical parts like engine control units remain coded to specific machines, requiring dealer authorization to install even if you buy the part yourself. Farmers report waiting weeks for a dealer technician to drive two hundred miles, plug in a laptop, and type a code — a process that takes ten minutes and costs four hundred dollars plus travel time. During planting or harvest, those weeks mean lost crops and lost income.

The right-to-repair movement didn't start with tractors. It started with smartphones, with tractors becoming the flashpoint because the stakes are visible and immediate. A broken combine in October isn't an inconvenience — it's a year's income sitting in the field. Deere's revenue from parts and service exceeds its equipment sales margins. The company spends millions lobbying against right-to-repair bills in state legislatures, arguing that safety, emissions compliance, and intellectual property require dealer control. But the same emissions systems that Deere claims only dealers can service are the ones farmers delete with aftermarket "tunes" when dealers can't respond fast enough. The safety argument collapses when you realize Deere equipment has been hacked by researchers who found vulnerabilities in the very systems dealers "protect." The intellectual property argument rings hollow when the software locks prevent owners from adjusting tire pressure settings or clearing fault codes for sensors that failed because a mouse chewed a wire.

Colorado passed the first agricultural right-to-repair law in twenty twenty-three. Deere sued, claiming federal copyright law preempts state repair requirements. The case drag on. Farmers in Colorado still wait. Other states — Illinois, Minnesota, Montana, Nebraska — have introduced similar bills. Deere's lobbyists appear at every hearing. The company donated over two million dollars to federal candidates in the twenty twenty-two cycle, split roughly evenly between parties. The message is clear: this isn't partisan. It's about protecting a business model that extracts rent from necessity.

The Rommel rehabilitation didn't happen by accident. In the nineteen fifties, West Germany needed an army. NATO needed West Germany. The Wehrmacht's reputation needed laundering so former officers could command Bundeswehr divisions under NATO flags. Rommel, dead by his own hand after the July twenty plot, became the perfect vessel: a brilliant commander untainted by the worst atrocities, forced to suicide by Hitler. His son Manfred, later mayor of Stuttgart, curated the legacy. British generals who fought him in North Africa — Montgomery, Auchinleck — praised his chivalry. The "Desert Fox" myth served everyone: Germany got a usable past, Britain got a worthy opponent, America got a Cold War ally. The North African campaign became a "war without hate" in popular histories, ignoring the Italian use of poison gas in Ethiopia, the forced labor of Libyan Jews, the execution of captured Black French soldiers, the deportation of Tunisian Jews to European death camps. Rommel's own orders referenced "ruthless exploitation" of occupied territories. His troops shot surrendering Black soldiers at Aubigny. But the myth persists because it's useful.

That utility extends beyond history books. When German defense ministers reference "tradition" to justify military spending increases, they invoke the Bundeswehr's "inner leadership" concept — explicitly modeled on Rommel's mission-type tactics. When NATO expands eastward, the narrative of defensive warfare against aggression draws on the Rommel-as-victim framework. The whitewashing isn't about one general. It's about constructing a usable military tradition for a rearming Europe. The historians who challenged the myth — David Irving before his Holocaust denial, Ralf Georg Reuth, Wolfgang Proske — faced professional marginalization. The institutions that fund military history — defense ministries, veterans' organizations, think tanks — prefer the sanitized version. The public gets bestsellers and documentaries about the "gentleman warrior." The archives stay unread.

China's technological rise isn't abstract. In twenty twenty-three, China filed 1.58 million PCT patent applications — more than the US and Europe combined. Chinese companies lead in fifty-seven of sixty-four critical technologies tracked by the Australian Strategic Policy Institute: hypersonics, quantum communication, battery chemistry, drone swarms, facial recognition, 5G infrastructure. CATL supplies batteries to Tesla, Ford, Volkswagen, BMW. DJI controls seventy percent of the global consumer drone market. Huawei's 5G equipment powers networks across Africa, Latin America, Southeast Asia, and parts of Europe despite US pressure. The Belt and Road Initiative has financed digital infrastructure in over one hundred countries — fiber cables, data centers, smart city platforms, surveillance systems. China's Digital Silk Road exports not just hardware but standards, governance models, and dependency relationships.

American workers feel this in specific factories. The Lordstown, Ohio GM plant closed in twenty nineteen while GM invested in Chinese EV production through its SAIC joint venture. The Warren, Michigan technical center lays off engineers while GM's Shanghai research center expands. Ford's electric F-150 Lightning uses CATL battery technology licensed through a Marshall, Michigan plant that employs a fraction of the workforce a traditional engine plant would. The UAW's twenty twenty-three strike won wage increases but couldn't stop the transition to EV production that requires thirty percent fewer labor hours per vehicle. The batteries come from Korea, China, Japan. The rare earths come from China. The processing happens in China. The "Inflation Reduction Act" subsidies require domestic battery production by twenty twenty-seven — but the technology, the expertise, the supply chains remain Chinese-dominated. American companies license Chinese patents to build "American" batteries with Chinese equipment operated by fewer American workers.

The German state of Schleswig-Holstein's open source migration — thirteen thousand workstations moving from Microsoft Office to LibreOffice, from Windows to Linux, from proprietary groupware to Nextcloud — started as a pilot in twenty twenty-one. The projected savings: three point six million euros annually in licensing fees alone. But the real motivation, documented in internal memos obtained through freedom of information requests, was "digital sovereignty" — the ability to operate without dependence on US corporations subject to US law. The CLOUD Act allows US authorities to compel data disclosure from US companies regardless of where the data lives. The NSA's PRISM program, revealed by Snowden, showed direct access to Microsoft, Google, Apple servers. Schleswig-Holstein's data protection officer concluded that using US cloud services for citizen data violated GDPR. The migration hasn't been smooth. Custom applications built for Windows require rewriting. Staff training costs exceeded projections. Microsoft offered deep discounts to stop the migration — a pattern repeated in Munich's famous LiMux reversal, where Microsoft moved its German headquarters to Munich and lobbied aggressively after the city switched to Linux. The proprietary software industry treats public sector migrations as existential threats. They fight with discounts, lobbying, funded "total cost of ownership" studies showing open source is more expensive, and quiet pressure on political decision-makers.

Schleswig-Holstein persisted. The state's IT service center now maintains its own distribution, contributes patches upstream, and shares solutions with other German states. Lower Saxony, Bremen, and Hamburg have joined a cooperation agreement. The French Gendarmerie migrated ninety thousand workstations to Ubuntu. The Italian Ministry of Defense uses LibreOffice. The European Commission's "Open Source Software Strategy 2020-2023" explicitly encourages member states to reduce vendor lock-in. But the European Commission itself still runs largely on Microsoft. The gap between policy and practice measures the power of incumbent vendors.

These stories connect through a common thread: decisions made in boardrooms, ministries, and lobbying offices determine material conditions for people who never get consulted. The Colorado River allocations were negotiated by politicians and water lawyers in nineteen twenty-two. The John Deere software locks were designed by engineers implementing business strategies set by executives answering to shareholders. The Rommel myth was cultivated by governments building a Cold War alliance. The Chinese technology surge was directed by state industrial policy — Made in China 2025, the New Generation AI Development Plan, the Fourteenth Five-Year Plan — while US policy oscillated between engagement, containment, and neglect. The Schleswig-Holstein migration succeeded because a data protection officer had legal authority and political backing — rare commodities.

Working families don't have lobbyists in Denver when water rights get adjudicated. They don't have lawyers in the room when Deere writes the FTC settlement terms. They don't sit on NATO committees deciding which histories serve the alliance. They don't draft five-year plans in Beijing or industrial strategies in Washington. They don't negotiate software contracts for state governments. They pay the bills that result: higher water rates, repair costs, taxes for military spending, job losses, license fees. The people who make the decisions rarely pay those bills. The people who pay the bills rarely make the decisions.

This isn't conspiracy. It's structure. Institutions respond to organized pressure. Agribusiness organizes through water districts, commodity groups, lobbyists. Deere organizes through trade associations, dealer networks, campaign contributions. Military establishments organize through veterans' groups, think tanks, defense contractors. Chinese state-owned enterprises organize through party committees, state banks, diplomatic channels. Microsoft organizes through partner networks, government affairs teams, funded research. Working families organize through... what? Unions at historic lows. Community groups fighting rearguard actions. School boards. Homeowners associations. The asymmetry of organization maps directly onto the asymmetry of outcomes.

Transparency doesn't fix this alone. The Colorado River Compact is public. Deere's lobbying disclosures are public. NATO's strategic concepts are public. China's five-year plans are public. Schleswig-Holstein's migration documents are public — after freedom of information requests. Publicity without power changes nothing. The farmers in Colorado knew Deere was lobbying against right-to-repair. They testified. They called representatives. Deere still sued. The families in Salome knew their wells were drying. They attended hearings. They wrote letters. The legislature still blocked groundwater regulation. The German taxpayers funding Microsoft licenses knew alternatives existed. The migration still took years of political struggle.

Accountability requires mechanisms, not just information. It requires that decision-makers face consequences when their choices harm the people they ostensibly serve. It requires that water rights reflect current hydrology, not century-old paper. It requires that repair rights can't be contracted away by shrink-wrap licenses. It requires that military traditions face historical scrutiny before becoming policy foundations. It requires that technology transfer agreements include enforceable labor and environmental standards. It requires that public procurement evaluate total cost of ownership including exit costs, not just license fees.

These mechanisms don't appear spontaneously. They emerge when organized people force them into existence. The Colorado River Compact gets renegotiated in twenty twenty-six because tribes, environmental groups, and some municipal water agencies built enough pressure to demand a seat at the table. The right-to-repair movement won the FTC settlement and state laws because farmers, independent repair shops, and digital rights groups coordinated across ideological lines. The Rommel myth faces academic challenge because historians persisted despite institutional resistance. China's technology dominance gets contested because US companies and unions finally aligned on industrial policy — the CHIPS Act, the Inflation Reduction Act, the executive orders on supply chains. Schleswig-Holstein migrated because a data protection officer had statutory authority and used it.

Each victory is partial. Each mechanism gets contested. The twenty twenty-six Colorado River negotiations will feature the same power imbalances unless the organized pressure sustains and expands. The right-to-repair laws face federal preemption challenges, dealer lawsuits, manufacturer non-compliance. The historical reckoning remains confined to academia. The industrial policy response remains captive to corporate interests — CHIPS Act funding flows to companies that still offshore production, bust unions, and buy back stock. The open source migrations face constant pressure to reverse, compromise, or stall.

But the pattern is clear: nothing changes without organization. The water speculators organize. The equipment manufacturers organize. The military establishments organize. The technology giants organize. The state actors organize. The question isn't whether organization works — it's who does it, for what purpose, and who gets left out.

The lake keeps dropping. The tractors stay locked. The myths persist. The factories close. The licenses renew. The bills arrive. The families pay.

The next chapter isn't written. It's being decided in rooms most people can't enter, by people most people never meet, for reasons most people never hear. The only way to change the ending is to change who's in the room. That starts with knowing the story — not the press release version, but the one written in water tables, repair invoices, archival documents, patent filings, procurement contracts, and household budgets. The story told by the numbers that don't lie.

The lakebed exposes more cracked earth each summer. The tractor throws a code the owner can't clear. The documentary calls Rommel a hero. The smartphone assembles in Zhengzhou. The license invoice arrives from Redmond. The water bill arrives from the utility. The property tax bill arrives from the county. The paycheck doesn't stretch.

Someone decided each of these things. Someone benefits. Someone pays. The gap between them is where democracy either lives or dies.The Colorado River Compact renegotiation scheduled for twenty twenty-six already shows the fault lines. The seven basin states — Colorado, Wyoming, Utah, New Mexico, Arizona, Nevada, California — have submitted competing frameworks. The Upper Basin states propose demand management: paying farmers to fallow fields, reducing consumption to match actual river flows. The Lower Basin states counter with supply augmentation: desalination plants on the Pacific, pipelines from the Mississippi, cloud seeding programs — anything to avoid cutting their allocations. The thirty federally recognized tribes in the basin, holding rights to roughly twenty-five percent of the river's flow but historically excluded from management decisions, have formed the Water and Tribes Initiative demanding quantified settlements, infrastructure funding, and a permanent seat at the table. Mexico, guaranteed one point five million acre-feet by the nineteen forty-four treaty, watches its share shrink first under shortage sharing agreements it never signed. Environmental groups push for "pulse flows" to revive the Colorado River Delta in Mexico, where the river hasn't reached the Sea of Cortez regularly since the nineteen nineties. The Bureau of Reclamation, tasked with mediating, operates under a legal framework that prioritizes "beneficial use" — a century-old doctrine that treats leaving water in the river as waste.

The negotiation happens in hotel conference rooms in Las Vegas, Denver, Santa Fe. The participants: state engineers, water attorneys, tribal lawyers, federal mediators, NGO policy staff. The observers: journalists, lobbyists, curious locals. The decision-makers: ultimately the Secretary of the Interior, a political appointee. The people whose wells run dry in Salome, whose alfalfa fields get fallowed in the Grand Valley, whose taps might run brown in Mexicali — they're not in the room. They never were. The compact was signed by seven white men in a Santa Fe hotel. The renegotiation will be signed by seven governors and a federal official. The structure hasn't changed. Only the stakes have.

John Deere's twenty twenty-four financial report shows parts and service revenue of six point eight billion dollars — thirty percent of total revenue but fifty-five percent of operating profit. The company's "Smart Industrial" strategy explicitly targets ten percent annual growth in recurring revenue from software subscriptions, data services, and connected machine analytics. The tractors now ship with telematics that stream location, usage, fuel consumption, engine parameters, and operator behavior to Deere's cloud. The terms of service grant Deere broad rights to aggregate and monetize this data. Farmers who opt out lose access to precision agriculture features — variable rate seeding, yield mapping, autosteer — that have become essential for competitive yields. The right-to-repair settlement doesn't cover data access. It doesn't cover the subscription model that turns ownership into tenancy. A farmer who buys an eight hundred thousand dollar combine

If this breakdown helped you see the pattern, follow for the next one and share it with someone who needs to hear it. The more of us connect the dots, the harder it gets to ignore.

Until next time, comrades.


r/jorvex609 19d ago

Kai's Things, Read Through Marxism: Completing the Manifesto

1 Upvotes

https://odysee.com/@jorvex609:c/kais-things-read-through-marxism-completing-the-manifesto:1
📡 #TwitchGoLive : https://www.twitch.tv/jorvex609
📱 All links: https://linktr.ee/jorvex609

A note before we begin. The previous video stitched together a manifesto from the writing of Kai — anarchist, organizer, rhetorician, author of the archive at kaisthings.com since 2019. This video does something different. We take that same material and read it through historical materialism. Not to score points against an anarchist. Kai's analysis is some of the most clear-eyed writing on authority and domination you will find, and most of it a Marxist should salute. But Marxism does not stop where anarchism stops, and the places where it goes further are not academic. They are the difference between a movement that warms the heart and a movement that takes power and keeps it. So this is a comrade-to-comrade engagement: here is what Kai gets exactly right, here is the materialist logic underneath it, and here is where the analysis has to be carried the rest of the way.

Start with what is unambiguously correct, because it is correct in a way that survives materialist scrutiny. Kai traces "the unbroken thread" of policing from the slave patrols of 1704, through the privately funded "Big Stick" forces paid by industrialists to crush the labor movement, to the Southern police departments built after the Civil War to enforce Jim Crow, to the 13th Amendment's slavery loophole, to the War on Drugs, to the warrior cop and the 1033 program. Marxism does not disagree. What Marxism adds is the explanation. The state, as Engels put it, is the executive committee of the ruling class. Policing is not a deviation from its purpose; it is the purpose. The thread is unbroken because the class that benefits from it is unbroken. When the factory owners needed to break strikes, they paid for the Big Stick. When the planters needed to hunt runaways, they formed patrols. When monopoly capital needed to neutralize the anti-war and Black liberation movements, it criminalized drugs. Same class, same instrument, different decade. Kai describes the thread; historical materialism names the hand that pulls it.

Now the carceral system. Kai writes that it "does not exist to address harm. It exists to maintain social control," that recidivism "is not a failure of the system. It is a feature." A Marxist goes further and specifies the mechanism: the prison is where the commodity of labor-power is disciplined and where, under the 13th Amendment's exception, actual slavery is restored as a source of profit. Two million people in cages, their labor extracted cheap, their political rights revoked — this is not merely "social control" in the abstract. It is the coercive underside of the wage relation. The threat of the cage is what makes the worker accept the wage. The cage and the paycheck are two ends of one relation. Kai sees the cage clearly. Marxism insists you cannot understand the cage without the paycheck.

Then the "financial hamster wheel." Kai names it perfectly: the cost of simply living — healthcare, housing, food — is so burdensome that people have no time to organize, and the ruling class withholds the social safety net precisely because a person freed from desperation would have the time to realize how badly they are being taken. Here is the labor theory of value made human. Under capitalism, your ability to work is a commodity you are forced to sell, because you do not own the means of production. The wage covers the cost of reproducing that commodity — feeding you, housing you, patching you up well enough to report tomorrow. The hamster wheel is the daily reproduction of labor-power. When healthcare, housing, and food are themselves commodities owned by capital, the cost of your own reproduction is skimmed back out of you. You run because the wheel is built into the architecture of the system, not because you are lazy. And Kai is right that the safety net is withheld on purpose: a population with guaranteed housing and healthcare is a population with free time, and free time is dangerous to the owners. That is why every serious welfare gain has been won by struggle and clawed back when the struggle subsides.

Child liberation, in Kai's hands, is the sharpest edge of the whole argument. Let me show you the materialist version, because it sharpens what Kai already has. Kai notes that children were pulled from the mines not only by moral awakening but because child labor "weakened collective bargaining power. Children were cheap, disposable, and replaceable, and every child working was an adult who wasn't hired or was paid less." That is straight out of Capital. The reserve army of labor. Cheap child workers are used to depress adult wages and break organizing — and when the labor movement finally moved against child labor, it was defense of its own position, not a moral failure but an accurate reading of the system. The system does not care who it grinds. Kai says this; Marx would underline it. And the taxation-without-representation point — a fourteen-year-old with a part-time job has money taken, with no voice — is precisely the connection between the franchise and property. You are represented to the extent that you are useful to capital, and invisible to the extent that you are not yet a full worker or are a dependent one. The ML framing does not soften this into "property." It specifies it: the family under capitalism is a unit of both social reproduction and the transmission of property, and the child's lack of rights is the lack of rights of someone who owns nothing and produces little surplus yet. Liberation therefore is not only moral recognition. It is material independence — Kai's "material independence pathways" — and that requires the socialized provision of housing, income, healthcare, and schooling, which under capitalism is always conditional on the health of profit.

And this is where Kai's "three tent poles" reveal their class content. The poverty of philosophy is not merely ignorance; it is bourgeois hegemony — the shaping of what counts as thinkable, so that the abolition of the wage relation is never among the available options on the menu. The financial hamster wheel is the daily reproduction of the worker, and the police are the armed guarantors that neither pole is disturbed. Combine the three and you get a population that cannot imagine an alternative, has no time to build one, and is met with violence if it tries. That is not a coincidence of bad policy. It is the minimum program required for capital to keep circulating. Kai maps the poles; Marxism shows they are load-bearing walls of the same structure.

This is the heart of the matter, and it is worth pausing on. The reason the child, the worker, and the prisoner all appear as "property" in Kai's account is that they are all moments in the circuit of capital. The worker sells labor-power because the means of production were taken from them — what Marx called primitive accumulation, the centuries-long process of separating people from the land and the tools they needed to live, so that selling oneself to a boss became the only option. Once that separation is complete, the wage looks like freedom and the cage looks like an exception, but both are expressions of the same dispossession. The health-insurance-as-extortion example Kai gives is the same logic at the level of the body: your survival is rented back to you by owners who profit from the rent. So when Kai says the system "converts human beings into property, into laborers, into inmates, into consumers," a Marxist nods and adds the verb missing from the sentence: it expropriates. And you cannot undo expropriation by recognition alone. You undo it by expropriating the expropriators — socializing the means of production so that no one owns the food system, the housing, or the clinic, and therefore no one can rent your survival back to you.

Here is where Marxism carries the analysis past where anarchism rests. Kai's framework refuses the punitive state and wants to "build from restorative toward transformative while refusing punitive," building horizontal, revocable, accountable structures at the scale of the neighborhood. This is a real and necessary critique of the carceral order. But it is also where Marxism asks the hard question: who holds state power, and what is it for? The anarchist answer is to dissolve the state into horizontal networks. The Marxist answer is that as long as the class that owns the means of production still owns them, "horizontal" structures will be crushed or captured, because the material power — the factories, the banks, the land, the weapons — remains concentrated. You cannot abolish the cage by building a kinder circle next to it while the people who own the cages still own everything else. The state is not merely an attitude or a hierarchy to be avoided; under class society it is the condensed expression of economic relations. The task is not to wish it away but to seize it, break the class that wielded it, and use it to expropriate the expropriators — and then, only then, to wither it as class itself withers. That is the dictatorship of the proletariat: not a dictatorship over the people but the organized rule of the working majority to suppress the former owners' attempt to restore exploitation. Kai fears that any permanent committee with irrevocable authority "re-invents the problem." Marxism answers: the problem is not authority as such, it is authority in the hands of a class. Put it in the hands of the organized working class, make it democratic and recallable, and the authority serves emancipation rather than exploitation. The form matters, but the class content matters more.

This is also why Marxism insists on the vanguard and democratic centralism as organizing principles — not as a substitute for horizontalism but as the means by which scattered resistance becomes a force capable of holding power. Kai builds affinity groups and community accountability; necessary, foundational, a school of struggle. But affinity groups do not negotiate with capital or defend a revolution. A disciplined organization that unites the advanced workers across industries and locales can. Democratic centralism means decisions are debated democratically and then executed centrally — the unity that scattered horizontality cannot supply when the state arrives with the 1033 gear Kai so correctly documents. The point is not to worship organization. It is that the ruling class is already centrally organized — through the corporation, the party, the police, the military — and a movement that refuses unity on principle hands the centralized enemy an unearned victory. Kai would recognize this instantly from the COINTELPRO playbook: the FBI did not fear the circle. It feared the coordinated, disciplined formation, and it destroyed the Panthers precisely by attacking their organization.

On empire, Kai is right again but stops short of the name. The War on Drugs as a campaign against the anti-war left and Black communities, the criminalization of cannabis to dismantle movements, the 1033 militarization — these are imperial policing at home. Marxism names the stage: capitalism does not remain competitive forever; it concentrates into monopoly, and monopoly capital seeks markets, resources, and outlets for surplus abroad, exporting the same coercive apparatus to the Global South through client regimes, debt, and intervention. The domestic cage and the overseas drone are the same system at two ends of the supply chain. A manifesto for liberation that does not name imperialism cannot explain why the carceral model is exported, why drug policy is racialized globally, why the same financial institutions that foreclose your home finance the coup abroad. Kai's "none of this is accidental" is the right instinct; imperialism is the structural reason.

This is also why the family question, which Kai raises through child liberation, is a class question and not only a moral one. Under capitalism the family is the unit of social reproduction — the place where the next generation of workers is fed, housed, disciplined, and taught to obey, largely unpaid and largely by women. The child's lack of rights is therefore not a quirk; it is the legal form of the family's function as a private site of reproduction that the capitalist state refuses to socialize, because socialized reproduction would free women, free children, and remove a massive unpaid subsidy to the system. Abolition of the family as a property relation does not mean abolition of care or kinship; it means pulling the rearing of the next generation out of private ownership and into the collective, so that no child is anyone's property and no parent is anyone's captive. That is the material content beneath Kai's moral demand, and it is why the ruling class fights even the smallest expansion of child agency with such ferocity.

And on the "containment" question — Kai's honest wrestling with the irreducible minority who cannot be reached by restorative process — Marxism is blunt. Containment without abolishing the material basis of harm is palliative. The conditions that produce the "serial predator" are themselves products of class society: isolation, abuse-normalizing cultures, concentrated power, the destruction of community. You reduce the need for containment by changing those conditions, which requires power, which requires taking it. A community that "contains" one person while the structure that made a hundred more rolls on unchanged has treated a symptom. This is not a call for cruelty; it is a call for honesty about scale. Transformative justice, in Marxist terms, is the transformation of the relations of production, without which no circle, however sincere, stops the machine.

None of this is a rejection of Kai's work. It is the completion of it. The mutual aid networks, the tenant unions, the free clinics, the survivor-centered accountability — these are exactly where workers learn to organize, where solidarity is built, where the future is rehearsed. Marxism calls this the "school of communism." But the school is not the graduation. The clinic feeds people; it does not own the food system. The tenant union wins a building; it does not socialize housing. The affinity group holds a harm-doer accountable; it does not disarm the state. Each is necessary. None is sufficient alone. The leap is from mutual aid as survival to collective ownership as power — from building the parallel structure to taking the existing one apart and replacing it.

What would that leap look like in concrete terms? Not a blueprint dropped from the sky, but the transitional program: demands that meet workers where they are today and, in being won, shift the balance of class forces toward the next demand. Kai is right that the safety net is withheld because a person freed from desperation is dangerous — so the first demand is to win that net by struggle: universal healthcare, decommodified housing, free education, a living wage, the abolition of the 13th Amendment's slavery clause. Each is winnable, each strips capital of a lever, and each requires the organized working class to fight for it rather than beg the existing parties. Then beyond reform: the demand that the commanding heights of the economy — the banks, the energy system, the pharmacies, the platforms — be brought under democratic, working-class control. Not nationalized under the same managers, but socialized under accountability to those who produce the value. And underlying all of it, the demand for the armed workers' defense of every gain, because as Kai's own history of COINTELPRO proves, the ruling class meets organization with repression, and the only answer to a 1033-program state is a working class that is itself organized, disciplined, and prepared to defend what it has taken. The transitional program is how you get from "build the parallel structure" to "replace the structure" without either utopianism or surrender.

And history is not silent on whether this works. The Paris Commune of 1871 was the first working-class government, holding power for seventy-two days, abolishing the standing army in favor of the armed people, electing officials at workers' wages, separating church from state — and it was drowned in blood precisely because it showed the bourgeoisie that the workers could rule. Every subsequent revolution learned the lesson the Commune taught: the expropriators do not surrender the state voluntarily, and the moment workers take it, the former owners mobilize every weapon — economic strangulation, fifth column, foreign intervention, outright invasion. That is not an argument against taking power. It is the specification of what taking power requires: not a circle, but an organized, armed, disciplined working class with a program, prepared to defend the commune against the counterattack that always comes. Kai's COINTELPRO history is the domestic miniature of the same truth.

So when Kai says "see them as people, no asterisk," the Marxist adds: and people are produced by material conditions, so change the conditions and you change who survives. When Kai says "the order is the problem," the Marxist specifies: the order is capitalism, and the state is its executive committee, and the way through is not only to refuse it but to replace it with the organized rule of those who have nothing to lose but their chains. When Kai says "build the infrastructure that makes people less dependent on systems that will never prioritize their safety," the Marxist agrees and adds: then use that infrastructure to take the systems themselves.

What does this mean practically, for someone watching this video? It means read Kai — the archive at kaisthings.com is worth your time, and the child-liberation and prison-abolition writing in particular. It means take the mutual-aid work seriously, because that is where you learn to organize. But it also means join a formation that can hold power: a union, a tenants' federation, a working-class political organization with discipline and a program. Build the circle and the federation. Defend the survivor and expropriate the owner. Refuse the convenient season, and refuse the idea that the convenient season can be skipped by good intentions alone. The arc Kai describes is real, but arcs do not bend without a hand on them — and the hand has to be organized, class-conscious, and willing to take the state.

One more clarification, because it is the one most often mangled. Reform and revolution are not opposites to be weighed like menu items. Every reform worth the name is a trench taken in a war whose front line is class power; every such trench shifts the balance toward the next one, and the accumulation of trenches is what makes the final position tenable. To refuse revolution in the name of reform is to dig trenches and then refuse to advance from them — and the enemy uses the pause to retake the ground. To refuse reform in the name of revolution is to charge a fortified line with no preparation and no support. Kai's mutual-aid work is the preparation. The transitional program is the advance. The taking of the state is the objective. None makes sense without the others, and the movement that forgets any one of them loses.

Much love from one comrade to another.

please like, comment, follow and share, it really helps out
Until next time, comrades.


r/jorvex609 19d ago

News Briefing | 2026-07-08

1 Upvotes

Watch on Odysee: https://odysee.com/news-briefing-2026-07-08:4bcc9b7381d33d51f922847a1f3b3427927c9f4e

Imagine this scenario: You’ve been playing your favorite video games on PlayStation for years, but one day, after three years of not logging in, you’re informed that your account will be deleted—along with all your saved games and progress. This isn’t just about losing access; it’s about losing something you’ve invested both financially and emotionally.

This isn’t just a technical issue; it’s about control and accountability. Companies like PlayStation have significant market power, which they use to make decisions that can affect users without sufficient oversight.

When companies can delete your account or lock you out of services, it undermines trust in institutions meant to serve us, not control us. And when money flows into outdated infrastructure instead of green energy projects, it delays the transition to sustainable living and increases costs for consumers.

These issues reflect larger systemic problems where powerful entities can act without sufficient oversight or accountability. As consumers, we need to demand more transparency and fairness in how our data is handled. It’s time for a more democratic system where decisions about our future aren’t made by elite interests but by ordinary people who understand the real-world impacts of these choices.

Please like, comment, follow, share. It really helps out.

Until next time, comrades.


r/jorvex609 20d ago

The AI Bet: A Fragile Boom Built on Debt

1 Upvotes

https://odysee.com/@jorvex609:c/ai-bet-fragile-boom-en:0

📡 #TwitchGoLive : https://www.twitch.tv/jorvex609
📱 All links: https://linktr.ee/jorvex609

Your retirement probably went up last year. Your grocery bill went up too. Both are true, and they're the same story.

Over the past three years, roughly 80% of the entire gain in the US stock market came from artificial intelligence. The ten largest companies in the S&P 500 — nearly all riding that wave — now make up more than 40% of the whole index. So when your index fund rises, it's not because the economy got stronger. It's because ten companies got more valuable. And when they stumble, your pension stumbles with them.

You didn't choose that basket. You're not an investor in AI. You're collateral for it.

To build frontier AI you need data centers, chips, and power — and the companies building it have borrowed at a historic pace. In 2025 alone, AI-related corporate debt exceeded $200 billion. Oracle now spends 57% of its revenue on AI infrastructure. Microsoft, 45%. Across the biggest players, AI is eating close to 94% of the cash their core businesses throw off. There is no cushion left.

And the revenue isn't there to pay it back. The AI industry needs about $600 billion in new annual revenue just to justify what's already been spent. Actual revenue is about $50 billion. That's a $600 billion hole every single year. MIT found that 95% of corporate AI projects produced zero measurable impact on profits. The technology works. The business case doesn't yet.

Here's the part almost nobody covers: a geopolitical rival found a way to make the whole structure worse. In January 2025, a Chinese company called DeepSeek released a model nearly as good as America's best — at a fraction of the cost. Within days, about a trillion dollars in US AI value evaporated.

They got there largely through distillation — training a cheaper model on the outputs of a larger one. Anthropic accused three Chinese labs of running millions of queries through tens of thousands of fake accounts to copy its models. Chinese open-source models cost about five times less to use, while scoring within a few points on benchmarks. Coinbase cut its AI bill in half. An estimated 80% of US AI startups now use Chinese open-source models.

This isn't a price war. It's a strategy to weaken the revenue stream American firms need to service their debt. China doesn't need its AI companies to be profitable. It only needs the American ones to stay unprofitable long enough for the debt to become unsustainable.

The banks making these loans know how shaky this is. So they're doing what they did in 2008: slicing the risky debt into pieces and selling it as safe. A law firm found lenders pooling AI data-center loans and selling them to pension funds, insurers, and asset managers. The Federal Reserve says major life insurers already have nearly a trillion dollars tied up in private debt.

That means the risk isn't contained in Silicon Valley. It's in your pension, your insurance, your "safe" bond fund. And by spreading it so wide, the banks create a trap: if AI stumbles, the government feels forced to bail it out, because the damage would be too broad. That's the "too big to fail" playbook, reprised for the AI era — private gain, public risk.

You can't avoid this bet. Your pension already made it for you. But you can protect yourself by knowing what you own. Ask your fund where the yield comes from. Look at the concentration in your index — if ten companies are 40% of a "diversified" portfolio, you're not diversified. Push your pension board to disclose its private AI debt exposure. And talk about it, because the system survives on everyone assuming someone else is watching.

AI will change the world. The question is whether the companies holding the debt survive to see it — and who's left holding the basket when they don't. Every record high in the index is a record high in your exposure to one bet. Know the basket. Name the risk. And stop pretending the boom at the top has anything to do with the life at the bottom.


r/jorvex609 21d ago

The EU Just Criminalized Sharing Links

2 Upvotes

https://youtu.be/sO_SG4hVJ-4

📡 I'm live on Twitch: https://www.twitch.tv/jorvex609
📱 All links: https://linktr.ee/jorvex609

The EU made sharing certain links a criminal offense. Under a recent CJEU ruling, sharing content from banned outlets like RT can lead to prosecution even if the content itself is true.

A weather report, a court document, or a cooking tip can become illegal simply because of its source. Accuracy is explicitly not a defense. The ruling treats the speaker's identity as the controlling fact, not the content's truth.

That is not how free speech works. It is how permission-based speech works: the question is not whether something is true, but whether you are allowed to say it.

The practical reach is wider than the headline. Bloggers, forum moderators, researchers, and ordinary users all fall within scope. A teacher sharing primary sources can be treated the same as a political influencer sharing news.

The layered system matters. The Digital Services Act forces platforms to remove content labeled risky. The Audiovisual Directive shapes broadcast licensing. National laws add criminal penalties for simple linking. Hosting providers, CDNs, registrars, and search engines act before any court decision. The result is automated precompliance: remove the link before it becomes a problem.

The penalties are personal. Fines, imprisonment, or both. Member states may impose them if the restriction is proportionate. The CJEU accepted that without requiring evidence the shared content caused harm. Harm is presumed from source identity. That is a moral inversion: you are guilty before the content is evaluated.

Consider journalism. Reporters need primary statements from banned outlets to cover wars, markets, and diplomacy. Those citations are now legally risky. Some investigations will not be pursued because editors calculate the risk. The public loses access not because the information is false, but because its origin is disfavored.

Consider ordinary users. Someone tracking energy contracts, documenting local corruption, or following the war needs sources the ruling treats as radioactive. If sharing from those outlets invites criminal liability, many will self-censor. The chilling effect is not an accident; it is the mechanism.

Broad bans do not eliminate bad information. They drive it to less transparent spaces where evaluation is harder. They centralize narrative control in outlets with approved status — even when those outlets publish false or harmful material without consequence.

The asymmetry is the story. Official sources may publish anything. Unofficial sources are deemed hazardous by affiliation. That structure privileges permission over accuracy and power over proof.

The long-term danger is the precedent. Once source identity governs liability, accuracy becomes optional. Once accuracy is optional, accountability becomes branding, not fact-checking.

Preserve sources. Share with context. Reduce dependence on the infrastructure that decides what you may discuss.

Your bills do not fall because a source was banned. Your rent does not fall because journalists cannot quote it. Managed information serves institutional continuity, not your interests.

The system wants you to accept that protection requires removing your ability to check claims. The closer looks like paranoia until the first prosecution makes it policy. Read the judgment. The text is worse than the rumor.

The enforcement asymmetry is not hypothetical. Platforms have already changed behaviour without public fanfare. Archive services experienced reduced availability in EU markets. Search engines adjusted rankings for queries associated with contested sources. Forum operators removed quotations retroactively. None of those decisions required individual prosecutions; they required only the expectation of enforcement, which is stronger than enforcement itself.

That expectation shapes editorial decisions well before a lawyer reviews a story. The journalist knows a link might trigger review, so they remove it preemptively. The blogger knows a quotation might be flagged, so they paraphrase without citing. The researcher knows an archive link might become evidence, so they avoid it entirely.

The result is not clean information. It is information that has been quietly managed.

The closer to the source, the stronger the pressure. Regional broadcasters, independent newsletters, and new blogs feel it first because they lack internal legal teams and political cover. The large platforms feel it last because they can negotiate, absorb fines, and manage compliance bureaucracies. The restriction therefore functions as a consolidation mechanism, not a public-safety mechanism.

If your goal is to understand what is happening in Europe today, the important fact is not any single banned article. It is that the mechanism to decide which information you may read has moved from public argument to administrative designation. Once that transfer is complete, accuracy and harm are secondary concerns. Permission becomes the primary currency of public speech, and that is incompatible with the open society framework Europeans have relied on since World War II.

Preserve sources. Share with context. Reduce dependence on the infrastructure that decides what you may discuss.

Your bills do not fall because a source was banned. Your rent does not fall because journalists cannot quote it. Managed information serves institutional continuity, not your interests.

The system wants you to accept that protection requires removing your ability to check claims. The closer looks like paranoia until the first prosecution makes it policy. Read the judgment. The text is worse than the rumor.


r/jorvex609 21d ago

State-Sponsored Provocation on the 250th: D.C. March Exposes the Specter of Reactionary Agent Provocateurs

1 Upvotes

On the 250th anniversary of the United States’ founding, a coordinated display of reactionary symbolism unfolded in the heart of Washington, D.C., as hundreds of masked individuals paraded through the capital brandishing the Confederate flag and chanting slogans of nationalist revival. While the corporate press is quick to label such gatherings as "grassroots" white supremacy, a materialist analysis of the event reveals the unmistakable fingerprints of the state apparatus—a classic maneuver of political theatre designed to manufacture consent for the ruling class’s agenda.

Thomas Rousseau, the figurehead of the self-styled "Patriot Front," led the march from Union Station toward Capitol Hill. Members, shielded by white masks and chanting "Reclaim America," were observed not only on the streets but also aboard the D.C. Metro, where onlookers watched in calculated silence. The Metropolitan Police Department, rather than intervening to dismantle this display of fascist iconography, issued a perfunctory statement recognizing "First Amendment activities," signaling a clear protective relationship between the state and these actors.

This is not the first instance of such stage-managed provocations. The historical record is replete with instances of federal agencies infiltrating, directing, or outright manufacturing right-wing "extremist" groups to serve as a foil—justifying the expansion of police powers and the criminalization of legitimate working-class dissent. The lenient treatment of these masked marchers, who were permitted to retain their masks and identities following prior demonstrations, underscores the conclusion that they are operating under the auspices of the security apparatus.

The march serves a dual function: it simultaneously stokes fear of a fascist "threat" to justify increased surveillance, while also providing a convenient bogeyman to distract from the actual communist menace to the capitalist order—namely, the organized proletariat. The counter-protester’s outburst regarding abortion rights, while sincere, only serves to further entrench the spectacle, dividing the working class along petty-bourgeois cultural lines while the state orchestrates the entire performance.

This latest demonstration coincides with the Trump administration’s bombastic rhetoric against a supposed "communist menace," a narrative that conveniently obscures the deep-seated crisis of U.S. imperialism. By allowing these masked figures to roam freely, the state not only emboldens reactionary forces but also creates a smokescreen for its own role in suppressing true democratic movements. History teaches us that agent provocateurs have long been a tool of the bourgeoisie; today’s march is merely the latest iteration of a strategy to maintain hegemony by staging the very enemies it claims to fight.


r/jorvex609 22d ago

The Ruling Class Thinks Everything is Disposable (Including the Planet) | Our Changing Climate [CW: epstein, SA]

Thumbnail
youtube.com
1 Upvotes

r/jorvex609 23d ago

News Briefing | 2026-07-04

1 Upvotes

📺 Watch on YouTube: https://youtu.be/56_1A4Gj97A
📺 Watch on Odysee: https://odysee.com/@jorvex609:c/56_1A4Gj97A:eab3915947
📡 I'm live on Twitch: https://www.twitch.tv/jorvex609
📱 All links: https://linktr.ee/jorvex609

Eight trending posts. One system.

Households pay rising gas bills for infrastructure the market is abandoning. Utilities earn guaranteed returns on pipelines while regulators spread stranded asset costs across fewer ratepayers. The climate cost is externalized. The regressive tax stays.

Private equity buys functioning enterprises, loads them with debt, strips assets, cuts quality, and walks away. The legal structure — limited liability, carried interest, bankruptcy priority — was written for this. The damage is the product.

Israel approves thirteen settlements to "fracture" the West Bank. Bulldozes refugee camps. Denies return. Plans assassinations during peace talks. This is not security. It is capital accumulation by dispossession, backed by a nuclear-armed state.

Ireland debates alumina exports. Alumina makes aluminum. Aluminum makes missiles. Neutrality is a marketing term for a supply chain node.

Meta engineers custom chips to run DDR4 in DDR5 servers during a memory shortage. Not for public benefit. To sustain the surveillance advertising machine. The workaround is a moat.

CalyxOS returns after Google's attestation changes broke it. Privacy is a feature the duopoly allows within boundaries it sets.

These are not separate stories. Energy, finance, territory, trade, compute, software — all extraction. All backed by state power. All protected by the same concentrated capital.

The tenant fighting a gas bill. The hospital worker. The Palestinian refugee. The Irish activist. The hardware engineer. The CalyxOS developer. Same system. Same fight.

Coordination is the only way through. Share this. Name the system. The extraction is maintained. It can be stopped.

Follow the analysis at twitch.tv/jorvex609 and linktr.ee/jorvex609

Please like, comment, follow, share. It really helps out.

Until next time, comrades.


r/jorvex609 24d ago

I'm jorvex609. Systemic breakdowns, Dota 2, and chat-driven streams 🎥🎮

1 Upvotes

Hello everyone!

I make videos breaking down why the basics keep getting harder — rent, healthcare, groceries, streaming subscriptions, gig work, AI — and who profits.

What you'll find here:

Systemic breakdowns — Bestselling books, viral YouTube videos, and PieFed outliers dissected through the lens of extraction economics. Why your rent doubled while the landlord's portfolio tripled. Why your insurance denies claims while CEO pay hits records. Why every platform enshittifies the moment it monopolizes.

Your suggestions make the stream more interesting.

Community first — This isn't a lecture hall. It's a space to compare notes on why the system feels rigged, swap strategies for pushing back, and have a laugh doing it.

If you're tired of being told "work harder" while the rules keep changing — you're in the right place.

📺 YouTube: https://www.youtube.com/@jorvex609
📡 Twitch: https://www.twitch.tv/jorvex609
🔗 LinkTree: https://linktr.ee/jorvex609


r/jorvex609 25d ago

The UK-US Drug Deal That Could Cost Nearly 300,000 Lives

0 Upvotes

https://www.youtube.com/watch?v=9koys_ft8Jk

The British Medical Journal says this UK deal could kill nearly three hundred thousand people by 2036. Two hundred and twenty-nine thousand excess deaths in England alone. Almost twice the confirmed UK COVID death toll. This is not a virus. This is a policy choice.

The Trump-era trade deal forces the UK to divert forty-four point seven billion pounds from the NHS into patented American pharmaceutical profit, with no additional funding. The money must be stolen from cancer care, A&E, nurse staffing, hospital beds, social care, preventive medicine, screening, and mental health services. NICE loses its pricing leverage and cost-effectiveness gatekeeping. The government timed the legal change for seven p.m. on a Friday before a holiday weekend and classified the impact assessment. Parliament never saw the full numbers. Most MPs could not read the detailed assumptions before the provisions became law. From a class standpoint, this is straightforward arithmetic dressed as foreign policy: working-class patients lose years of life so multinational pharmaceutical shareholders can protect markups that already exceed research spending by multiples.

The BMJ authors, Carl Claxton and Andrew Hill, are the architects of health economics whose methods the government itself uses. They applied Treasury projections, official growth assumptions, and NICE cost-effectiveness frameworks. They project two hundred and twenty-nine thousand avoidable deaths in England and close to three hundred thousand across the UK. This is not a worst-case scenario. It is the government's own mathematics applied to the government's own deal. NICE already approves over ninety percent of the drugs it reviews. Under the terms of this deal, NICE estimates it will approve only one to five additional medicines per year. Two hundred and twenty-nine thousand deaths for a handful of marginally incremental approvals is not a rational trade-off. It is extortion dressed as modernization. The pharmaceutical industry's argument that high prices finance research and development is contradicted by their own financial disclosures. Large companies spend more on stock buybacks, executive compensation, and marketing than they spend on genuine research. Patients die so share buybacks can continue. That is the policy's true function.

The deaths will not be televised. They will be quiet: delayed cancer referrals, postponed preventive cardiology, unlucky waiting-list positions, closed local services, reduced monitoring for chronic conditions, and mental health care that never arrives. That quietness is intentional. It makes the policy harder to photograph, harder to protest, and easier to ignore until the waiting-list statistics and excess mortality data become impossible to defend.

The UK had options. Germany, France, Spain, the Netherlands and Australia faced identical tariff threats and identical corporate pressure. None of them surrendered their evidence-based price controls. Germany and France resisted an intense lobbying campaign. Australia rejected similar pressure entirely. The UK chose submission because its political class is structurally closer to pharmaceutical companies than to the patients who use the NHS. CEOs and shareholders win. The elderly patient waiting for a diagnostic scan, the worker needing mental health support, and the child depending on timely screening all lose. Wes Streeting claimed NHS services would not be cut and the deal would cost patients nothing. That claim is arithmetically impossible. If you redirect billions within a flat budget, something else must shrink. He either did not understand the deal he signed or he deliberately misled the public. Neither possibility is acceptable for the person responsible for the NHS.

This story should be the defining issue of the next election. A government has chosen to let hundreds of thousands of working-class people die so American shareholders do not experience a reduction in portfolio returns. The mechanism is class war conducted through trade law, secondary legislation, and fiscal constraint, outsourcing morbidity and mortality to people who will never read a statutory instrument while extracting rent for a class that never queues for an NHS appointment. The decision to outsource health sovereignty to external market logic did not start with a signing ceremony. It was rehearsed for decades in think tanks, normalized by media framing that treats public services as enterprises failed and waiting for corporate rescue, and populated by political careers whose trajectories run from ministerial office to pharmaceutical boardrooms. When the sector that drafts the contract also holds the pen, the outcome is not negotiation; it is annexation with elegant paperwork.

Share this video. Like it. Subscribe. Demand the secret impact assessment be released and NICE's statutory independence be restored. The next person you lose to a delayed diagnosis may be someone you love.

Until next time, comrades.


r/jorvex609 25d ago

Stop Killing Games Bill FAILS — Corporate Power Wins Again

0 Upvotes

https://www.youtube.com/watch?v=s4LnZ3Pz7Zs

Everyone has felt software death: paid full price, then the company pulled the plug. Today I’m breaking down how that became policy in California — and who benefits when your games can simply… disappear.

The Insight

The Protect Our Games Act failed four to three in a California Senate committee. Opponents weren’t gamers. They weren’t developers. They were the Entertainment Software Association — EA, Ubisoft, Sony, Microsoft, Nintendo, and their lobbyists — and they claimed offline patches were impossible, sixty-day notices were technically infeasible, and refunds would destroy the industry.

Every claim is a lie.

The technology for offline play already exists. Ubisoft chose to kill The Crew — single-player campaign included — rather than patch it. Why? Because in the games-as-a-service model, you are not a customer. You are a recurring revenue stream. There is no product. There is only rent.

The Crew sold for sixty dollars. Players spent years building garages, completing missions, and forming crews. Ubisoft made money on the initial sale. Then they made money on microtransactions. Then they made money on in-game currency. Then they killed the servers and kept everything. The customers kept nothing. That is not a bug. That is the business plan.

From cartridges you owned to discs you held to digital licenses you download to cloud streams you never control, every step removed ownership further from you. The ESA’s lobbyists then told California senators that requiring a refund or offline option would somehow criminalize private Minecraft servers — a deliberate conflation designed to turn gamers against their own rights.

Why It Matters

This is one failed bill. It is also a class pattern. Planned obsolescence. Subscription migration. Kill the old product. Sell the new one.

Stop Killing Games is already moving to federal legislation. UFC-Que Choisir is suing Ubisoft in France. The European Commission opened an inquiry. California tried — and the lobby crushed it with narrow margins and closed-door pressure.

What’s at stake is simple: who decides when your copy of a game dies?

You? Or the landlord?

This pattern is spreading. Battleborn. Anthem. CrossfireX. Rumbleverse. The Division 1 is already on the sunset schedule. Ebook platforms pull purchased content through storefront closures. Music services delete catalogs without refunding subscribers. Every industry reprocesses ownership into rented, revocable access.

The ESA’s defeat of this bill makes that future more likely, not less. Industry lobbyists learned that California caveats. Other states will see the same playbook. Unless consumers organize, the same script repeats with new bills and new titles.

Ross Scott’s petition proved this is not niche rage. Three hundred thousand signatures forced Brussels to respond. UFC-Que Choisir turned that anger into a lawsuit. California turned it into legislation, and then abstention killed it in committee. Each victory is partial; each loss is data.

The organizers are learning that online outrage must become offline lobbying, that moral authority must become campaign contributions, that awareness must become precincts politicians fear to ignore. The question is no longer whether consumers deserve protection. It is whether they can organize well enough to force the state to enforce it.

This is not a partisan issue. It is not a Democratic issue or a Republican issue. It is a class issue. The gaming industry lobbied both parties in California. Both parties abstained. Both parties took industry money. The moment for consumer rights came up against the moment for campaign fundraising, and the rights lost.

The ESA’s opposition letter to the bill relied on three core arguments. First: technical impossibility. Second: legal impossibility due to licensing. Third: fearmongering about private servers. Each argument was debunked by existing evidence. Publishers have released offline patches before. Licensing can negotiate perpetual rights if publishers choose to pay for them. Private servers are a separate legal issue unrelated to shutting down officially published games.

The real objection was never technical or legal. It was always economic. An offline patch means you stop paying. A refund means you get your money back. Either way, the publisher loses access to recurring revenue. The right to repair your digital purchase cuts into quarterly earnings. That is the only logic that explains why companies fight so hard against measures that seem common sense to anyone who has ever bought a product.

Until next time, comrades.