User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 5
  6. 6
  7. 7
  8. 8

Posts by Packet

  1. Packet Houston
    Originally posted by infinityshock because they know they cant hide it so they manipulate the storyline to say its a fabrication or lie or fake news. on other search engines the evaluation is more accurate and to the point

    Do you really believe it isn't a hoax?
  2. Packet Houston
    I had a dream about cp involving a family member a few nights ago. I've never watched it so I don't know why I dreamt of it, but that's something I'll never jot down. Where am I going with this... Why don't you write something yourself?
  3. Packet Houston
    Originally posted by infinityshock ive found a bunch of non-mainstream interviews online from the civil war, spanish revolution, ww1, ww2, vietnam, and a few other. google searches are useless on anything that doesnt follow the narrative…or is contrary to the j­ewish propaganda

    The Protocols of the Elders of Zion is easy to find on Google.
  4. Packet Houston
    A Serbian Film is banned in many countries.
  5. Packet Houston
    The Story of O is pretty fucked. It was written by a woman because someone told her a woman couldn't write like Sade.
  6. Packet Houston
    I just finished Eugenie Grandet. It was disgusting but I couldn't put it down.
  7. Packet Houston
    I'm going to start collecting history books before AI re-writes it.
  8. Packet Houston
    What ChatGPT came up with ~
    // ==UserScript==
    // @name Web Forum User Blocker
    // @namespace http://tampermonkey.net/
    // @version 0.1
    // @description Block posts and threads from certain users on a web forum.
    // @author Your Name
    // @match https://example.com/forum/*
    // @grant none
    // ==/UserScript==

    (function() {
    'use strict';

    // List of users to block
    var blockedUsers = [
    "user1",
    "user2",
    "user3"
    ];

    // Function to check if a post or thread should be blocked
    function shouldBlock(element) {
    var usernameElement = element.querySelector('.username'); // Change this selector to match the username element in your forum
    if (usernameElement) {
    var username = usernameElement.innerText.trim();
    return blockedUsers.includes(username);
    }
    return false;
    }

    // Function to hide blocked posts and threads
    function hideBlockedPosts() {
    var posts = document.querySelectorAll('.post, .thread'); // Change these selectors to match the post and thread elements in your forum
    posts.forEach(function(post) {
    if (shouldBlock(post)) {
    post.style.display = 'none';
    }
    });
    }

    // Run the function to hide blocked posts when the page loads
    document.addEventListener('DOMContentLoaded', hideBlockedPosts);

    // Run the function to hide blocked posts when new posts are loaded (if your forum uses AJAX)
    document.addEventListener('DOMNodeInserted', hideBlockedPosts);
    })();
  9. Packet Houston
    He's going to spam your inbox now.
  10. Packet Houston
    It depends.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 5
  6. 6
  7. 7
  8. 8
Jump to Top