I was getting error messages when I first saw your post and checked a few minutes ago, but it looks like it’s back online now.
Interests: programming, video games, anime, music composition
I used to be on kbin as e0qdk@kbin.social before it broke down.
I was getting error messages when I first saw your post and checked a few minutes ago, but it looks like it’s back online now.
It’s the Esperanto word for “forge”, according to the FAQ.
According to their FAQ, they say it’s supposed to be pronounced /forˈd͡ʒe.jo/ and provide an audio clip: https://forgejo.org/static/forgejo.mp4
To me that sounds like “for-jay-oh”.
I used to see bots posting comments that were copied verbatim from Hacker News – which was really obvious because of the “[1]” style footnoting they do on HN that rarely made sense on reddit where you could just use markdown to add descriptive links inline.
I reported a whole bunch of those, but no one ever seemed to do anything about them, and I eventually gave up. Been over a year since I’ve interacted significantly with reddit though, and I’m similarly in the “who knows what they’re doing now” camp. Wouldn’t surprise me if there are bots reposting comments scraped from lemmy to karma farm on reddit now too.
I had similar symptoms and in my case, I had a sleep disorder, an anxiety disorder, depression, vitamin D deficiency, and other problems.
Go call your doctor and explain your symptoms to them in detail. Your problem is the type that should be medically evaluated by a professional.
Not likely. Mozilla had $1,321,539,000 in total assets – roughly half a billion dollars of which was in “cash and cash equivalents” – in their last (2022) audited financial statement: https://assets.mozilla.net/annualreport/2022/mozilla-fdn-2022-fs-final-0908.pdf
deleted by creator
Yes. There are virus vector vaccines already in existence: https://en.wikipedia.org/wiki/Viral_vector_vaccine
For example, adenovirus vector vaccines were created for COVID-19: https://en.wikipedia.org/wiki/COVID-19_vaccine#Adenovirus_vector_vaccines
Those are non-replicating though.
Live attenuated vaccines also exist – which can replicate – but those work by using a weakened/modified version of the original harmful live virus the vaccine is intended to protect against: https://en.wikipedia.org/wiki/Attenuated_vaccine
Oral polio vaccine is a well-known example.
Back before kbin fell off the internet it had a really neat experimental “collections” feature that would let you make named groups of communities. Collections could be used either privately or made public so other people could subscribe to your curated feed on a topic. The owner could update the collection as needed (e.g. adding or removing communities/magazines as they changed over time).
It’s one of the kbin features I miss most on lemmy.
Does anyone know if mbin ever got a copy of that? I know they forked off before it was added to kbin, but I don’t know if it ever got integrated later. (I don’t see it from a quick glance at moist and fedia, but I haven’t dug into the dev history.)
Everything I’ve set in Settings is forgotten: Default Listing reverts to All, Default Post Sort reverts to Hot, and so on.
mlmym (the “old” interface) stores its front-end specific settings in your browser via cookies and local storage. The way it’s implemented works for the most part and probably makes the front-end simpler, but has some downsides like not retaining your choices between logins. There’s an issue open for this in the bug tracker: https://github.com/rystaf/mlmym/issues/104
I’m not sure why it forces a logout periodically even when you’re using it regularly though. (I mean, the cookies are probably not being updated and just expire eventually – but I don’t know if that was a deliberate choice or not.) It might be a good idea to open an issue for this?
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.
[…] 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.
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?
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:
ffmpeg
-i
flag) – a video file, and two audio files.-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.-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.
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…
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.
Did you flip a power switch on the PSU at some point, perhaps? (Done that one a few times myself…)