I know; they should not be allowed to do that.
Interests: programming, video games, anime, music composition
I used to be on kbin as [email protected] before it broke down.
I know; they should not be allowed to do that.
Mozilla’s non-profit status needs to be revoked.
I’m a huge fan of otome visual novels, but I don’t think it’s something that many here would appreciate lol
FYI: [email protected]
Definitely! I usually name my files starting with YYYY_MM_DD
(which makes it easy to sort by the date I started making the file), a number for which entry it was on that day (1,2,3,4… plus sometimes a letter too if I want to keep multiple drafts), and a few words if I have other details I want to remember. e.g. “transcribe_song_by_artist
” or things like “cont_YYYY_MM_DD-entry
” when I continue working on a piece from a long time I ago. Sometimes I add a title after that too if I wanted to give the piece one.
Deliberately copy snippets of a work you’re interested in as a study – e.g. transcribe it – and experiment with elements you find interesting (rhythm, chords, synths, effects, whatever) in small test pieces to make sure you understand what’s going on. Let the ideas stew for a while and then much later try to use the techniques you learned in a real piece.
That’s what I do anyway.
If you want to improve significantly, go read someone else’s code and modify it. Try to fix a bug in a program you use, add a feature you want that doesn’t exist already, or even just do something simple for the sake of proving to yourself that you can do it – like compiling it from source and figuring out how to change some small snippet of text in a message box. Even if you don’t succeed, if you put in a serious effort attempting it, you will almost certainly learn a lot from trying.
Edit: changed wording to try to be clearer
Google puts telemetry in the default keyboard app. Let that sink in for a moment.
I have a few of those, and while the ones I bought have worked out fine so far, I think it’s worth cautioning people that they are annoyingly loud doing basic operations.
[email protected] – people mostly post fan art these days, but discussion of anything anime-adjacent (anime/manga/VN/hentai/etc.) is explicitly allowed too. In the past I’ve posted amusing/interesting stills from shows I was watching, custom image composites, screenshot comics, and things like that.
[email protected] – “A community for sharing relatable real-life situations depicted in anime.”
I’m not sure if I’ve ever fallen in love with a completely imaginary dream person, but I did dream about my ex once years and years after we broke up. I don’t remember what I dreamed about exactly, but I do remember waking from it. The happiness fading as the realization set in that it was all a dream – I was by myself in bed and none of it had been real. I’m usually pretty good at dealing with solitude, but that moment… that was the most intense loneliness I think I’ve ever felt.
I wrote something like this before for academic researchers to load data sets on display walls by using their cellphones. I approached it by building a simple website. When the user logs in, they’d see a table of entries (from a directory listing on a shared file server that they could drop their data sets onto) and could click a button that made a form post to the server which caused it to run whichever programs were needed to load the data set they wanted (or run a couple of other handy commands – like turning the monitors on/off, etc).
You can do something like that too in Python if you want:
subprocess
library. If you know how to launch the programs you want from the command line, it shouldn’t be too hard to figure out how to do it from Python by reading the documentation. It will take some more effort to figure out how to interact with it (e.g. to stop it from user input) without blocking your script, but this can be done.localhost
(possibly plus a port) or from on your LAN by putting the IP of your computer into the address bar.os.listdir
, or something more involved like tracking the entries with a spreadsheet or database or JSON file that lets you associate custom metadata with each entry (like a custom name to show or an icon to display or when it was last launched, etc.)<
into <
that are needed for HTML output and also repeat patterns using entries from lists you provide to build the rows of tables and such for you.Good luck and have fun!
You might find writing guides relevant to your interests. For example, “How to Write Science Fiction and Fantasy” by Orson Scott Card contains some details about how the author came to write Hart’s Hope and other novels. “Scene & Structure” by Jack Bickham might also be interesting – I don’t remember discussion of specific books in it, but it might scratch a similar itch for how-it’s-made style content.
Some books also contain introductions/forewords/afterwords with details about how the book was written. A bunch of OSC’s novels (like some editions of Ender’s Game) come to mind specifically – I read those back when I was curious about maybe trying to become a writer, so that’s the most prominent example in my mind, but I’m sure there are others. I’ve also seen translations of a number of works where the translators include really long introductions explaining some of their choices – and sometimes criticize earlier translations.
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’s been down for a while, and having serious problems for months.
There is a general visual novel community at [email protected] 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 [email protected] – but it seemed completely dead the last time I looked. You might be able to revive it though if you want to try.
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?
Now imagine if to buy a car you had to tolerate cameras and other forms of tracking your telemetry just to get to work and feed yourself.
Sorry to be the bearer of depressing news, but that’s basically already happening in new cars.
https://jacobin.com/2024/03/car-spying-insurance-surveillance-data/
I wonder what cuil things it will say if you start asking questions about hamburgers instead…
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&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
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…
Best way to fix that is to join in and post something!
Otome isn’t my personal interest (my sexuality goes the other way), so I don’t have much to say myself, but I’ve seen Elevator7009 trying to build a community first on kbin.social (before that site died) and then on kbin.run (before it died) and now there and I’d like to see her efforts succeed.
If you’re not interested, feel free to ignore it, but if you’d like a place on Lemmy for discussion, there are at least a few people there who’ve been trying their damnedest to get something going.