like so:
NSFW LOLI
like so:
I feel like there should be a better way to do this, but I’m adding:
var vids = document.getElementsByTagName("video");
for (var i = 0; i < vids.length; i++) {
vids[i].setAttribute("loop", "true");
}
window.addEventListener('click', function() {
var vids = document.getElementsByTagName("video");
for (var i = 0; i < vids.length; i++) {
vids[i].setAttribute("loop", "true");
}
}, false);
So that videos get the loop attribute when you load a page like https://shota.nu/ss/m5h4pn2n.webm and when you click to expand an image like clicking the ▶ on https://burggit.moe/post/86930
I’d say red, pink, or light blue.
I find it interesting contrasting the comments in that thread: https://vlemmy.net/post/586298
With this thread: https://vlemmy.net/post/583052
It’s interesting how the tone of the post changes the tone of the comments.
Videos tend to still be over stretched:
So I’m adding
" .embed-responsive-item {",
" max-height: 90vh;",
" width: auto;",
" max-width: 100%;",
" }",
So that videos at least attempt to show at their native resolution:
I’m unsure if I should do the same to images.
Nothing kills the mood more than hooking up a bank account to a crypto bank so that you can buy monaro so that you can log in to the loli friendly instance.
I think we’re safe, but I wouldn’t put it past those other lemmy instances to bend to the will of facebook to be facebook compatible.
I think it makes sign up instructions easier if you want to advertise. Nothing kills the mood for some people like explaining why you want to go on the loli friendly instance.
From a different thread, this one supposedly auto expands images:
// ==UserScript==
// @name Expand Images
// @match https://burggit.moe/*
// ==/UserScript==
// Permission to use, copy, modify, and/or distribute this software for
// any purpose with or without fee is hereby granted.
// Start the script
poll();
function poll() {
expand();
setTimeout(poll, 200);
}
function expand() {
const posts = document.querySelectorAll("div.post-listing");
for (const post of posts) {
const imgThumbnail = post.querySelector("button.thumbnail");
const isImage = imgThumbnail !== null;
const isExpanded = post.childElementCount > 2;
if (isImage && !isExpanded) {
imgThumbnail.click();
};
}
}
Oh. There’s no need to make a new one, there’s plenty of those. Just make an account with any of the instances we are still federated with. If you are lucky, you’ll find one where the admin is just - absent.
Added
" background-color: rgba(0, 0, 0, 0);",
to .thumbnail to get rid of that annoying white background on images:
Without code:
With code:
I’m adding
" .embed-responsive-item {",
" max-height: 90vh;",
" }",
so that videos like https://burggit.moe/post/83770 (NSFW!) have the same height limit as images do. Otherwise, they don’t fit vertically on my screen
Added:
" .justify-content-center {",
" height: 80px !Important;",
" }",
Between .thumbnail and .my-3 To make comment post thumbnails their original size:
To give you back a little more posts/page.
Just updated the script a little to maintain aspect ratios in the image.
New version of Lemmy, new script. Go from this:
to this:
.img-blur unblurs the image.
.thumbnail makes the images 160px big instead of 80px big.
.my-3 reduces the spacing between posts.
Sorry that someone crashed your thread.
Burggit is the only instance that I have a feeling that I’m not swapping the repressive admin set from reddit for another repressive set from lemmy. I think the people of reddit are too used to being repressed. Being told what they can and can’t post. Your title needs to look like this, you need to have these tags in your post, you most post every source in an image. No photoshop. No AI. There’s certain body types you cannot post as determined by anyone who wants to use the report button. I see it on every instance where they preportally make a “safe space” by censoring and restricting the ever loving shit out of their community.
Every other instance I’ve seen has started where reddit left off: repressed enough to be advertisement friendly. I feel they do this because it’s all they’ve known recently.
In this instance, I see the seed of it not trying to be a no holds barreled 4chan knockoff like some instance are, but a site trying to be what reddit was - separate groups coming together to make a small community. Rules in place to carefully guide it from being taken down or becoming shit. Rules about behavior rather than content.
I think a few decades down the road, no offence pedophilia will be destigmatized like being gay was. There was an old stigma that being gay meant that you were the type of person who who go around raping males (homosexual was used much like pedophile is). I think that in a few decades, people will say it was morally unjust to do the things that are being done to the non-offenders of today.
" .d-inline img{", " max-height: 2em !important; ", " max-width: 2em !important; ", " object-fit: scale-down !important; ", " }"
Due to markdown, images can be embedded into titles. There’s no limit to how big the images can be. This piece of code limits the size to the original size or 2x the text height, whichever is smaller.
before:
after:
Credit to @RA2lover https://burggit.moe/post/92409