wtf_man wrote on Aug 14, 2020, 13:00:Beamer wrote on Aug 14, 2020, 11:52:
...
Look,
When there are idiots out there claiming that MATH is racist, and ...
Beamer wrote on Aug 14, 2020, 13:25:wtf_man wrote on Aug 14, 2020, 13:20:Beamer wrote on Aug 14, 2020, 13:17:
...
...
This is like a flat earther saying it's a matter of opinion.
Factually, no school is calling math "racist," and no one of any importance is.
Factually, no school is ignoring science for "bathroom etiquette," and if they're teaching about multiple genders, that's because it's objectively accurate science. If you're disputing that, it's because your teachers failed you, not current teachers failing anyone.
...
jdreyer wrote on Aug 14, 2020, 17:50:It was never about being closeted. But, there's little point in arguing with you about it. You're too far gone down that path to a point of no return. And with that, I feel sorry for you and your kids.Beamer wrote on Aug 14, 2020, 13:25:wtf_man wrote on Aug 14, 2020, 13:20:Beamer wrote on Aug 14, 2020, 13:17:
...
...
...
Both my kids buy completely into LGBTQ, because kids aren't closeted in their school, they know them, and they don't think there's anything wrong/bad/strange about being that way.
Cutter wrote on Aug 13, 2020, 20:50:If you have nothing intelligent to say, it's best not to say anything at all.
Still, Apple's house, their rules. Don't like it? Don't use it.
fakespyder wrote on Aug 8, 2020, 23:31:Not even worth a FREE price, because that's still costing you your attention to play a garbage game. Bethesda should be paying YOU to play it.
From what you are all saying I tend to think I wouldn't like the changes so much. But you never know until you try it yourself.
I'll just keep waiting for a deep, deep discount.
RedEye9 wrote on Aug 5, 2020, 23:13:Wow. There's just no way you're going to change, I see. Very sad. Nice avatar; it suits your beliefs, you robot.Acleacius wrote on Aug 5, 2020, 22:34:The party has definitely slid down the stupid rope with its support of q, racism, anti-vaxxers, flat-earthers, anti-maskers, etc.
Anthony Fauci Hired Security To Protect Daughters From Death Threats
'The Republican Party Has Become the Most Dangerous Organization in World History'
// ==UserScript==
// @name Bluesnews
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.bluesnews.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setTimeout(function() {
var regexTerms = /(racist|confederate|misconduct|harassment|sexual|assault|sexism)/i;
var regexHeadings = /(Metaverse|Tech Bits|Safety Dance|Legal Briefs|Op Ed|Into the Black|etc\.|Out of the Blue)$/i;
var els = document.querySelectorAll("a");
els.forEach(function(el, idx) {
if (el.innerHTML.match(regexHeadings) || el.innerHTML.match(regexTerms)) {
var heading = el.closest(".posting");
if (heading !== null) {
var article = heading.parentNode.parentNode;
if (article !== null) {
article.parentNode.removeChild(article);
}
}
}
if (el.innerHTML.match(regexTerms) || el.innerHTML.match(regexHeadings)) {
var li = el.closest("li");
if (li !== null) {
li.parentNode.removeChild(li);
}
else {
el.parentNode.removeChild(el);
}
}
});
els = document.querySelectorAll(".article");
els.forEach(function(el, idx) {
if (el.innerHTML.match(regexHeadings) || el.innerHTML.match(regexTerms)) {
var article = el.parentNode.parentNode;
article.parentNode.removeChild(article);
}
});
},250);
})();
theglaze wrote on Jun 30, 2020, 14:00:
Anyone listen to NYT podcast "Rabbit Hole", its investigative look into YouTube? It starts off looking into the 'recommended algorithm' and YouTube's wilful ignorance to the side effects on the viewer, or exploitation of the creator. It then spirals out to view more of the Internet realm... heck I even discovered a few things.
Tampermonkey
// ==UserScript==
// @name youtube
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setTimeout(function() {
var choice = document.querySelector('[title="Video game development"]');
if (choice === null) { choice = document.querySelector('[title="Action-adventure games"]'); }
if (choice === null) { choice = document.querySelector('[title="Nintendo Entertainment System"]'); }
if (choice === null) { choice = document.querySelector('[title="Nintendo 64"]'); }
if (choice === null) { choice = document.querySelector('[title="Mario Series"]'); }
if (choice === null) { choice = document.querySelector('[title="Mario"]'); }
if (choice === null) { choice = document.querySelector('[title="The Joy of Painting"]'); }
if (choice === null) { choice = document.querySelector('[title="Synthwave"]'); }
if (choice === null) { choice = document.querySelector('[title="Electronic Music"]'); }
if (choice === null) { choice = document.querySelector('[title="Electrical Engineering"]'); }
if (choice === null) { choice = document.querySelector('[title="Comedy"]'); }
if (choice !== null) {
choice.parentNode.dispatchEvent(new Event('click'));
}
}, 500);
})();