User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 188
  6. 189
  7. 190
  8. 191
  9. 192
  10. 193
  11. ...
  12. 249
  13. 250
  14. 251
  15. 252

Posts by ner vegas

  1. ner vegas Space Nigga
    exocet technologies
  2. ner vegas Space Nigga


    did not know this could happen... lol.
  3. ner vegas Space Nigga
    Originally posted by Blunt Wrap Supreme Added some code for taking out wariat quotes, prob can be done better, it seems to werk though.


    // ==UserScript==
    // @name NiS Script
    // @namespace https://niggasin.space
    // @version 0.1
    // @description Blocking script
    // @match https://niggasin.space/*
    // @icon https://www.google.com/s2/favicons?sz=64&domain=mozilla.org
    // @grant none
    // ==/UserScript==


    const anyOf = (...strings) => str => strings.includes(str)

    const combineBlockers = blockers => str => {
    for(const b of blockers) {
    if (typeof b !== 'function') alert(b)
    }
    return blockers.some(b => b(str))
    }

    const blockPosts = (...blockers) => {
    const block = combineBlockers(blockers)
    for(const post of document.getElementsByClassName('post')) {
    const {innerText} = post.getElementsByClassName('author-name')[0]
    if (block(innerText)) post.style.display = 'none'
    }
    }

    blockPosts(
    anyOf(
    'Warcry',
    'Wariat'
    )
    )

    const blockThreads = (...blockers) => {
    const block = combineBlockers(blockers)
    for(const elem of document.getElementsByClassName('thread-author')) {
    if (!block(elem.textContent.trim())) continue
    elem.parentElement.parentElement.style.display = 'none'
    }
    }

    blockThreads(
    anyOf(
    'Warcry',
    'Wariat'
    )
    )

    const usernames = [
    'Warcry',
    'Wariat'
    ];

    const blockquotes = document.querySelectorAll('blockquote');
    blockquotes.forEach(function(blockquote) {
    const shouldRemove = usernames.some(name => blockquote.textContent.includes(`Originally posted by ${name}`));
    if (shouldRemove) {
    blockquote.remove();
    }
    });


    why const everything
  4. ner vegas Space Nigga
    Originally posted by Donald Trump

    Proving once again that women are better than men, Sarah Ashton Cirillo is just back from 5 days at the front. And by front she means zero line, where her unit repelled two russian advances. And she still looks amazing.

    one year later he's detransitioned, disappeared and deleted his online presence


    TOTAL CHUD VICTORY
  5. ner vegas Space Nigga
  6. ner vegas Space Nigga
    Originally posted by ner vegas

    Mr. FABulous visits Kharkov



    Mr. FABulous inspects Ukrainian lines near Bakhmut
  7. ner vegas Space Nigga
    Originally posted by infinityshock In all actuality…that could be caused by made-in-china shit-tier lithium batteries. That's not much of an explosion

    housing is plastic, lithium would've melted the shit out of it rather than punched a hole like that
  8. ner vegas Space Nigga
    Originally posted by infinityshock I was going to say that's dj quals before he became a mainstream movie star

    same jawline as the shamwow guy
  9. ner vegas Space Nigga
    probably just print to shipping labels, should read fine but won't be glossy if that's an issue
  10. ner vegas Space Nigga
    Originally posted by CandyRein Fuq …I cummd again

  11. ner vegas Space Nigga
    weird
  12. ner vegas Space Nigga
    Originally posted by Ghost The government is the block script with a big sign saying "SAFE SPACE" and his arms are crossed and any bad words that try to cross into the SAFE SPACE get brutalized

    Installing a block script is like walking to work in the morning and while waiting for the bus a group of NIGGERS approach you and say HEY WORKING BOY WE CAN BEAT YOU UP BEFORE THAT BUS ARRIVES WHAT NOW YA FUCKING WORKING BITCH and they steal your brown paper bag lunch so the next day before leaving you dial 911 and tell the police to meet you at the bus stop and then the NIGGERS walk by and see you standing arm and arm with the officers and you all smirk at those niggers in the eye and say "HA! YOu"RE NOT GONNA RUIN THE WORKING MANS DAY NOW!"

    well in this scenario I'm the government so I have the monopoly on violence and you can suck my dick at gunpoint
  13. ner vegas Space Nigga
    Originally posted by Ghost Block scripts are essentially like getting the government to pass a local law because something your neighbor does in the privacy of their own home irritates you so much that you require outside force to tell them how to live their life

    where is the government in this

    I'm just putting a fence up so I don't have to see him waving his cock at me
  14. ner vegas Space Nigga
    Originally posted by infinityshock Boobytraps have been a common feature of warfare since warfare was invented.

    Hell…i have to watch out for them every time I'm in the woods because the homeless fucks think they're in 'nam

    I think they've run out of butterfly mines and these are like their nigger-rigged cousins
  15. ner vegas Space Nigga



    Gorlovka reporting that flashlights with small explosive charges are being dropped from drones; if you try to turn one on it blows your fingers off
  16. ner vegas Space Nigga


    that's some expert penmanship with a turd
  17. ner vegas Space Nigga
    Originally posted by Bradley You guys really block other users posts? That's fucked up.

    no, constantly spamming old man porn is fucked up
  18. ner vegas Space Nigga
    lol just edit the script and remove your name from

    const BLOCKED_THREAD_MAKERS = [];
    const BLOCKED_POSTERS = [];
  19. ner vegas Space Nigga
    I can block that too if you want
  20. ner vegas Space Nigga
    Originally posted by Packet What ChatGPT came up with ~

    I can sort of follow but I don't really know the best way to do it because I hate javascript and just learned a bit to avoid the jumpscares
  1. 1
  2. 2
  3. 3
  4. ...
  5. 188
  6. 189
  7. 190
  8. 191
  9. 192
  10. 193
  11. ...
  12. 249
  13. 250
  14. 251
  15. 252
Jump to Top