Posts by cody@misskey.codingneko.com
 (DIR) Post #AbOfJxMU2RxnNp0UlM by cody@misskey.codingneko.com
       2023-10-31T11:32:22.830Z
       
       1 likes, 0 repeats
       
       Old pic of me but thought you people might like it ^-^
       
 (DIR) Post #AbWla8LZ7L2H4mM0vY by cody@misskey.codingneko.com
       2023-11-06T10:51:54.392Z
       
       0 likes, 0 repeats
       
       @Polychrome@poly.cybre.city Honestly, pretty sure trans straight men should too ​:thonk:​
       
 (DIR) Post #AbX3RuFzPyDaEdyMgi by cody@misskey.codingneko.com
       2023-11-06T13:59:54.194Z
       
       0 likes, 0 repeats
       
       Is there any song you guys have listened to for the first time 10+ years ago that you still listen to semi-regularly? One ofs don't count, has to be something you've listened to at least 4 times a year...
       
 (DIR) Post #AbY8dhBgWsdY6ZMNai by cody@misskey.codingneko.com
       2023-11-06T23:18:24.567Z
       
       1 likes, 0 repeats
       
       ​:kekw:​​:kekw:​​:kekw:​​:kekw:​​:kekw:​I just got Invidious to embed into YouTube itself when the adblocked piece of shit blocker thingamadude shows up. If you want it, I'll leave a pastebin with the userscript for Tampermonkey in a reply to this post.
       
 (DIR) Post #AbY8di5hAdRKuHZ6tU by cody@misskey.codingneko.com
       2023-11-06T23:21:54.903Z
       
       0 likes, 0 repeats
       
       Actually nevermind, pastebin is stupid and blocks it, here you go:// ==UserScript==// @name         Invidious embed// @namespace    http://codingneko.com// @version      0.1// @description  Replaces youtube video player with an embed of Invidious.// @author       CodingNeko// @match        *://*.youtube.com/watch?v=*// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com// @grant        none// ==/UserScript==(function() {    'use strict'    let embedLink = 'https://yt.codingneko.com/embed/' + window.location.href.split('watch?v=')[1];    onElementLoad('ytd-enforcement-message-view-model').then(container => {       container.innerHTML = ``;    });})();function onElementLoad(selector) {    return new Promise(resolve => {        if (document.querySelector(selector)) {            return resolve(document.querySelector(selector));        }        const observer = new MutationObserver(mutations => {            if (document.querySelector(selector)) {                observer.disconnect();                resolve(document.querySelector(selector));            }        });        observer.observe(document.body, {            childList: true,            subtree: true        });    });}</code></pre></p>
       
 (DIR) Post #AbY8dj2tcWnLrtGOAa by cody@misskey.codingneko.com
       2023-11-07T00:28:01.294Z
       
       0 likes, 0 repeats
       
       I feel stupid, this is horrible, but here you go, 2.0. now it updates when you change videos.// ==UserScript==// @name         Invidious embed// @namespace    http://codingneko.com// @version      0.2// @description  Replaces youtube video player with an embed of Invidious.// @author       CodingNeko// @match        *://*.youtube.com/watch?v=*// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com// @grant        none// ==/UserScript==(function() {    'use strict'    onElementLoad('ytd-enforcement-message-view-model').then(replaceContainer);    // This is stupid but I cant do it another way because YouTube obsucres it (potentially on purpose)    let location = window.location.href;    setInterval(() => {        if (location != window.location.href) {            location = window.location.href;            onElementLoad('ytd-enforcement-message-view-model').then(replaceContainer);        }    }, 500);})();function replaceContainer(container) {    if(container instanceof HTMLElement) {        let embedLink = 'https://yt.codingneko.com/embed/' + window.location.href.split('watch?v=')[1].split('&')[0];        container.innerHTML = ``;    }}function onElementLoad(selector) {    return new Promise(resolve => {        if (document.querySelector(selector)) {            return resolve(document.querySelector(selector));        }        const observer = new MutationObserver(mutations => {            if (document.querySelector(selector)) {                observer.disconnect();                resolve(document.querySelector(selector));            }        });        observer.observe(document.body, {            childList: true,            subtree: true        });    });}</code></pre></p>
       
 (DIR) Post #AbY8djpShxdwIVzArw by cody@misskey.codingneko.com
       2023-11-07T01:17:26.630Z
       
       0 likes, 0 repeats
       
       Ok one more, not sure this works, but I think it should, it should autoplay the videos...// ==UserScript==// @name         Invidious embed// @namespace    http://codingneko.com// @version      0.2.1// @description  Replaces youtube video player with an embed of Invidious.// @author       CodingNeko// @match        *://*.youtube.com/watch?v=*// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com// @grant        none// ==/UserScript==(function() {    'use strict'    onElementLoad('ytd-enforcement-message-view-model').then(replaceContainer);    // This is stupid but I cant do it another way because YouTube obsucres it (potentially on purpose)    let location = window.location.href;    setInterval(() => {        if (location != window.location.href) {            location = window.location.href;            onElementLoad('ytd-enforcement-message-view-model').then(replaceContainer);        }    }, 500);})();function replaceContainer(container) {    if(container instanceof HTMLElement) {        container.innerHTML = '';        let embedLink = 'https://yt.codingneko.com/embed/' + window.location.href.split('watch?v=')[1].split('&')[0] + '?autoplay=1&player_style=youtube&';        container.innerHTML = ``;    }}function onElementLoad(selector) {    return new Promise(resolve => {        if (document.querySelector(selector)) {            return resolve(document.querySelector(selector));        }        const observer = new MutationObserver(mutations => {            if (document.querySelector(selector)) {                observer.disconnect();                resolve(document.querySelector(selector));            }        });        observer.observe(document.body, {            childList: true,            subtree: true        });    });}</code></pre></p>
       
 (DIR) Post #AbezIqvjZW94l8bZlQ by cody@misskey.codingneko.com
       2023-11-10T09:46:56.204Z
       
       2 likes, 0 repeats
       
       My new pajamas so warm and fluffy ^~^
       
 (DIR) Post #AbgDkfNXhrc3YdjGDI by cody@misskey.codingneko.com
       2023-11-11T00:19:26.136Z
       
       0 likes, 1 repeats
       
       IN THE JUNGLE THE MAGIC JUNGLE THE LION EEPS TONIGHT
       
 (DIR) Post #AbimBkBPjmTR2D3iVM by cody@misskey.codingneko.com
       2023-11-12T05:56:39.301Z
       
       0 likes, 0 repeats
       
       Hey fedi, I woke up in the middle of the night and I can't sleep now ;-;Have some old #femboy #catboy pics for literally no reason other than me needing attention ​:pleadingCat:​
       
 (DIR) Post #Abin1Jw4ZOOigiTcaO by cody@misskey.codingneko.com
       2023-11-12T06:00:58.209Z
       
       0 likes, 0 repeats
       
       @raccoon@den.raccoon.quest I could just open the window, it's raining outside xdAnyway, doesn't hep, my nose is completely clogged and I can't breathe, so it's kinda hard to sleep ;~;
       
 (DIR) Post #Abinn38oJZlyV6C4ki by cody@misskey.codingneko.com
       2023-11-12T06:10:07.510Z
       
       0 likes, 0 repeats
       
       @raccoon@den.raccoon.quest That's not a bad idea tbh... Would 100% make choccie milk but I'm at my parents house for the weekend and they don't have any ;-; Anyway it's okie, I slept 5h, I'll just wait for the nose to unclog or for it to be so late I have to go... If I feel like shit tomorrow I can always tell my mom to drive...
       
 (DIR) Post #AbiqW10BJZWgo0j6jg by cody@misskey.codingneko.com
       2023-11-12T06:44:48.647Z
       
       0 likes, 0 repeats
       
       need more ausie frens on my phone... the tl is kinda deceased rn
       
 (DIR) Post #AbiqcjiBztuXCyW85g by cody@misskey.codingneko.com
       2023-11-12T06:47:01.764Z
       
       0 likes, 0 repeats
       
       @raccoon@den.raccoon.quest broksy, I'm european, it's 7:46 AM in the morning, on a weekend, everyone is the fuck asleep xd
       
 (DIR) Post #Abir4FZfdollqZePey by cody@misskey.codingneko.com
       2023-11-12T06:50:52.939Z
       
       0 likes, 0 repeats
       
       omg daylightfuck my nose not letting me sleep...Oh well, I guess I'm not sleeping anymore xd
       
 (DIR) Post #AbivROCu6uMP69I6cq by cody@misskey.codingneko.com
       2023-11-12T07:40:57.358Z
       
       1 likes, 0 repeats
       
       New profile assets I guess, I got sick of the old ones, changed avatar, banner and background :3Still unsure I want to use this avatar tho... I might change it cause uh... not convinced...
       
 (DIR) Post #AbiwET6OhQFkTAeNSS by cody@misskey.codingneko.com
       2023-11-12T07:47:25.468Z
       
       0 likes, 0 repeats
       
       @Rasp@raru.re Same... I'm basically sucking it up and talking to cuties on Fedi instead of sleeping xd
       
 (DIR) Post #AbjZr8UDBA1O2KDaQC by cody@misskey.codingneko.com
       2023-11-12T12:04:34.755Z
       
       0 likes, 0 repeats
       
       Pls boost my ass? 🥺
       
 (DIR) Post #AbjZrABUriEvIrTfWq by cody@misskey.codingneko.com
       2023-11-12T12:08:50.210Z
       
       0 likes, 0 repeats
       
       @foxwyn@wetdry.world wdym? why? anyway it's a meme, dw, no need to boost my ass ​:kekw:​
       
 (DIR) Post #AbmTJdhDKi1cwEgBEW by cody@misskey.codingneko.com
       2023-11-14T00:26:15.839Z
       
       0 likes, 1 repeats
       
       0 context candle video.