gilbert189 beta

i'm gilbert_given_189 on Scratch.

wall

posts

gilbert189 — 12/7/2025, 6:57:25 AM

hey guys is wayback down again?

♥ 2 ↩ 0 💬 1 comment
gilbert189 — 12/2/2025, 1:01:12 AM

My data structure practice teammates always merges divergent branches like there’s no tomorrow

Then again, both of them use the recommended GitHub Desktop instead of the Git CLI, so it’s up to that app to decide which one to use

♥ 2 ↩ 0 💬 0 comments
gilbert189 — 12/1/2025, 12:19:28 PM

All I want for Christmas is you

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 12/1/2025, 2:22:23 AM

I don’t want a lot for Christmas

♥ 7 ↩ 0 💬 4 comments
gilbert189 — 11/29/2025, 3:18:24 PM

why oh why does my windows on Windows freeze when I pasted something 😭

♥ 3 ↩ 0 💬 1 comment
gilbert189 — 11/26/2025, 8:18:34 AM

You’re giving me mixed signals, Windows

♥ 9 ↩ 0 💬 0 comments
gilbert189 — 11/21/2025, 2:58:06 AM

this week’s database system practice post test: making the most spaghetti SQL queries:

-- no intersect =(
select distinct (
    select name
    from Lecturers
    where id=C1.lecturer_id
    limit 1
) as name
from Courses as C1
where
    exists(
        select 1
        from Courses as C2
        where
            C2.lecturer_id=C1.lecturer_id
            and C2.semester='Odd'
    )
    and exists(
        select 1
        from Courses as C2
        where
            C2.lecturer_id=C1.lecturer_id
            and C2.semester='Even'
    )
;

(we’re learning set operations and subqueries, so joins are not allowed)

♥ 3 ↩ 0 💬 2 comments
gilbert189 — 11/20/2025, 3:56:15 PM

I wonder what the huebird is doing right now after the ban

♥ 2 ↩ 0 💬 0 comments
gilbert189 — 11/20/2025, 4:49:29 AM
import operator as op
from functools import partial, reduce

@partial(reduce, op.add)
@op.call
def iterated():
    global ...
    ...

I feel like I’ve acquired some forbidden Python tech

♥ 3 ↩ 0 💬 1 comment
gilbert189 — 11/19/2025, 8:46:19 AM

So I drew some Baba is You characters on one of my uni’s lounge room yesterday

Seems like others have joined in

♥ 9 ↩ 0 💬 2 comments
gilbert189 — 11/17/2025, 10:05:25 AM

I just hinted Luddites without knowing it

↩ repost
gilbert189 — 4/24/2024, 6:40:22 AM

(Useless information: This pose is alluding a panel in a local history comic. Hint: It’s about a tailor and a sewing machine)

♥ 4 ↩ 1 💬 3 comments
♥ 2 ↩ 0 💬 0 comments
gilbert189 — 11/17/2025, 2:29:24 AM

I’m struggling to find a “simple website” for me to do PageRank on (as asked by the problem on my graph algorithm assignment) so I used the 2024 scrape of wasteof I made

I can say that the post with the highest PageRank is https://wasteof.money/posts/62739c27764628df27898724 with a PageRank of 0.015250907165356174… and it’s engagement bait. Greeeat.

♥ 2 ↩ 0 💬 0 comments
gilbert189 — 11/14/2025, 12:03:04 PM

some context for my previous post:

I smuggled Jack (my other laptop) to my boarding house so I can set up dual PC recording (after getting a subpar recording of my playthrough of the secret level in beatblock). I don’t have a capture card, but I can connect Jack and John through Ethernet, so my cunning plan is I would have John stream the screen using FFmpeg (since x11grab is cheap, or at least cheaper than encoding), and have Jack encode it to its hard drive.

Ideally I would just stream the raw video to Jack, but the Ethernet adapter I bought for John is only fast (100 Mbps), and I would need at least a 1 Gbps connection to stream raw video (and that’s with 8-bit color, if I want 24-bit that would raise it to 2.5 Gbps). Even if I got that sorted, I still have to put it on some container, and finding the right one is tricky (which is why I posted that post)

In the end, I ended up having to use hardware-accelerated H.264 encoding (figuring that out is “fun”) with a ludicrous bitrate (to hopefully minimize the compression overhead) which I stream to Jack to re-encode. Now I really wish there’s something like NUT that you can stream.

♥ 3 ↩ 0 💬 0 comments
gilbert189 — 11/13/2025, 2:08:34 PM

what else should I use =’(

♥ 4 ↩ 0 💬 2 comments
gilbert189 — 11/11/2025, 3:07:11 AM

my data structure teammates can’t understand that they have to commit and push often =’(

♥ 3 ↩ 0 💬 0 comments