Profile for hikari

Header for hikari
Avatar for hikari
Display name
Kanbaru 🌟 (one hikari of too many)
Username
@hikari@noyu.me
Role
admin

About hikari

Bio

from another world; anime girls on the internet who are terrible at playing guitar and slightly less bad at programming; EN/SV/DE/日本語

Stats

Joined
Posts
18721
Followed by
1560
Following
200

Recent posts

I am very pleased to announce the release of touchHLE v0.1.1 🎉

Among other improvements, we have a new supported app. This is the first release with code contributors other than me, thanks everyone!!

Download and more info: https://github.com/hikari-no-yume/touchHLE/releases/tag/v0.1.1

Video: https://www.youtube.com/watch?v=SV7XrA4oNjM

See disclaimers on the site.

Open thread at this post

someone asked me whether they could contribute code to touchHLE that’s written using ChatGPT

well, the copyright issue means that’s a hard no.

but if it weren’t for that: I mean, if you can stand behind every line of code as if you’d written it yourself, I don’t really care if you, your headmate, your cat, or the gods themselves through divine revelation wrote your code.

…but I doubt that you really can stand behind the code like that if you didn’t write it yourself. at least not without expending nearly as much effort as it would have taken to write it.

Open thread at this post

When I need to find a minimum time, minimum screen co-ordinate, etc, I often find myself writing Rust code like this:

if let Some(new) = new {
    current = Some(current.map(|i| i.min(new)).unwrap_or(new));
}

Is there a better way to do this? Even if it just covers the inner part (the case where new.is_some()), I’d love to know.

Open thread at this post