kbin account: [email protected]

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

This profile is from a federated server and may be incomplete. View on remote instance

e0qdk ,
@e0qdk@reddthat.com avatar

kbin.social has been totally down for a while. I don't think your posts are actually federating when you post into a kbin.social magazine right now; the votes you are getting are probably from other lemmy.world users only.

e0qdk ,
@e0qdk@reddthat.com avatar

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

There is a general visual novel community at !visualnovels 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 -- but it seemed completely dead the last time I looked. You might be able to revive it though if you want to try.

e0qdk ,
@e0qdk@reddthat.com avatar

[...] 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/[email protected]?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 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.

e0qdk ,
@e0qdk@reddthat.com avatar

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.

e0qdk ,
@e0qdk@reddthat.com avatar

Is this for game consoles only, or would stuff like experimenting with similar looking (low-poly) art techniques on modern computers be acceptable there as well?

e0qdk ,
@e0qdk@reddthat.com avatar

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.

Why don't more filtering systems enable sorting by least viewed/visited, including for older pages/material?

Sometimes what I'm interested in may be more specific or niche, but a lot of search engines and filtering systems don't seem to provide a way to drill down to those results. What may be some reasons behind that?...

e0qdk ,
@e0qdk@reddthat.com avatar

That requires turning every read into a write -- which is slow/expensive generally. (That might not matter much for Google -- who try to record everything you ever do already, basically -- but it matters for everyone else.)

Also, it tends to promote spam and offensive niche content. kbin's got a sidebar that tries to promote random low activity communities and posts, for example, and it's almost uncanny how much crap it pushes up...

e0qdk ,
@e0qdk@reddthat.com avatar

Can you run the DOS software under DOSBox?

e0qdk ,
@e0qdk@reddthat.com avatar

DOSBox runs on both Linux and Windows (and probably Mac too?); I was suggesting it since you might be able to replace the dying DOS computers with a modern system and just launch the legacy system as an application under it. (You might be able to do the same with a VM as well, but DOSBox came to mind first and may be easier to setup and distribute.)

Just a thought. If it's not useful, feel free to disregard.

e0qdk ,
@e0qdk@reddthat.com avatar

Personally, I prefer it when people do one of the following:

  • upload the file to catbox.moe and link it here (for clips up to 200MB)
  • upload the file directly to their lemmy instance (if their instance allows it)
  • self-host it on their own web server (with no bullshit crappy JS interface, please -- just give me the file; I'll play it with VLC if it doesn't work in my browser)

PeerTube is also a reasonable choice -- although I don't like its UI very much.

e0qdk ,
@e0qdk@reddthat.com avatar

Right now I'm mostly using mlmym (the "old" interface on most instances that support it) because it doesn't require JS for basic viewing.

It's kind of buggy though, unfortunately -- things like user history show up as a complete jumble, for example. :(

One of these days, I'll probably get fed up enough to go write my own interface and set things up exactly how I want them to work... but I've got too many projects already so I'm just living with it for now.

e0qdk ,
@e0qdk@reddthat.com avatar

I haven't had much issue with lag, generally, but I don't get notifications any more -- which is probably the most pressing issue. (I have to remember to manually check once in a while after I post since the envelope doesn't light up.) That might be an issue with reddthat being on a recent beta version of lemmy -- I don't know.

We do have lemmy-ui-next over here too. Thanks for reminding me about that. I've been meaning to poke at it a bit.

e0qdk , (edited )
@e0qdk@reddthat.com avatar

You can open any profile with multiple pages worth of posts or comments on old.reddthat.com and it's jumbled. Even my own profile is jumbled: https://old.reddthat.com/u/e0qdk

The first page is mostly comments I made two weeks ago plus a thread from today and some very old threads. The second page has comments I made earlier today and during the past week. The third page starts with my most recent comment and then has a bunch of older comments.

The exact order might change after posting this, but my own recent comments mostly being on page two has been pretty consistent for a while.

If I look at a very active user's profile (like MentalEdge's), I see threads from today show up on page three(!) while there are threads from a week or more ago on pages one and two.

I'm not sure what's going on exactly, but it basically makes user profiles pretty useless right now through mlmym.

Edit: I can't even find this comment in my profile, but my other reply (regarding the envelope being fixed in 0.0.43) shows up on page 3.

e0qdk ,
@e0qdk@reddthat.com avatar

That's great to hear!

e0qdk ,
@e0qdk@reddthat.com avatar

Thanks! I'll go ask Tiff about getting reddthat updated later.

BTW, is there a community for discussion of mlmym itself somewhere on lemmy? I can't participate on GitHub, but those aren't the only issues I've found. (e.g. there's also ?format=jpg&thumbnail=96 on non-pictrs links and a text handling issue with angle brackets...)

e0qdk ,
@e0qdk@reddthat.com avatar

I'm having trouble finding an example of the thumbnail issue again right now but I was seeing the pictrs conversion parameters passed to URLs from catbox.moe, i.postimg.cc, and other sources in the CSS for the thumbnail when I reported the issue to Tiff ~3 weeks ago. It's possible that it got fixed/suppressed by another change since then though. (0.0.44 was deployed a few hours ago and I think there may have also been a beta patch bump for the lemmy backend at some point since I reported the issue originally in our local support community.)

I'll let you know if I see it pop up again.

For the text handling issue, I was seeing text like "<thread title> by <username> in <community>" (i.e. "<thread title> by <username> in <community>" if it still happens) getting misinterpreted as raw HTML instead of being escaped. (i.e. <!-- raw HTML omitted --> was showing up in the HTML output for the page.)

You may recognize that text as the pattern for a recently fixed bug in the user profiles; I found the text handling issue while trying to explain the other issue to Tiff a few weeks ago.

Will edit this comment immediately after posting to let you know if I still see the text issue.

EDIT: I still see the text issue show up in this comment. https://old.reddthat.com/comment/10370610

e0qdk , (edited )
@e0qdk@reddthat.com avatar

I ran into an example of the thumbnail issue again today -- this time on a post from kbin: https://old.reddthat.com/post/19193476

The thumbnail looks like this in the HTML:

<div class="thumb">
  <a class="url"
     href="https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg"
     >
    <div  style="background-image: url(https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg?format=jpg&amp;thumbnail=96)"></div>
  </a>
</div>

Note that it's making a request to kbin.social with ?format=jpg&thumbnail=96 parameters in the CSS -- which results in the full image being loaded since kbin doesn't run pictrs.

The versions in use on reddthat (according to the settings page) are:

lemmy: 0.19.4-beta.7

mlmym: 0.0.44

e0qdk ,
@e0qdk@reddthat.com avatar

Privacy-focused people of Mbin and Lemmy, do any of the third-party YouTube viewers support spherical video?

No idea, but if you put the video file up for direct download you can view spherical video in VLC. I'm not sure what the exact requirements are to make it recognize it, but I know it can do it. (I'd guess it probably just looks for a copy of whatever metadata that YT wants you to tag the video files with.)

e0qdk ,
@e0qdk@reddthat.com avatar

There's some notable differences with numbering -- e.g. lakh, crore, and where to put commas when writing large numbers.

e0qdk ,
@e0qdk@reddthat.com avatar

I wonder if this will actually cause an increase in the number of security vulnerabilities and breaches as there's now a fairly obvious way for employees to penalize their bosses financially for being assholes...

e0qdk ,
@e0qdk@reddthat.com avatar

I might be interested from the audience side depending on the specific content that gets posted. I like Let's Plays -- particularly blind runs.

e0qdk ,
@e0qdk@reddthat.com avatar

I spent a while looking thanks to your post and only found stuff from 2022 as well. My Chinese is basically non-existent though. (I can pick out a word here and there from knowing some Japanese, but that's about it.) Someone who knows Chinese might have better luck digging.

I did find this file from 2022 (14999x6982 -- ⚠️ 100+ MB PNG): https://upload.wikimedia.org/wikipedia/commons/8/8c/The_geologic_map_of_the_Moon_at_1-2.5M_scale.png

Associated information (and preview): https://commons.wikimedia.org/wiki/File:The_geologic_map_of_the_Moon_at_1-2.5M_scale.png

I assume that's the one you're referring to from 2022?

All the news stories just have low-res previews.

Is there a preview that looks different from this? I don't see a preview at all (just a picture of people at some sort of presentation) in your link -- but my browser might just not be loading it if there is one. (I generally block scripts.)

Edit: tweaked wording slightly

When was the last time you answered a Lemmy or Reddit post/thread that was more than five months old?

I think there should be some incentive for that, like make those kinds of comments a spotlight or something. Maybe make a community called "late replies" that showcases the best such replies, or have a rule saying they grant free karma (in Reddit's case).

e0qdk ,
@e0qdk@reddthat.com avatar

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.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • kbinchat
  • All magazines