1
NOT_ADMIN 1 point ago +2 / -1

Are you aware that in Japan, anime characters appear white, but are actually a non-existent idealistic race? Essentially since they all have black hair, giving characters colored hair is cool, since they have pretty flat faces, giving them larger noses, etc. They just happen to appear white.

5
NOT_ADMIN 5 points ago +5 / -0

L,g, and b can't exist if T exists. T exists only if generated is a social construct, l,g,b exists with the premise that gender is based on sex. Why is gay not the same as lesbo? due to gender... but if anyone can be anything then there is no distinction

3
NOT_ADMIN 3 points ago +3 / -0

Your view of why the south fought is misled. There is a bias on here that the south fought due to state rights but this is false and can be proven that the primary purpose for secession was due to the fact that the southern democrats would lose on the slave war. It was not about state rights, the southern democrats, just like the Republicans were trying to federalize slavery but instead of making it illegal, they wanted to federalize it to make it legal for all states. It was the northern democrats that wanted to keep it a state right.

2
NOT_ADMIN 2 points ago +2 / -0

Just piggybacking you. If you think of a website as a house, Html is infustructure, the bare bone walls. CSS is the interior design, the way things looks, colors on the wall, material of the floor etc. Javascript is the electricity that allows the lights to turn on and off, the ac to run, etc.

1
NOT_ADMIN 1 point ago +1 / -0

Essentially, it's like a javascript button that exists as a bookmark. I use them quite a lot for other sites. I have folders of them. The benefit is that you have an easy way to turn a script on, and it's still manual. I enjoy knowing which scripts I am running. A bookmarklet can be pretty long, I'm not sure there is a limit outside that script size limit. Actually, I can make the script referenced as a bookmarklet on here. I will do it by loading the script as a file instead, so create a new bookmark. Name it anything. In the URL field, paste the following code:

javascript:var pm;(pm=document.createElement("script")).src="https://files.catbox.moe/29hfz4.js",document.head.appendChild(pm)

Some browsers will remove the javascript: part of the paste, so go to the url beginning and make sure it's there. Save it, and then when on the right page, just click the bookmark.

Or as a sinple test you could paste this as the url. javascript: alert('hello world');

1
NOT_ADMIN 1 point ago +1 / -0

Here is the code with //comments for what each section does:

// selects the marker element with the class "div.more"
var $marker = $("div.more");

// define a function to handle a successful AJAX request
function handleSuccess(data, status, xhr) {
  //this just prints a success string 
    console.log("Get Success");
    
    // convert the response data into a jQuery object. JQuery is just a library of javascript
    var $data = $(data);
    
    // Find posts within the response data and iterate through them
    var $posts = $(".post-list .post", $data);
    $posts.each(function() {
        var $this = $(this);
        var dataid = $this.attr("data-id");
        
        // this check if the post already exists on the page
        var $found = $(`[data-foo="${dataid}"]`);
        if ($found.length == 0) {
            // If not, insert it before the marker element
            $marker.before($this.parent());
        }
    });
    
    // Update the marker with the "Next" link from the response
    var $newnext = $("div.more a:contains(Next)", $data);
    $marker.html("").append($newnext);
}

// this handles any AJAX request errors
function handleError(xhr, status, error) {
    console.log("Get Error", status, error);
}

//get the current page's URL
const mainUrl = window.location.href;

// inits an "IntersectionObserver" to monitor the marker element
var observer = new IntersectionObserver(function(entries) {
    // Check if the marker element is intersecting with the viewport
    if (entries[0].isIntersecting === true) {
        // Extract the URL of the "Next" link within the marker element
        var nhref = $("a:contains(Next)", entries[0].target).attr('href');
        if (!nhref) {
            return;
        }
        
        // make a URL for the next page and make an AJAX GET request. Ajax is a way to communicate to a server.
        var nexturl = new URL(nhref, mainUrl);
        console.log(nexturl.href);

        var request = { url: nexturl.href };
        request['success'] = handleSuccess;
        request['error'] = handleError;
        $.get(request);
    }
}, { threshold: [0] });

// If the marker element exists, observe it for intersection
if ($marker.length > 0) {
    observer.observe($marker[0]);
}
})();

1
NOT_ADMIN 1 point ago +1 / -0

You could turn this into a bookmarklet by minifying the code, and putting javascript: before the code then create a shortcut and paste the code into the URL portion. The code will run when you click the shortcut button

1
NOT_ADMIN 1 point ago +1 / -0

You could turn this into a bookmarklet by minifying the code, and putting javascript: before the code then create a shortcut and paste the code into the URL portion. The code will run when you click the shortcut button

1
NOT_ADMIN 1 point ago +1 / -0

You think silly allegations are ignored?

1
NOT_ADMIN 1 point ago +1 / -0

Poor quality videos usually sus. I'm curious also, if she is so open about herself why did she say she is not a male and has a vagina when interviewed by Barbara Walter's

1
NOT_ADMIN 1 point ago +1 / -0

Can I seethe video so I can verify it?

2
NOT_ADMIN 2 points ago +2 / -0

Proof please

1
NOT_ADMIN 1 point ago +1 / -0

Yes it is fake

4
NOT_ADMIN 4 points ago +4 / -0

Either Mark this as a shitpost or remove this post its fake. ghostarchive.org/archive/SW0EU I will be asking the mods to remove it aswell.

4
NOT_ADMIN 4 points ago +4 / -0

This actually is fake...

by JFQ17
1
NOT_ADMIN 1 point ago +1 / -0

Has it not occurred to you that thousands of witnesses saw a plane hit the building including family members of mine who live in New York. So it really doesn't matter what excuse you can give since first hand account is the best evidence.

view more: ‹ Prev Next ›