Vin's Avatar

Vin

@vinscool.bsky.social

Random intrnet idiot. I sometime make chiptune music and programming related stuff, otherwise I mostly ramble about life and shitpost when I am bored late at night.

394 Followers  |  563 Following  |  4,831 Posts  |  Joined: 18.10.2024  |  1.9533

Latest posts by vinscool.bsky.social on Bluesky


๐Ÿญmodern games are obsessed with the idea that all rooms have to be important and that secret rooms have to have some reward, and they should instead bring back rooms where the entire point of the room is either to kill you or just to waste your time. bring back developer troll rooms

23.02.2026 23:04 โ€” ๐Ÿ‘ 21    ๐Ÿ” 1    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 0
Hybris Ingame (POKEY cover)
YouTube video by makary brauner Hybris Ingame (POKEY cover)

youtu.be/0qioflsJEOY

23.02.2026 22:59 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Me too because right now I'm angry that I am sick for seemingly no reason at all.

But if I stand up now I know for sure I will be taken by another round of puking so I am just trying to lay down and I don't feel well at all.

23.02.2026 19:26 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Right now what is worrying me the most is dehydration, because I keep puking back everything I have tried to drink since last night.

Fun.

23.02.2026 19:23 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Well uh, still very much nauseaous, puked like 6 times since yesterday, and now I think I also have a fever???

What is the meaning of this shit?

I'm not even feeling like I have the flu or something, so now I'm confused.

23.02.2026 19:23 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 0

3 now.

23.02.2026 11:24 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

I've puked 2 times so far, this doesn't sound good.

23.02.2026 10:01 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

I have no idea what happened but out of nowhere I started to feel nauseous and cold sweat, on top of dizzy.

Laying in my bed now still feeling nauseous, ugh.

23.02.2026 05:57 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Screenshot of a text editor with C code:

void Reset6502(TCPU6502* cpu)
{
	switch (cpu->opcodeCycle)
	{
		case 0:
			//printf("A CPU Reset was triggered\n");
		case 1:
			// Perform useless reads for 2 cycles
			cpu->opcode = cpu->read(cpu, cpu->pc);
			cpu->opcodeCycle += 1;
			break;
		
		case 2:
		case 3:
		case 4:
			// Perform useless Stack Push for 3 cycles (as Read instead of Write)
			cpu->opcode = cpu->read(cpu, STACK + cpu->sp);
			cpu->sp -= 1;
			cpu->opcodeCycle += 1;
			break;
		
		case 5:
			cpu->address = cpu->read(cpu, VECTOR_RESET) & 0xFF;
			cpu->opcodeCycle += 1;
			break;
		
		case 6:
			cpu->address |= cpu->read(cpu, VECTOR_RESET + 1) << 8;
			cpu->pc = cpu->address;
			cpu->opcodeCycle += 1;
			cpu->isReset = 0;
		
		default:
			cpu->cycleStatus = CYCLE_WAIT_SYNC;
	}
}

Screenshot of a text editor with C code: void Reset6502(TCPU6502* cpu) { switch (cpu->opcodeCycle) { case 0: //printf("A CPU Reset was triggered\n"); case 1: // Perform useless reads for 2 cycles cpu->opcode = cpu->read(cpu, cpu->pc); cpu->opcodeCycle += 1; break; case 2: case 3: case 4: // Perform useless Stack Push for 3 cycles (as Read instead of Write) cpu->opcode = cpu->read(cpu, STACK + cpu->sp); cpu->sp -= 1; cpu->opcodeCycle += 1; break; case 5: cpu->address = cpu->read(cpu, VECTOR_RESET) & 0xFF; cpu->opcodeCycle += 1; break; case 6: cpu->address |= cpu->read(cpu, VECTOR_RESET + 1) << 8; cpu->pc = cpu->address; cpu->opcodeCycle += 1; cpu->isReset = 0; default: cpu->cycleStatus = CYCLE_WAIT_SYNC; } }

I dunno why bug reading this again it is so funny how buggy the 6502 really was, assuming this is accurately emulated in my code here.

23.02.2026 05:01 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

(This is so silly, someone make a Wash The Dishes Simulator!)

23.02.2026 04:59 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

For Any% there are intended skips that could count for Good Ending, such as nasty dirty pans that need overnight soaking to be easier to wash the next day.

Bad Ending is to skip the required number of dishes to pass, like not washing utensils when they're all dirty, but everything else was done.

23.02.2026 04:59 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Good Ending -> Everyone is happy, rewards for New Game+ (used for Dishwasher%).

Bad Ending -> You get scolded for unfinished job, but technically get away with it, false credits roll to the screen with a cliffhanger.

23.02.2026 04:56 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Any% -> Wash the minimum amount of dish to be allowed to leave for either Good or Bad Ending, whichever is faster.

100% -> Must wash all dirty dishes in a single segment, always for Good Ending.

Low% -> Similar to Any% but with tricks to wash the least amount of dishes, usually for Bad Ending.

23.02.2026 04:54 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 0

Something like that yeah lol

23.02.2026 04:26 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
illustration of an anthropomorphic cat girl, she is wearing a big yellow sweater, with overalls. her hair is up in a ponytail, tied with a big yellow bow.

illustration of an anthropomorphic cat girl, she is wearing a big yellow sweater, with overalls. her hair is up in a ponytail, tied with a big yellow bow.

snewโ€™s gardening fit (2023) ๐Ÿ’›๐Ÿ’™

22.02.2026 19:40 โ€” ๐Ÿ‘ 1327    ๐Ÿ” 319    ๐Ÿ’ฌ 9    ๐Ÿ“Œ 0
Digital drawing featuring a lined full body picture of my fur sona Sunday. She is various browns and tans in a dense calico fur pattern. She is laying on her back eating a box of pocky while looking down at her phone. Her knees are pulled towards her body and is lying on a green large pillow. This piece was drawn digitally on a iPad Air 13 inch using procreate sketch brushes.

Digital drawing featuring a lined full body picture of my fur sona Sunday. She is various browns and tans in a dense calico fur pattern. She is laying on her back eating a box of pocky while looking down at her phone. Her knees are pulled towards her body and is lying on a green large pillow. This piece was drawn digitally on a iPad Air 13 inch using procreate sketch brushes.

mmm pocky

22.02.2026 17:19 โ€” ๐Ÿ‘ 69    ๐Ÿ” 20    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Post image

Anna, ever the social butterfly, chatting with a friend c:3 Another cute pic by @sapphys.bsky.social , from March 2023, with another kitty snep character of mine, Anna c:3 This is very cute, thank you โค๏ธ

23.02.2026 02:13 โ€” ๐Ÿ‘ 22    ๐Ÿ” 7    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

hhhhh the NotSoFatso core ducttaped to that old Famitracker version is a bit too tangled with Win32 libraries to my liking.

Is it really going to be worth my time to either try to salvage it, or to start from scratch with a different emulator base?

23.02.2026 02:47 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Nice(?)

23.02.2026 01:38 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

oh dear

23.02.2026 01:38 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

It depends on what it's all about, because in most cases, yeah, it may be pretty weird.

23.02.2026 01:34 โ€” ๐Ÿ‘ 3    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

That's what Robin would say in the 1960's Batman series.

23.02.2026 01:20 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Yep, and that was the last time I've ever gotten a haircut (2017).

Now I trim my hair myself. :3

23.02.2026 01:19 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

My god I was so hungry I barely tasted my sandwich, it went through like a black hole.

23.02.2026 01:18 โ€” ๐Ÿ‘ 8    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
็Œซ่€ณๅจ˜ใฎSusannaใกใ‚ƒใ‚“๏ผˆๅทฆ๏ผ‰ใจMargotใกใ‚ƒใ‚“๏ผˆๅณ๏ผ‰ใ€‚ไบŒไบบใฏใฆใ‹ใฆใ‹ใชใƒ“ใƒ‹ใƒผใƒซใƒฌใ‚ชใ‚ฟใƒผใƒ‰ใ‚’็€ใฆใ„ใพใ™ใ€‚

็Œซ่€ณๅจ˜ใฎSusannaใกใ‚ƒใ‚“๏ผˆๅทฆ๏ผ‰ใจMargotใกใ‚ƒใ‚“๏ผˆๅณ๏ผ‰ใ€‚ไบŒไบบใฏใฆใ‹ใฆใ‹ใชใƒ“ใƒ‹ใƒผใƒซใƒฌใ‚ชใ‚ฟใƒผใƒ‰ใ‚’็€ใฆใ„ใพใ™ใ€‚

#็Œซใฎๆ—ฅ ๐Ÿ’™Susannaใกใ‚ƒใ‚“ใจ๐Ÿ’›Margotใกใ‚ƒใ‚“ใงใ™๏ผˆOC๏ผ‰
Margot: @alexaokami.bsky.social
#DigitalArt

23.02.2026 00:13 โ€” ๐Ÿ‘ 37    ๐Ÿ” 9    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 1
Post image

Nikki
#swapnote #nintendo

12.02.2026 03:57 โ€” ๐Ÿ‘ 1242    ๐Ÿ” 286    ๐Ÿ’ฌ 11    ๐Ÿ“Œ 1
Post image

ใŠใฒใ‚‹ใญใ“
Nap Neko

22.02.2026 23:38 โ€” ๐Ÿ‘ 1602    ๐Ÿ” 358    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 1
Merle, a cat girl with pink hair and light brown skin, from Escaflowne.

Merle, a cat girl with pink hair and light brown skin, from Escaflowne.

Itโ€™s cat day so hereโ€™s one of my fav cat girls of all time (Merle from Escaflowne). ๐Ÿˆ๐Ÿ’œ

22.02.2026 18:43 โ€” ๐Ÿ‘ 1804    ๐Ÿ” 507    ๐Ÿ’ฌ 34    ๐Ÿ“Œ 7
Post image

Skeb commission artwork 201๐Ÿพ(Nov. 2023)

I'm accepting commissions via Skeb!๐Ÿพ
skeb.jp/@Acky05_Wolf

[For Clients] User's Guide
lp.skeb.jp/client?local...

23.02.2026 00:21 โ€” ๐Ÿ‘ 50    ๐Ÿ” 10    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
CG Gallery // TAKE // PC-98

CG Gallery // TAKE // PC-98

CG Gallery // TAKE // PC-98

23.02.2026 00:00 โ€” ๐Ÿ‘ 514    ๐Ÿ” 122    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 1

@vinscool is following 20 prominent accounts