Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
your friend sk

(ヤイケス!)


ime you make a post


Join the BYOB Army


thank you again Saoshyant!!

Adbot
ADBOT LOVES YOU

frump truck

hello... again!

I Like It

frump truck

hello... again!

but what if you want him to get chill again? maybe he goes back to normal if you emptyquote

your friend sk

(ヤイケス!)


frump truck posted:

but what if you want him to get chill again? maybe he goes back to normal if you emptyquote

you can just pet him, but sometimes he likes to go fast


Join the BYOB Army


thank you again Saoshyant!!

Ass-penny

seconded

Ass-penny

your friend sk posted:

sometimes he likes to go fast

I have been thinking about it and this really checks out, given that he is a catte :powercatte:


thank you so much to nesamdoom for the scurry fall sig!

(┛◉Д◉)┛彡┻━┻ #YesNutNovember - add this to your sig if you love and support BYOB's own nut

Kaiser Schnitzel

Schnitzel mit uns


i second this motion


https://i.imgur.com/R8ctked.mp4
ty Manifisto for this wonderful sig!


Kaiser Schnitzel

Schnitzel mit uns


all in favor say aye


https://i.imgur.com/R8ctked.mp4
ty Manifisto for this wonderful sig!


Kaiser Schnitzel

Schnitzel mit uns


anyone opposed can gently caress right the hell off


https://i.imgur.com/R8ctked.mp4
ty Manifisto for this wonderful sig!


Areola Grande

it's a free country u pervs
i think the hammock cat should be slow and get fatter and fatter every t

Areola Grande

it's a free country u pervs
ime you make a post





spring sigs by nesamdoom and Ravenous Scoot

Zoya

echoes of a distant past,
bodies die but voices last.
once were held within a cell,
your mind is where these voices dwell.




i think the hammock cat







thank you snuff melange for the beautiful winter siggy~!

your friend sk

(ヤイケス!)


Zoya posted:

i think the hammock cat


Join the BYOB Army


thank you again Saoshyant!!

cruft

At the rate I post, the poor thing would be slinging around like a loop-the-loop roller coaster.

And then somebody would have to code up the cat getting sick and barfing all over the people in the seats behind.

your friend sk

(ヤイケス!)


i was thinking about a userscript but i think the cat would have to be rocking via CSS instead of as a GIF. which is doable (i did it for the byob cytube) but means getting rid of classic cat


Join the BYOB Army


thank you again Saoshyant!!

Manifisto


https://i.imgur.com/TUl3yal.mp4


ty nesamdoom!

FutonForensic


lmao


Dumb Sex-Parrot

Zoya posted:

i think the hammock cat

therefore i am






thank you Saoshyantx4, Plant MONSTER. and deep dish peat moss for the excellent signature

cruft

Dumb Sex-Parrot posted:

therefore i am the hammock cat

your friend sk

(ヤイケス!)



Join the BYOB Army


thank you again Saoshyant!!

Dumb Sex-Parrot

cruft posted:

Dumb Sex-Parrot posted:

therefore i am the hammock cat

*vibrates through walls*






thank you Saoshyantx4, Plant MONSTER. and deep dish peat moss for the excellent signature

frump truck

hello... again!

i hammock, therefore i cat

FreshCutFries

frump truck

hello... again!


:five:

your friend sk

(ヤイケス!)


here's some code that makes the cat faster every time you click on a page (i think making it per post might need cookies? i'll have to dig into it). it works in firefox and i haven't tested anything else. one custom CSS sheet and one userscript:

CSS code:
/* ==UserStyle==
@name           Rock and roll, cat!
@namespace      https://forums.somethingawful.com/
@version        0.1
@description    Bring that cat into the 21st century!
@author         your friend sk
==/UserStyle== */
@-moz-document domain("forums.somethingawful.com") {
	body.forum_268 #content::after {
		content: ''; /* removes classic cat */
	}

#catte {
  animation: hammock-swing 5s cubic-bezier(.4,0,.6,1) 0s infinite alternate none;
  pointer-events: none;
	content: url('https://i.imgur.com/xiVDGPA.png');
  background-repeat: no-repeat;
  position: fixed;
  top: 0px;
  left: 5px;
  opacity: 0.4;
  visibility: visible;
	min-width: 200px;
	min-height: 200px;
}

@keyframes hammock-swing {
    0.0%{
        transform-origin: top center;
        transform: rotate(0deg);
    }
    100%{
        transform-origin: top center;
        transform: rotate(-20deg);
    }
}

#userlist, #messagebuffer {
  background-color: rgba(0,0,0,0.5);
}
}
JavaScript code:
// ==UserScript==
// @name         Modern Cat
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Smooth cat style
// @author       your friend sk
// @match        https://forums.somethingawful.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=somethingawful.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let speed = 5.0;

    let catte = document.createElement('div');
    catte.id = 'catte';
    catte.style.animationDuration = `${speed}s`;

    let body = document.getElementsByClassName('forum_268')[0];
    body.classList.add('cathouse');

    body.append(catte);

    window.addEventListener("click", function(event) {
        let spd = catte.style.animationDuration;
        if (spd != "0.1s") {
            spd = spd.substring(0,spd.length-1);
            spd -= 0.1;
            spd = spd + 's';
            catte.style.animationDuration = spd;
            console.log('wow!');
        }
    });

})();


Join the BYOB Army


thank you again Saoshyant!!

Adbot
ADBOT LOVES YOU

FreshCutFries

:patriot:

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply