Trending
yoyo | vtubing Mediocrity's Avatar

yoyo | vtubing Mediocrity

@ggrks.moe

i am both a v-streamer and a youtuber, not at all connected「en/日本語/नेपाली/es」 ttv/yt: yoyoyonono @countrywideping on twitter https://m.ggrks.moe/

196
Followers
1,205
Following
133
Posts
17.11.2024
Joined
Posts Following

Latest posts by yoyo | vtubing Mediocrity @ggrks.moe

Oh my god it's mr sigbovik herself!!!1

28.02.2026 19:56 👍 2 🔁 0 💬 0 📌 0

Heegner numbers?

27.02.2026 17:19 👍 1 🔁 0 💬 0 📌 0

stream brb screen randomly generated uebs fight?

15.02.2026 05:53 👍 0 🔁 0 💬 0 📌 0
Post image Post image

put a few friends on there
"creative internet subcultures" is right, but i think i should skeet more about videogames lol

09.02.2026 20:08 👍 0 🔁 0 💬 0 📌 0

what if sharpie but hardstyle?

29.01.2026 05:43 👍 3 🔁 0 💬 0 📌 0
Post image

turf war?

17.01.2026 05:57 👍 0 🔁 0 💬 0 📌 0

okokok so #SIGSEVEN is a conference that I will organize and hold within the confines of a single #SIGBOVIK paper collect papers and compile them into a mini thing and submit that to the proceedings

ig get me here or on dc if you wanna participate lol

17.01.2026 05:54 👍 1 🔁 0 💬 1 📌 0

maybe some kind of lexical analysis or something...
gonna refloat the old idea of general "meta" paper about brainrot
has the number six then seven appeared anywhere?
or maybe an engineering project again

15.01.2026 06:50 👍 0 🔁 0 💬 0 📌 0

sigbovik 2026 paper: "SIGSEVEN"

12.01.2026 05:34 👍 3 🔁 0 💬 1 📌 2
Post image Post image Post image Post image

captchas: best of

03.01.2026 22:24 👍 5 🔁 0 💬 0 📌 0

i'd probably have to go back to nepal to film it but we'll see lol

25.12.2025 23:43 👍 1 🔁 0 💬 0 📌 0

video explaning my strange self-hosted + smart-home setup
(secretly for my own benefit as guerilla documentation)

25.12.2025 23:23 👍 1 🔁 0 💬 1 📌 0

you know that i don't 💀

25.12.2025 22:08 👍 1 🔁 0 💬 0 📌 0

boutta ruin the browse-in-public viability of bluesky rip
although that is better for the japanese artists i was following anyway so woo?

25.12.2025 03:55 👍 2 🔁 0 💬 1 📌 0

This person is not lying: video series of me explaining topics from random Wikipedia articles

22.12.2025 07:31 👍 1 🔁 0 💬 0 📌 0
Post image

hey, i know who that is

go watch @zarithya.online 's new video about offkai, it's great, and I did a little thing for it

www.youtube.com/watch?v=dj5M...

18.12.2025 20:49 👍 2 🔁 0 💬 0 📌 0

this video is only gonna get worse by the day lmao

10.12.2025 06:19 👍 2 🔁 0 💬 0 📌 0
Post image Post image

That took way too long

I just completed "Movie Theater" - Day 9 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/9

github.com/yoyoyonono/a...

10.12.2025 06:19 👍 2 🔁 0 💬 0 📌 0

Especially after yesterday's performance:
video where i explain my advent of code solutions from this year, why they were bad, and improve them.

09.12.2025 03:59 👍 2 🔁 0 💬 0 📌 1
Post image Post image

That shouldn't have been nearly as difficult for me as it was.
Oh well.

I just completed "Playground" - Day 8 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/8

github.com/yoyoyonono/a...

08.12.2025 07:10 👍 3 🔁 0 💬 0 📌 0
Post image Post image

Somehow did this faster than day 1, although I guess that says more that I just needed to get back in the right headspace.

I just completed "Laboratories" - Day 7 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/7

github.com/yoyoyonono/a...

07.12.2025 05:32 👍 4 🔁 0 💬 0 📌 0
Post image Post image

So many off by ones, or putting the wrong index in the wrong order AAAAAAAAAAAAAAAA

I just completed "Trash Compactor" - Day 6 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/6
github.com/yoyoyonono/a...

06.12.2025 06:04 👍 3 🔁 0 💬 0 📌 0
Post image Post image

Nothing too weird this day, I'm just happy that I'm done before 1AM lol.

I just completed "Cafeteria" - Day 5 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/5

github.com/yoyoyonono/a...

05.12.2025 05:50 👍 2 🔁 0 💬 0 📌 0
Someone improved my code by 40,832,277,770%
Someone improved my code by 40,832,277,770% YouTube video by Stand-up Maths

just rewatched @standupmaths.bsky.social 's wonderful video and then got flashbanged
youtu.be/c33AZBnRHks?...

05.12.2025 03:45 👍 0 🔁 0 💬 0 📌 0
Post image Post image     let input: Vec<Vec<char>> = std::fs::read_to_string("input.txt")
        .unwrap()
        .lines()
        .map(|x| x.chars().collect())
        .collect();

    let mut papers: HashSet<[isize; 2]> = HashSet::new();

    for (y, line) in input.iter().enumerate() {
        for (x, character) in line.iter().enumerate() {
            if *character == '@' {
                papers.insert([y.try_into().unwrap(), x.try_into().unwrap()]);
            }
        }
    }

let input: Vec<Vec<char>> = std::fs::read_to_string("input.txt") .unwrap() .lines() .map(|x| x.chars().collect()) .collect(); let mut papers: HashSet<[isize; 2]> = HashSet::new(); for (y, line) in input.iter().enumerate() { for (x, character) in line.iter().enumerate() { if *character == '@' { papers.insert([y.try_into().unwrap(), x.try_into().unwrap()]); } } }

This one was surprisingly easy. Pro tip: use a hashmap to store points of interest instead of a 2d array.

I just completed "Printing Department" - Day 4 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/4

github.com/yoyoyonono/a...

04.12.2025 05:39 👍 2 🔁 0 💬 0 📌 0
Post image

I just completed "Lobby" - Day 3 - Advent of Code 2025
Yet another long time but it is what it is
#AdventOfCode adventofcode.com/2025/day/3

03.12.2025 06:33 👍 3 🔁 0 💬 0 📌 0
Post image

I just completed "Secret Entrance" - Day 1 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/1

embarrassingly long time for day 1 for me considering I solved day 13 quicker last year...

01.12.2025 05:38 👍 0 🔁 0 💬 0 📌 0

choicer voicer is the obvious one. otherwise things which have community involvement might be fun: jackbox, words on stream, gartic phone.
I'd say duolingo but duolingo sucks but if you'd enjoy learning a language maybe one of the other apps?

18.11.2025 05:17 👍 3 🔁 0 💬 1 📌 0
01 - fasty fast
01 - fasty fast YouTube video by Aaron Thapa Ch. - Games, Music and Stuff

Finally put out the last (first) track of my album
www.youtube.com/watch?v=q9mm...

give it a listen, and maybe some of the other tracks, you might like it.

17.11.2025 05:31 👍 2 🔁 0 💬 0 📌 0

i swear i've made this joke but I've tried to find it and I just can't for some reason

17.11.2025 04:39 👍 4 🔁 0 💬 0 📌 0