kbin account: e0qdk@kbin.social

This is my Lemmy alt. I’m about 50/50 between kbin and reddthat these days, but my kbin account is more established. If you’re looking for my older posts, check there.

Interests: programming, video games, anime, music composition

  • 1 Post
  • 17 Comments
Joined 7 months ago
cake
Cake day: November 27th, 2023

help-circle
  • […] male-gazey content. I am 2) a woman extremely disinterested in that.

    I feel some men might also not want to see content focused on games where a big goal is to romance a man as a woman, presented in a femgazey way or a way tailored to our desires even if not sexualized.

    Fair enough. There are a lot of eroge where you play as a women that are absolutely, clearly intended to be played by men though; that part alone isn’t likely to be off-putting, but I can see specific presentation and femgaze heavy works being just as off putting to some guys as malegaze heavy works are to some women. If the audience is mostly straight guys, posting fan art of something like an explicit BL work probably isn’t going to get much positive response, I suppose. :-)

    There’s so little content posted regularly in the visualnovels community though that I feel like anyone actively trying to start discussions there on the subject of VNs would likely be welcomed, but I might be wrong about that. The most successful posts I’ve seen are generally notices about sales and some business news with people occasionally posting memes and such as well.

    If that doesn’t feel right to you though, I get it, and hopefully reviving the other community works out.

    Is the issue that the posts will be frequently inaccessible?

    I don’t think your posts are federating out at all when kbin.social is down – basically only people on your own instance can see it, if I understand how federation works correctly. If you check the view of the community from lemmy.world the last post visible is from a month ago, for example – https://lemmy.world/c/Otomegames@kbin.social?dataType=Post&sort=New – even though I can see on your instance that you’ve started several threads since then. I can’t even load the community from reddthat since it was probably never requested and kbin.social is down currently; it just errors out.

    Does Lemmy have a way to get inactive mods removed and replaced?

    I don’t know. Tagging @Blaze@reddthat.com for suggestions since they’ve been trying to grow the Fediverse for a while and may know how to go about it, if it’s possible.


  • kbin.social’s been down for a while, and having serious problems for months.

    There is a general visual novel community at !visualnovels@lemmy.comfysnug.space which might be a better place to post to. It’s not very active, but I know there are at least a few people around paying attention to it. I might chime in on some threads occasionally if you post there. My tastes are more in line with VNs aimed at the straight-male demographic, but I’m willing to try other VNs beyond that if there is a really good story or novel mechanics or some other non-sexual factor that makes it interesting.

    If that community doesn’t fit your needs, I think there is also !otome_games@lemmy.world – but it seemed completely dead the last time I looked. You might be able to revive it though if you want to try.


  • I was curious, so I did some searches on this topic for you and found these pages:

    The second link in particular notes:

    The reason that things are much easier with all ASCII data is that practically every Unicode encoding in existence maps bytes 0x00…0x7f to the corresponding code points, so byte strings and Unicode strings that contain the same all-ASCII data are basically equivalent, even semantically. What usually trips people up with non-ASCII data is that the semantic meaning of bytes in the range 0x80…0xff changes from one encoding to another.

    But, thinking like a systems programmer again, for many purposes the semantic meaning of bytes 0x80…0xff doesn’t matter. All that matters is that those bytes are preserved unchanged by whatever operations are done. Typical operations like tokenizing strings, looking for markers indicating particular types of data, etc. only need to care about the meaning of bytes in the range 0x00…0x7f; bytes in the range 0x80…0xff are just along for the ride.

    So the trick for beating Python 3 strings into submission is to put in encoding and decoding calls where you need to, choosing a single-byte encoding that doesn’t mutate 0x80…0xff. There are many of these; most of the Latin-{1…6} sequence (aka ISO-8859-1…10) is has this property. What you do not want to do is pick utf-8 or any of the multibyte Asian encodings. Latin-1 will do fine; in fact it has an advantage over the others in memory consumption, which we’ll describe below.

    Whether depending on this is actually correct or not is beyond me, but it seems like people have actually been using that pass-through behavior in practice and put it into things like Python2 -> 3 migration guides.

    The first link suggests that the seemingly undefined ranges are valid as C0 and C1 control codes which may be why it doesn’t throw errors.



  • I don’t know how to do it with KDE’s tools, but on the command line with ffmpeg you can do something like this:

    ffmpeg -i video_track.mp4 -i audio_jp.m4a -i audio_en.m4a -map 0:v -map 1:a -map 2:a -metadata:s:a:0 language=jpn -metadata:s:a:1 language=eng -c:v copy -c:a copy output.mp4
    

    Breaking it down, it:

    • runs ffmpeg
    • with three inputs (-i flag) – a video file, and two audio files.
    • The streams are explicitly mapped into the result, counting the inputs from 0 – i.e. -map 0:v maps input 0 (the first file) as video (v) to the output file and -map 1:a maps the next input as audio (a), etc.
    • It sets the metadata for the audio tracks -metadata:s:a:0 language=jpn sets the first audio track (again counting from 0…) to Japanese; the second metadata option sets the next audio track to English.
    • -c:v copy specifies that the video codec should be copied directly (i.e. don’t re-encode – remove this if you DO need to re-encode)
    • -c:a copy specifies that the audio codec should be copied directly (i.e. don’t re-encode – remove this if you DO need to re-encode)
    • output.mp4 – finally, list the name of the file you want the result written into.

    See documentation here: https://ffmpeg.org/ffmpeg.html

    If you need another language in the future, I think the language abbreviations are the three letter codes from here: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes – but I’m not certain on that.



  • My old username from reddit and HN was already taken and I couldn’t think of anything else I wanted to be called so I just picked some random characters like this:

    >>> import random
    >>> ''.join([random.choice("abcdefghijklmnopqrstuvwxyz0123456789") for x in range(5)])
    'e0qdk'
    

    I have that literally in my kbin profile, but it’s not on my reddthat one. (I think I tried to copy it there originally when I set up the account but ran into some issue with Lemmy’s UI – been long enough that I forget what exactly.)


  • you might check out Trackless if you like interactive fiction

    Thanks. I’ll check it out.

    BTW, I thought of another game that might be of interest to you. Have you seen Not for Broadcast? It’s an unusual game where you play as the controller in the studio switching between multiple video feeds of actual actors presenting the news on TV. You get to make choices about what to show, what to cut, and what ads to play in your broadcast – which affects the world in an exaggerated fashion. The game timeskips to show you how things play out over the years. There’s some distractions that make it a bit more gamey than a VN but you can turn most of them off if they’re too annoying, I think.



  • I think the term would be “necrobump”

    That’s from old school forums where posting to a thread bumped it back to the top of the feed and thus thrust old info prominently into everyone’s view again. You won’t get that same bump effect with most sorts on Lemmy. (“New comments” sort might work like that though? I’m not sure exactly how that’s handled.)

    otherwise everyone has moved on

    It’s pretty rare to get much of a response even after just 24 hours or so – not just in terms of comments, but even for upvotes. I think after that point, posts are usually so far down people’s feeds that almost no one sees it any more. That probably also discourages most people from replying since basically no one will see it. (Maybe the poster of the thread or comment you’re replying to will see it, but probably almost no one else will if it’s more than a day or so old.)

    Some people do dig through community archives and/or user profiles – particularly after a new thread is posted – and they’ll occasionally upvote old posts, but they very rarely comment.



  • e0qdk@reddthat.comtoAsklemmy@lemmy.mlCan you live without YouTube ?
    link
    fedilink
    arrow-up
    12
    arrow-down
    1
    ·
    2 months ago

    I quit YouTube along with reddit last summer. I don’t use alternate interfaces. I haven’t found a replacement for most of the niche content I liked to watch there – and yes, that sucks.

    I’ve mostly been watching offline content (like DVDs and things I downloaded years ago) when I want video entertainment, and doing other stuff with my free time.

    You might think that’d mean more time playing games given my interests, but I’ve found I’m a lot less enthusiastic about playing through games if I can’t watch an LP or two of it afterwards. So, I’m actually playing (and also buying) less of those than I used to too.