ZILtoid1991

joined 1 year ago
[–] [email protected] 5 points 8 hours ago (1 children)

Umamusume inclusion when?

[–] [email protected] 7 points 1 day ago

I prefer the term "spite-driven development".

I wrote an SDL replacement but worse after SDL refused to work with audio streams for me even after a week of googling, it took me the same amount to get it work with WASAPI directly as looking up audio streams, instead of the many easymp3playback.dll type solution. Another one week was making ALSA working. At least it's in D, so I have an easier time with development.

I also almost was involved with a YanSim clone development called "Love Letter: My True Feelings", but shit just started to hit the fan (character designer just left), so I decided to not get involved as a coder.

[–] [email protected] 11 points 2 days ago

Reality: Musk added "anti-woke" filters.

[–] [email protected] 12 points 4 days ago

Be careful, you'll upset the "real christians", who will tell you about how this person is a "fake", because Jesus said "love thy neighbor", and all the other things in the Bible "don't count" for some reason.

[–] [email protected] 1 points 4 days ago

Except Apple has better marketing, and is primarily marketed for those who're excited for every tech "innovation".

[–] [email protected] 23 points 6 days ago (1 children)

But sex-ed is sexualizing children!

-- people, who own a large amount of what the writer of the greentext searched for

[–] [email protected] 8 points 6 days ago

Besides them being predators, they also die easier outside. It cost us a lot to learn this lesson.

[–] [email protected] 3 points 1 week ago* (last edited 5 days ago) (1 children)

It's also diminishing returns of investment. The more realistic you want to go, the more work you have to put in. Also more realism will mean certain other things will look even more jarring, so you're having a much higher standard for bugfixes.

[–] [email protected] 23 points 1 week ago

Also

I only voted to drive off of a cliff as a joke. I wanted to trigger those sweet tooth ice cream eaters. I didn't want to die.

Someone told me about people, who regretted eating ice cream. What if you are allergic to milk, amd die from eating ice cream? What if ice cream is a recent creation by to make children and adults addicted to ice cream, to the rest of their lives? Driving off from a cliff is therefore preferable to ice cream, and someone told me only ice cream eaters will die in a fire.

[–] [email protected] 5 points 1 week ago (1 children)

To all the "not true Christian" chanters: Religion is unfortunately way too broad to interpret in many ways, especially christianity, which is filled with many contradictory views. One can just selectively refer to different translations and/or different chapters on the same issue. Jesus was famous for not forgiving child abusers, but the Old Testament has a chapter about "Menstrual Marriage" (allowing adolescent child marriage).

[–] [email protected] 1 points 1 week ago

Extreme disdain for democracy. Some psychopaths want to bring us back before the age of enlightement, while using enlightement or (especially in case of China) post-enlightement ideas to do so, because we citizens are all like badly behaving 12 year olds, who need 24 hour supervision on every day on the week, every month of the year, or we might "go insane" from doing something a psychopathic madman does not want us.

[–] [email protected] 5 points 1 week ago

Predictions: It will be the biggest failure of the franchise, just before a big game industry crash, and will be remembered as "the E.T. of the mid-2020's". Elon Musk and some other MAGA oligarchs will do their best to consolidate whatever remains of the industry into a few and far-right hands.

 
 

It also obscures any licensing issues one might have.

 

At the age of 34, being extremely socially reclusive, and being autistic myself, I don't really think I have any chance of getting a relationship. I also have issues with staying attached to neurotypical/non-autistic people, people that drink alcohol regularly (I was raised by an alcoholic grandmother, you probably can put the two together), also I'm disabled in other ways too, etc.

A lot of people often like to say "ace/aro/demi people just too disappointed/have too high standards". Here I am being so disappointed and probably having way too high standards, yet I still vow for a romantic relationship, and thus often feel lonely from it.

 

I have created a new MIDI format to overcome both the limitations of the current one and the unwillingness of the International MIDI Consortium to develop a MIDI 2.0 file format. So I made my own for my game engine. I even added some primitive scripting features.

But here comes the big problem: now I need to develop an editor. While I created a textual representation of it, which is a weird mix of assembly with Lua influences and essentially musical notes and rhythm as values, but eventually it should have a full GUI editor.

The format so far has the following kind of commands:

  • Flow control commands
  • MIDI emit commands which can be either:
    • Note on and off commands
    • Velocity change (aftertouch)
    • Program change
    • Control change
    • Pitch bend
    • A few other less important commands (SysEx, etc.)
  • Commands for the scripting (Arithmetic commands on writable registers, compare and branch, etc.)
  • The ever important wait command, on which the whole system depends, as it tells the sequencer how much clock cycles have to wait between two commands

I have to process these commands for two display widgets, one displays the notes in a piano roll format, one displays any other commands. However, thanks to the way things work, I usually cannot just process MIDI commands directly. For example, notes are defined by a note-on and note-off event (often with aftertouch), no duration. And then comes editing. And then comes to editing around various wait commands. And then comes to editing around various conditional jump commands.

I started to work on a system that converted and separated each command for display, but it's a bit time consuming, and adds extra complexity. But modifying it a bit and adding a "transpiler" to the two systems would make editing pretty easy to implement. I already added "macro"-like features to the textual representation of the format. Could this work?

view more: next ›