Open Source Software Community - it's about ethics in Code of Conducts

Car manufacturing is wasting countless resources already, and that's only going to get worse. It's going to replace horses and carriages in some areas slowly. And what we get in their place is a sterile, shitty replacement. And that will have adverse effects on the economy, and there will definitely be other negative effects on society.
The automobile was a solution to a very real problem that was having horse shit everywhere you went. The AI scamsinvestments that are ruining today's economy are a solution to a non-existing problem. This shit will pop, we will have an economic crisis, and in the end only a handful subset of AI applications will survive. Hell, dare I say that Sam Altman's megascam is actively harming AI development as AI researches are unable to get hardware to work on shit that would actually improve humanity as a whole, like cancer research, all because a faggot kike and his gook and pajeet partners in white glove crime want to cash out of an economical bubble they've themselves have caused.
 
The automobile was a solution to a very real problem that was having horse shit everywhere you went. The AI scamsinvestments that are ruining today's economy are a solution to a non-existing problem. This shit will pop, we will have an economic crisis, and in the end only a handful subset of AI applications will survive. Hell, dare I say that Sam Altman's megascam is actively harming AI development as AI researches are unable to get hardware to work on shit that would actually improve humanity as a whole, like cancer research, all because a faggot kike and his gook and pajeet partners in white glove crime want to cash out of an economical bubble they've themselves have caused.
I agree with most of what you say, but I disagree with the notion that disruptive technology needs to be a solution to an already-recognized problem in order to be legitimate
At least historically, that was almost never the case with major productivity shifts. To go back to my car analogy, it's not like people sat down and asked for cleaner streets, to solve the horse shit problem. Instead, the automobile production structure made old constraints irrelevant. And the same thing happened with electricity, containers, computing, and the Internet, at least as far as I know. In hindsight you can always shoehorn a "problem -> solution" narrative, but at the time it's almost always "new capability -> reorganization of economic activity"

But yeah, most capital is chasing shallow demos rather than durable standard-of-life improvements. And busts are there to correct that situation
 
Compared to C3, I find FOSSDEM this be almost sane, especially if you stay away from the main track. It just doesn't have the outright leftist/antifa influence, that subverted the CCC years ago. I think there are also less trannies but this is subjective; perhaps some autist has the time to go through the schedules and calculate the troon%.
Been wactching selected C3 videos and good lord it's bad this time. but then it was KGB infiltrated before it even existed as the CCC.
 
Car manufacturing is wasting countless resources already, and that's only going to get worse. It's going to replace horses and carriages in some areas slowly. And what we get in their place is a sterile, shitty replacement. And that will have adverse effects on the economy, and there will definitely be other negative effects on society.
Yeah, those replaced drivers, right?

Faggot
 
it's not like people sat down and asked for cleaner streets, to solve the horse shit problem
No, what people said was "every day I toil by toting hundreds of pounds of crap all over town or all over my property. I wish the Lord God would take this cup from me."

Then they made a car and they didn't even need to explain to you why it was a revolution. It just was. I think that's actually the hallmark of revolutionary technology - the whole point of it goes almost unsaid because everyone just instantly understands.

Compare with the mountains of bullshit used to argue that "AI" as we have come to know it in the last 4 years has any value whatsoever.
 

Lunduke wrote a chrome extension to block the wikipedia donation popup. And display display their actual financials.
"I considered writing a firefox extension but nobody uses firefox"
The usual faggotry from this one. Here is the extension converted to userscripts which run everywhere:
JavaScript:
// ==UserScript==
// @name         wdd_linuxfoundation
// @match        https://*.linuxfoundation.org/*
// ==/UserScript==
(function() {
// Show true Mozilla financials
var wdd_div = document.createElement("div");
Object.assign(wdd_div.style, {
  position:        "fixed",
  top:             "16px",
  left:            "50%",
  transform:       "translateX(-50%)",         // true horizontal centering
  minWidth:        "420px",
  maxWidth:        "580px",
  minHeight:       "72px",
  backgroundColor: "#2c2c2e",                   // classy dark grey / near-black
  color:           "#e0e0e0",                   // light text
  borderRadius:    "10px",
  boxShadow:       "0 6px 24px rgba(0,0,0,0.5)",
  zIndex:          "9999",
  opacity:         "0.96",
  padding:         "16px 20px 16px 20px",
  fontFamily:      "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
  fontSize:        "14px",
  lineHeight:      "1.45",
  display:         "flex",
  alignItems:      "center",
  justifyContent:  "center",
  boxSizing:       "border-box",
});

// Close button
var closeBtn = document.createElement("button");
Object.assign(closeBtn.style, {
  position:        "absolute",
  top:             "8px",
  right:           "10px",
  background:      "none",
  border:          "none",
  color:           "#aaa",
  fontSize:        "18px",
  fontWeight:      "bold",
  cursor:          "pointer",
  padding:         "4px 8px",
  lineHeight:      "1",
  borderRadius:    "4px",
});
closeBtn.innerHTML = "×";
closeBtn.title = "Close";
closeBtn.onclick = function() {
  wdd_div.remove();
};
wdd_div.appendChild(closeBtn);

// Display the true financial data
var content = document.createElement("div");
content.style.textAlign = "center";
content.innerHTML =
  '<div style="font-weight: 600; font-size: 15px; margin-bottom: 6px;">' +
    '<strong>Linux Foundation Financials (As of 2025)</strong>' +
  '</div>' +
  '<div style="margin-bottom: 4px;">' +
    'Revenue: <strong>$311 Million</strong> ' +
    '| Total Assets: <strong>$224 Million</strong> <br>' +
    'CEO Pay: <strong>$952,166</strong> ' +
    '| Annual Spend on Linux Kernel: <strong>$8.4 Million</strong>' +
  '</div>' +
  '<div style="font-size: 13px; opacity: 0.9;">' +
    'Sources: ' +
    '<a href="https://projects.propublica.org/nonprofits/organizations/460503801" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'IRS Form 990' +
    '</a>, ' +
    '<a href="https://www.linuxfoundation.org/resources/publications/linux-foundation-annual-report-2025" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'Annual Report' +
    '</a>' +
  '</div>';

// Hover effect for links
content.querySelectorAll('a').forEach(a => {
  a.onmouseenter = () => { a.style.color = "#4dabf7"; };
  a.onmouseleave = () => { a.style.color = "#a5d8ff"; };
});

wdd_div.appendChild(content);
document.body.appendChild(wdd_div);
})();

JavaScript:
// ==UserScript==
// @name         wdd_mozilla
// @match        https://*.mozilla.org/*
// @match        https://*.mozilla.com/*
// ==/UserScript==
(function() {
// Show true Mozilla financials
var wdd_div = document.createElement("div");
Object.assign(wdd_div.style, {
  position:        "fixed",
  top:             "16px",
  left:            "50%",
  transform:       "translateX(-50%)",         // true horizontal centering
  minWidth:        "420px",
  maxWidth:        "580px",
  minHeight:       "72px",
  backgroundColor: "#2c2c2e",                   // classy dark grey / near-black
  color:           "#e0e0e0",                   // light text
  borderRadius:    "10px",
  boxShadow:       "0 6px 24px rgba(0,0,0,0.5)",
  zIndex:          "9999",
  opacity:         "0.96",
  padding:         "16px 20px 16px 20px",
  fontFamily:      "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
  fontSize:        "14px",
  lineHeight:      "1.45",
  display:         "flex",
  alignItems:      "center",
  justifyContent:  "center",
  boxSizing:       "border-box",
});

// Close button
var closeBtn = document.createElement("button");
Object.assign(closeBtn.style, {
  position:        "absolute",
  top:             "8px",
  right:           "10px",
  background:      "none",
  border:          "none",
  color:           "#aaa",
  fontSize:        "18px",
  fontWeight:      "bold",
  cursor:          "pointer",
  padding:         "4px 8px",
  lineHeight:      "1",
  borderRadius:    "4px",
});
closeBtn.innerHTML = "&times;";
closeBtn.title = "Close";
closeBtn.onclick = function() {
  wdd_div.remove();
};
wdd_div.appendChild(closeBtn);

// Display the true financial data
var content = document.createElement("div");
content.style.textAlign = "center";
content.innerHTML =
  '<div style="font-weight: 600; font-size: 15px; margin-bottom: 6px;">' +
    '<strong>Mozilla Financials (As of 2024)</strong>' +
  '</div>' +
  '<div style="margin-bottom: 4px;">' +
    'Revenue: <strong>$653 Million</strong> ' +
    '| Total Assets: <strong>$1.4 Billion</strong> <br>' +
    'CEO Pay: <strong>$6.2 Million</strong></strong>' +
  '</div>' +
  '<div style="font-size: 13px; opacity: 0.9;">' +
    'Sources: ' +
    '<a href="https://assets.mozilla.net/annualreport/2024/b200-mozilla-foundation-form-990-public-disclosure-ty23.pdf" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'IRS Form 990' +
    '</a>, ' +
    '<a href="https://assets.mozilla.net/annualreport/2024/mozilla-fdn-2023-fs-final-short-1209.pdf" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'Annual Report' +
    '</a>' +
  '</div>';

// Hover effect for links
content.querySelectorAll('a').forEach(a => {
  a.onmouseenter = () => { a.style.color = "#4dabf7"; };
  a.onmouseleave = () => { a.style.color = "#a5d8ff"; };
});

wdd_div.appendChild(content);
document.body.appendChild(wdd_div);
})();

JavaScript:
// ==UserScript==
// @name         wdd_wikipedia
// @match        https://*.wikipedia.org/*
// ==/UserScript==
(function() {
// Remove Wikimedia donation banners (everywhere on Wikipedia)
var banner1 = document.querySelector('div#siteNotice');
if (banner1) banner1.remove();

var banner2 = document.querySelector('div#frb-inline');
if (banner2) banner2.remove();

// Helper: Is this a Wikipedia article page? (for Grokipedia link only)
function isWikipediaArticle() {
  // Primary: MediaWiki global variable (most reliable)
  if (typeof window.wgNamespaceNumber !== 'undefined') {
    return window.wgNamespaceNumber === 0;  // 0 = main/article namespace
  }

  // Fallback: URL-based checks
  var path = window.location.pathname;
  var search = window.location.search;

  // Must look like an article
  if (!path.includes('/wiki/') && !(path.includes('/w/index.php') && search.includes('title='))) {
    return false;
  }

  // Exclude non-article namespaces/special pages
  if (
    path.startsWith('/wiki/Special:') ||
    path.startsWith('/wiki/Talk:') ||
    path.startsWith('/wiki/User:') ||
    path.startsWith('/wiki/Wikipedia:') ||
    path.startsWith('/wiki/Template:') ||
    path.startsWith('/wiki/Category:') ||
    path.startsWith('/wiki/Help:') ||
    path.startsWith('/wiki/File:') ||
    search.includes('action=edit') ||
    search.includes('action=history') ||
    search.includes('diff=') ||
    document.body.classList.contains('page-Special_') ||
    (document.body.className.includes('ns-') && !document.body.className.includes('ns-0'))
  ) {
    return false;
  }

  // Must have a real title
  var titleEl = document.querySelector('h1#firstHeading');
  return titleEl && titleEl.textContent.trim().length > 1;
}

// Create and show the overlay on ALL Wikipedia pages
var wdd_div = document.createElement("div");
Object.assign(wdd_div.style, {
  position:        "fixed",
  top:             "16px",
  left:            "50%",
  transform:       "translateX(-50%)",
  minWidth:        "420px",
  maxWidth:        "580px",
  minHeight:       "72px",
  backgroundColor: "#2c2c2e",
  color:           "#e0e0e0",
  borderRadius:    "10px",
  boxShadow:       "0 6px 24px rgba(0,0,0,0.5)",
  zIndex:          "9999",
  opacity:         "0.96",
  padding:         "16px 20px 16px 20px",
  fontFamily:      "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
  fontSize:        "14px",
  lineHeight:      "1.45",
  display:         "flex",
  flexDirection:   "column",
  alignItems:      "center",
  justifyContent:  "center",
  boxSizing:       "border-box",
});

// Close button
var closeBtn = document.createElement("button");
Object.assign(closeBtn.style, {
  position:        "absolute",
  top:             "8px",
  right:           "10px",
  background:      "none",
  border:          "none",
  color:           "#aaa",
  fontSize:        "18px",
  fontWeight:      "bold",
  cursor:          "pointer",
  padding:         "4px 8px",
  lineHeight:      "1",
  borderRadius:    "4px",
});
closeBtn.innerHTML = "&times;";
closeBtn.title = "Close";
closeBtn.onclick = function() {
  wdd_div.remove();
};
wdd_div.appendChild(closeBtn);

// Content container
var content = document.createElement("div");
content.style.textAlign = "center";
content.innerHTML =
  '<div style="font-weight: 600; font-size: 15px; margin-bottom: 6px;">' +
    'Wikimedia Foundation Financials (As of 2024)' +
  '</div>' +
  '<div style="margin-bottom: 4px;">' +
    'Revenue: <strong>$185.4 Million</strong> ' +
    '| Total Assets: <strong>$286.8 Million</strong> <br>' +
    'CEO Pay: <strong>$472,629</strong> | Wikipedia.org Hosting Cost: <strong>$3.1 Million</strong>' +
  '</div>' +
  '<div style="font-size: 13px; opacity: 0.9; margin-top: 12px;">' +
    'Sources: ' +
    '<a href="https://projects.propublica.org/nonprofits/organizations/200049703" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'IRS Form 990' +
    '</a>, ' +
    '<a href="https://wikimediafoundation.org/annualreports/2023-2024-annual-report/" ' +
       'target="_blank" ' +
       'style="color: #a5d8ff; text-decoration: none; border-bottom: 1px dotted #a5d8ff;">' +
       'Annual Report' +
    '</a>' +
  '</div>';

// Grokipedia link — only if it's an article page
if (isWikipediaArticle()) {
  var grokLinkContainer = document.createElement("div");
  grokLinkContainer.style.marginTop = "12px";
  grokLinkContainer.style.fontSize = "13px";

  var pageTitle = "";
  var titleElement = document.querySelector('h1#firstHeading');
  if (titleElement) {
    pageTitle = titleElement.textContent.trim();
  }

  if (!pageTitle) {
    titleElement = document.querySelector('h1');
    if (titleElement) pageTitle = titleElement.textContent.trim();
  }

  if (!pageTitle || pageTitle.length < 3) {
    pageTitle = document.title
      .replace(/\s*[-–—]\s*(Wikipedia|Wikipédia|Wikimedia).*$/i, '')
      .replace(/\s*[-–—].*$/, '')
      .trim();
  }

  // Clean up disambiguation, collapse whitespace to single spaces first
  pageTitle = pageTitle
    .replace(/\s*\([^)]+\)$/, '')          // remove trailing (disambiguation)
    .replace(/\s+/g, ' ')                  // normalize all whitespace → single space
    .trim();

  // Critical fix: replace spaces with underscores for Grokipedia URL format
  var grokTitle = pageTitle.replace(/ /g, '_');

  if (grokTitle) {
    // Encode only special chars (e.g. &, /, ?, etc.) — spaces are already gone
    var encodedTitle = encodeURIComponent(grokTitle);
    var grokipediaUrl = "https://grokipedia.com/page/" + encodedTitle;

    var grokLink = document.createElement("a");
    grokLink.href = grokipediaUrl;
    grokLink.target = "_blank";
    grokLink.textContent = "See if this page is available on Grokipedia";
    grokLink.style.color = "#a5d8ff";
    grokLink.style.textDecoration = "none";
    grokLink.style.borderBottom = "1px dotted #a5d8ff";

    grokLink.onmouseenter = () => { grokLink.style.color = "#4dabf7"; };
    grokLink.onmouseleave = () => { grokLink.style.color = "#a5d8ff"; };

    grokLinkContainer.appendChild(grokLink);
    content.appendChild(grokLinkContainer);
  }
}

// Apply hover effects to all links (sources + Grokipedia if present)
content.querySelectorAll('a').forEach(a => {
  a.onmouseenter = () => { a.style.color = "#4dabf7"; };
  a.onmouseleave = () => { a.style.color = "#a5d8ff"; };
});

wdd_div.appendChild(content);
document.body.appendChild(wdd_div);
})();

BSD 2-Clause License

Copyright (c) 2026, Bryan Lunduke

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Pathetic jewgle cuck.
 
The automobile was a solution to a very real problem that was having horse shit everywhere you went.
I thought about making an actual rebuttal to their comment for a second. But I think what I said was more appropriate. There is so much you can say about it. AI isn't just a clean, net positive. And just comparing it to the utilitarian benifit of transportation like a car just doesn't fit well.

Yes it has uses as a tool. So it does have an actual utilitarian benifit. But it also has all the same drawbacks that the analogy would suggest. And a lot more that the same analogy doesn't apply to.

Like increasing the power of government surveillance. And also because all the companies that shill the bullshit probably vibe code their shit, it's trivial to hack into these systems for non law enforcement. And even if it wasn't vibe coded, the point is, these people don't give enough of a fuck about it to actually make a secure system (should be obvious what kind of morals these people have if you are handing a government that already has way too much surveillance overreach even more, so you can get a pay check). It has lonely people, diving even deeper into isolation. Where in the past they might have at least talked to real people online, now we have people forming relationships with ai chat bots. There are so many examples like this that just have no equivalent with the analogy. And it's not like everything Ive said in the last couple posts are an exhaustive list.

I don't think it actually needs explanation though. Anyone who's remotely objective about it, can see there are as many bad things that have come, or will come from this ai boom, as their are good things, if not more. And the things it does provide aren't life changing in the same way cars were.

I don't personally see as an improvement to daily life that an automobile was. It's just an improvement for webdevs that can't manage to set up snippets for their editor to do most of the boiler plate code for them. Or advertising companies that don't want to pay an artist to make some shitty design. But ai companies are financially incentivized to sell it as the most life changing thing to ever happen to tech. At the detriment of the end users (i. e. Windows is now an agentic operating systen, ai integration is being pushed into every already bloated slow piece of shit application, while devs could instead spend their time on things people actually want to see)
 
Last edited:
Car manufacturing is wasting countless resources already, and that's only going to get worse. It's going to replace horses and carriages in some areas slowly. And what we get in their place is a sterile, shitty replacement. And that will have adverse effects on the economy, and there will definitely be other negative effects on society.
Shit nigger, you'd think you'd know better than to post "new thing... le good??" in the OSS thread where half the posters are still rocking C89.
 
Like increasing the power of government surveillance. And also because all the companies that shill the bullshit probably vibe code their shit, it's trivial to hack into these systems for non law enforcement.
Well, cars enabled mass warfare logistics, police surveillance and rapid response, environmental damage etc., and unless you're a filthy suburban commie, that doesn't invalidate cars as a capability.
I don't personally see as an improvement to daily life that an automobile was.
Most early applications of most things are garbage, and revolutionary tech is often not obviously life-changing at first. Early computers were glorified calculators. Electricity was parlor tricks and novelty lighting, for many years.
Then they made a car and they didn't even need to explain to you why it was a revolution. It just was. I think that's actually the hallmark of revolutionary technology - the whole point of it goes almost unsaid because everyone just instantly understands.
Nah, I think that's complete and utter hindsight bias.
Shit nigger, you'd think you'd know better than to post "new thing... le good??" in the OSS thread
Not even necessarily, I'm merely attacking weak arguments. I am absolutely skeptical of ML hype and I've sperged more than once about how "AGI", which esp. Sam Altman is delusional for, is impossible. Plus, the overwhelming majority of so-called "AI" products are definitely not life-changing.
 
Not even necessarily, I'm merely attacking weak arguments. I am absolutely skeptical of ML hype and I've sperged more than once about how "AGI", which esp. Sam Altman is delusional for, is impossible. Plus, the overwhelming majority of so-called "AI" products are definitely not life-changing.
You likened AI to the invention of the automobile, that's life-changing. You mentioned the majority are not this way. Humor me - which LLM is? (Which one can I get to do my day job for free?)
 
In case anyone believes @XL xQgg?QcQCaTYDMjqoDnYpG to be anything but a libertarian dipshit, here he is arguing that it's fine to sell fentanyl-laced candy to children:
As long as you label the candy properly and make sure that the children in question have understood what they are buying, I don't see a way to argue against this without arguing that children have no rights
 
Y'all do know "AI" includes machine learning, right? There's tons of advances in machine learning coming from these "AI data centers", and not every use of AI is "@grok draw her in a bikini" or George Droyd and Charlie Kirk shitposts.
 
Y'all do know "AI" includes machine learning, right? There's tons of advances in machine learning coming from these "AI data centers", and not every use of AI is "@grok draw her in a bikini" or George Droyd and Charlie Kirk shitposts.
None of the companies who are claiming to change the world or collecting outsized market caps are doing anything real. They are all doing @grok draw her in a bikini.
 
None of the companies who are claiming to change the world or collecting outsized market caps are doing anything real. They are all doing @grok draw her in a bikini.
I'm not saying all of the AI boom isn't that, but while there's a lot of throwing shit at walls and seeing what sticks there's still a lot of beneficial things that will come out of it. As an example Joe Rogan had cancer researcher Garry Nolan on who uses OpenAI products in his labs workflow.
 
Back
Top Bottom