You added a rainbow!
A few off the top of my head: Shirobako. Space Dandy. Samurai Champloo. Ghost in the Shell: SAC.
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:
- Learn how to start and stop programs from Python scripts. This can be done with the built-in
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. - Learn how to write a simple program that can respond to HTTP requests in Python. There are a number of libraries like tornado, flask, cherrypy, etc. that can do this. Pick one, read the documentation, and write a tiny page that allows you to submit a form and then trigger an action on the server in response to an HTTP POST. You should be able to interact with it by pointing the browser on your computer to
localhost
(possibly plus a port) or from on your LAN by putting the IP of your computer into the address bar. - Figure out how you're going to organize the entries you want to be able to load. You could just do something trivial like putting the files in known folders and running
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.) - Generate a web page based on that data collection. I recommend using templating -- e.g. with mustache, or jinja, etc. Basically you write some HTML-like text that lets you indicate places to fill in data from your program and it will do the conversion of symbols like
<
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. - Set up some security (e.g. a simple log in system) and polish it up as much as you care to do.
Good luck and have fun!
I don't recognize the main dish or dessert -- beyond being some sort of pudding presumably with blueberries and something else on top.
What are they called?
A fairly vocal portion of lemmy is AI-hostile, and even for the people who aren't outright hostile to it, it can be annoying at times -- AI content does tend to drown everything else out when it's permitted, so making a community explicitly for it would probably work better.
lemmy.dbzer0.com might be a good place to host a community specifically for exploring AI generated music if you're interested in running one. That instance is explicitly open to AI gen and already has several image gen communities, but I don't think they have a music gen community yet. (Double check though before making one in case I just missed it.)
There's some notable differences with numbering -- e.g. lakh, crore, and where to put commas when writing large numbers.
I might be interested from the audience side depending on the specific content that gets posted. I like Let's Plays -- particularly blind runs.
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.
Lots of characters in the background of this one -- e.g. Rider, Saber, and Tohsaka from Fate/Stay Night, Astro Boy, etc. I'm not sure who the characters are on the front of the cart (where it says この before being cut off) or directly behind Konata's bags though.
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