| 73Q Music Videos | Vote On Clips | Submit | Login   |

Help keep poeTV running


And please consider not blocking ads here. They help pay for the server. Pennies at a time. Literally.



Comment count is 27
Gmork - 2021-03-06

A face in desperate need of a moustache


Mr. Purple Cat Esq. - 2021-03-07

Just fyi all. The entire OS is 6MB in size when installed!


John Holmes Motherfucker - 2021-03-07

When I started watching this, I wondered how it ever got out of the hopper... After watching most of it, I wondered how it ever got INTO the hopper. I mean it's an operating system, right? Five stars for almost making me want to see if I can get my old Raspberry Pi working again.


casualcollapse - 2021-03-07

I have a RPI 400

Might be worth a shot to try out


Hazelnut - 2021-03-07

As long as we're nerding out: I put up a simple userscript on Pastebin for how to filter out Crackersmack, and someone filed abuse reports to get it taken down. Which is kinda charming -- shows someone's nervous.

So here's SIMPLE instructions for how to set up the filter:

1. Install Tampermonkey. It's safe donationware (https://en.wikipedia.org/wiki/Tampermonkey), just never install a userscript you don't trust.

Firefox here: https://tinyurl.com/cyf5crad

Chrome here: https://tinyurl.com/dj5w3pu6

2. Open the extension. There'll be a button for it in the top right of your browser window.

3. Copy the code below (starting with "// ==UserScript==") into a new script, and save it. Obviously you can tune this to your heart's content. I choose to filter out Ashtar because otherwise Crackersmack can get around the filter by echoing himself through his sock pupper, but your mileage may vary:

// ==UserScript==
// @name PoeTV Spam Filter
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Conveniently filter out poetv spammers
// @author You
// @match http://poetv.com/*
// @match https://poetv.com/*
// @match http://www.poetv.com/*
// @match https://www.poetv.com/*
// @match http://mail.poetv.com/*
// @match https://mail.poetv.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// ADJUST THIS LIST AS YOU SEE FIT
const SPAMMER_LIST = {
"Username Here": "replacement text here",
"Crackersmack": "boring zero-credibility troll",
"ashtar.": "Crackersmack's sock puppet",
};

const commentSection = document.getElementsByClassName('cleary');
if (commentSection.length != 1) {
console.log('PoeTVSpamFilter: no comment section found on this page');
return;
}

console.log('PoeTVSpamFilter filtering:');
const spammers = Object.keys(SPAMMER_LIST);
const userNameLinks = [...commentSection[0].getElementsByClassName('video-textu')];
console.log(' - found ' + userNameLinks.length + ' posts');
for (const userNameLink of userNameLinks) {
if (userNameLink.tagName != 'A') {
continue;
}
const userName = userNameLink.innerText;
if (spammers.includes(userName)) {
const replace = SPAMMER_LIST[userName];
const paras = userNameLink.parentElement.getElementsByTagName('P');
if (paras.length == 0) {
continue;
}
paras[0].innerHTML = String.fromCharCode(60) +
'div style="font-family: Monospace; font-size: 15px; color: gray"' +
String.fromCharCode(62) +
'[filtered: ' + replace + ']' +
String.fromCharCode(60) +
'/div' + String.fromCharCode(62);
console.log(' - filtered out ' + userName + ': ' + replace);
}
}
console.log('PoeTVSpamFilter filtering complete.');
})();


Gmork - 2021-03-08

I'm glad i got you started down that path i failed to find any old links to the old filter

Appreciate it! I only block as a last resort on poetv. So much so that i haven't even done it until now.


yogarfield - 2021-03-07

This guy has been in my recommends for months while I've been working on some Pi projects. He's helpful, but mostly it's just all about how he's the lovechild of Bill Gates and the Joker.

But for real, our youtubes are real chatty with each other.


Born in the RSR - 2021-03-07

I've been subbed to this guy for ages now, he's pretty entertaining, but yeah i dunno if my recommendations are the same because I visit poetv or because we're all the same time of nerds with roughly the same type of interests so it'd be natural for us to have the same recommends.


Mr. Purple Cat Esq. - 2021-03-07

Just fyi I did not get recommended this.
There was a link to this, https://en.wikipedia.org , on hacker news.
I then went searching for stuff about RISC OS and found the video.


Mr. Purple Cat Esq. - 2021-03-07

a link to this https://en.wikipedia.org/wiki/Phoebe_(computer) lol


yogarfield - 2021-03-07

Probably a little bit of both. Are you still in Romania?


Born in the RSR - 2021-03-08

Still in Romania, yeah. I do take a long time every day blocking any romanian content mill clickbait that makes it into my recommends.


simon666 - 2021-03-07

RISC OS? Pssh. I only run BeOS or AIX.


Mr. Purple Cat Esq. - 2021-03-07

AIX.. thats UNIX.. you pleb!!

Just fyi I've been running my programs on a huge crowd of people who are trained to say specific things to the person to their right based on what the the person(s) on their left told them.
I got it to run DOOM! 0.000000000000000000000000000000000001 fps :D


exy - 2021-03-07

wake me when there's a beowulf cluster


simon666 - 2021-03-08

The Alameda County Computer Recycling Center had a pretty sweet beowulf cluster made from salvaged hardware in the late 90s, iirc.


simon666 - 2021-03-08

Actually, I think it was just 486s and maybe some Pentiums in the late 90s, but got fancy RISC hardware (sparcs, alphas?) once startups started going bust as the bubble popped in the early 2000s. But this is all from my busted memory so grain of salt.


John Holmes Motherfucker - 2021-03-08

Years ago, I produced my own live CD distro, based on Slax, with packages taken from Slackware 12. It was inspired by my desire to keep using KDE3 until the bitter end. It was great fun. I learned how to customize every aspect of a slackware system, and I released a new version with each new firefox release. It was downloaded about 1000 times, all over the world. Someone reviewed it for their blog. One guy became a huge fan, and gave me my first laptop.

My Linux live CD was named KIARA, which is a recursive acronym for Kiara Is A Recurive Acronym. These days, I have a cat named Kiara.

Eventually, KIARA became obsolete when the EXT3 filesystem was replaced with EXT4. It was no longer compatable.

And now, I have forgotten everything I ever knew about Slaclware, or anything other than Ubuntu. I don't know what the fuck you guys are talking about.


Gmork - 2021-03-08

All my videogame modding skills become useless every time i choose a new engine with its own proprietary editors.

That's why I'm learning 3d modeling. I'm tired of skillsets becoming obsolete


Hazelnut - 2021-03-08

Holy cow, is everyone on here a programmer?


Crackersmack - 2021-03-08

damn, now imagine if you guys learned skills that got you respectable jobs


simon666 - 2021-03-08

The only thing I remember about Slackware was every package was a tar.gz and dependency hell.


Nominal - 2021-03-08

I tried getting into programming and fell flat on my face, learning just enough to know that I wasn't cut out for it.


Gmork - 2021-03-08

I've dabbled in C++/# and I'll stick to asset creation thank you very much. I tried.

Give me a mesh and I'll go to fucking town


Hazelnut - 2021-03-09

Hah! Other way for me, I’ve made a career out of C++ and Java but consistently fail at 3d modelling


John Holmes Motherfucker - 2021-03-09

BASH never dies.

I feel a CLI rant coming on. Sorry, I have to do this,occasionally, and its been a while.

The Linux community has a culture of the command line. The last time I used that expression in here, someone told me it was nonsense, but it's not. Linux has a command line, so does Windows, but Linux users use the command line a whole lot more, and all the reasons why that happens add up to a culture of the command line. What else would you like me to call it?

The command line is part of the desktop. Thirtysomething years ago, the GUI was born, and just about everyone likes the GUI. No one wants to chuck the GUI, but when you bring up the command line, that's what people hear. These days the command line is integrated into the GUI. Every file manager app will open the terminal window from any location, making navigating to files by using the path (/home/JHM/Downloads/Yet.More.Seventies.Porn.mp4) unnecessary.

I have a friend who can't shake the idea that using the command line involves rote memorization, that you have to study it like a third grader studies the multiplication tables, but you don't. You just have to look stuff up that you want to use. You'll learn the commands that you use. The ones that you don't use, you won't need.

I know nothing about programming, but I do know that any simple list of commands can be executed as a script, and that is a program. I found some commands for converting an .avi video files into an image that could be burned as a DVD. By copying and pasting those commands in a sequence, I created a script that would create DVD images 12 at a time.


Hazelnut - 2021-03-10

Python is slowly muscling in on BASH's turf, though. What's wonderful is your Python code can be literally just that "simple list of commands can be executed as a script", but then you can add a little more logic, and a little more, and next thing you know it's sophisticated software. Highly recommended!


Register or login To Post a Comment







Video content copyright the respective clip/station owners please see hosting site for more information.
Privacy Statement