defer webrings + update binkies
All checks were successful
/ build (push) Successful in 27s

This commit is contained in:
Soph :3 2025-10-09 18:07:34 +03:00
parent 5f9b68977d
commit c222b3153b
6 changed files with 53 additions and 23 deletions

View file

@ -2,7 +2,7 @@ const binkies = document.querySelector(".binkies")!;
const binky = [
["https://sad.ovh", "sadovh.png"],
["https://unnick.mice.tel", "unnick.png"],
["https://beepi.ng", "unnick.png"],
[
"https://github.com/NotNite/eightyeightthirtyone",
"eighteightthirtyone.png",
@ -13,9 +13,9 @@ const binky = [
["https://thinliquid.dev", "lqd.png"],
["https://joosh.nekoweb.org/", "joosh.gif"],
["https://ctrlaustin.nekoweb.org", "ctrlaustin.gif"],
["https://satorikeiko.surge.sh", "satorikeiko.png"],
["https://satorikeiko.nekoweb.org", "satorikeiko.png"],
["https://nekoaerospace.nekoweb.org", "nekoaerospace.png"],
["https://derg.rest", "tom.png"],
//["https://derg.rest", "tom.png"],
["https://sillylaird.nekoweb.org/", "sillylairdb.png"],
["https://2rin.nekoweb.org", "2rin.gif"],
["https://status.cafe", "statuscafe.png"],
@ -23,7 +23,8 @@ const binky = [
["https://eye.nekoweb.org", "eye.gif"],
["https://yumeo.nekoweb.org", "yumeo.gif"],
["https://bee.nekoweb.org/", "bee.png"],
["https://ultrakill.nekoweb.org/", "ultrakill.png"],
// NOTE: Dead url
// ["https://ultrakill.nekoweb.org/", "ultrakill.png"],
["https://immjs.dev", "immjs.gif"],
["https://lel.nekoweb.org", "lel.gif"],
["https://lunaui.nekoweb.org", "lunaui.gif"],
@ -33,7 +34,15 @@ const binky = [
["https://max.nekoweb.org/", "maxpixels.gif"],
["https://giikis2.nekoweb.org", "giikis2.png"],
["insane.gif", "piracy.gif", "dsb.gif", "universe.gif", "css.png", "vscbutton.gif", "ezgif.gif"],
[
"insane.gif",
"piracy.gif",
"dsb.gif",
"universe.gif",
"css.png",
"vscbutton.gif",
"ezgif.gif",
],
];
binky.forEach((z, i) => {

View file

@ -0,0 +1,25 @@
document.addEventListener("DOMContentLoaded", () => {
const webringsElement = document.querySelector(".webrings");
if (!webringsElement) return;
const pmoringScript = document.createElement("script");
pmoringScript.src = "https://palette.nekoweb.org/pmoring.js";
pmoringScript.setAttribute("data-type", "noir");
webringsElement.appendChild(pmoringScript);
const bucketIframe = document.createElement("iframe");
bucketIframe.title = "the bucket webring";
bucketIframe.id = "bucket-webring";
bucketIframe.style.width = "100%";
bucketIframe.style.height = "3rem";
bucketIframe.style.border = "none";
bucketIframe.style.marginTop = "5px";
bucketIframe.src =
"https://webring.bucketfish.me/embed.html?name=☹️☹️☹️.ovh&lightmode=true";
webringsElement.appendChild(bucketIframe);
const gitgudringScript = document.createElement("script");
gitgudringScript.src = "https://mechagic.party/1stylescripts/gitgudring.js";
gitgudringScript.defer = true;
webringsElement.appendChild(gitgudringScript);
});