

141.52
141.52
Yes, MK11 is a good game, and I don’t really play fighting games (normally i’d just go thru every characters and try out their flashy moves).
But MK11’s story mode is really good. The story is nothing groundbreaking, but it’s really fun and entertaining, and it shuffles the characters you play as, and that’s the strength of the recent Mortal Kombat games over other fighting games.
Also, if you want to save money on fighting games, always wait a year or two, there’s always an ultimate edition with all DLC characters in it, that’s probably selling at half price.
It doesn’t make sense for casual fighting game fans to buy fighting games day one anymore.
Nope, (very often) it’s more like a community service, a passion project, a group project. The main thing is the source is open. Sometimes it’s not funded, sometimes there’s government funding, sometimes there’s patreon, sometimes there’s special commercial license but free for personal use, etc.
It’s just the source that’s open.
Crunch time at game development, that’s probably akin to slave labor.
Edit: Yeah, what’s the terms and agreements about the AI stuff on Github? It’s still less of a slave labor, but more like straight up stealing / plagiarizing other people’s stuff. I say it’s still less of a indentured servitude, mainly because devs can just move their repository to say Gitlab. It’s still shitty that it’s being used for AI stuff (I need to start committing awful buggy code, or just straight up uploading recipes but written under .js format)
I dunno, I normally use my bash script + ffmpeg to convert batch flacs to mp3s
#!/bin/bash
cd "${1}"
for subdir in *; do
cd "${subdir}"
for input in *.flac; do
echo ${input%.*}
ffmpeg -i "${input}" -ab 320k -map_metadata 0 -id3v2_version 3 "${input%.*}.mp3" && rm "${input}"
done
cd ..
done
Then i’d just run my script.sh [directory that contains flac]
you might want to remove && rm "${input}"
if you don’t want it to delete your flac files automatically.
it’s a library / command line software to download youtube videos.
There’s more information here
Basically install the tool, and run yt-dlp [put your youtube links here without the bracket]
to download the video.
I haven’t directly used the official command line for years though, so you might want to read the documentations.
And that’s because, I wrote my own terminal-ui using their python API, for personal usage and requirements (you need to know at least some python or knowledge using the terminal to use it)
It’s hard, I’ve been trying to use peertube, but it’s still kinda lacking. Most creators are still sticking with YT
On the other hand, I download youtube videos I want to watch using yt-dlp. That’s been working well for me for the past 5 years or so.
There’s a site called mangadex that has scanlations translated in many different languages, you can use the filter on advanced search to narrow it down to manga translated to Spanish (ES) or Spanish (Latam)
It’s also quite a good way to learn foreign languages (open up chapters translated to English and other foreign languages and read them like a polyglot book)