ZILtoid1991

joined 1 year ago
MODERATOR OF
[–] ZILtoid1991@lemmy.world 8 points 5 hours ago (2 children)

Use LibreOffice and some more independent cloud services!

[–] ZILtoid1991@lemmy.world 6 points 1 day ago (1 children)

The Bart, The!

[–] ZILtoid1991@lemmy.world 25 points 1 day ago

How can I send him even more money?

 

It also obscures any licensing issues one might have.

[–] ZILtoid1991@lemmy.world 19 points 1 day ago (1 children)

Miscarriage. If you're in the USA, apply for refugee status in another country.

[–] ZILtoid1991@lemmy.world 4 points 1 day ago

So is let in some languages. In Rust, you have to constantly opt out from immutability with let mut, which makes writing more procedural code feel like you're fighting with the compiler, and otherwise I don't really see the rationale behind full functional coding. I only had a bug caused only once by unwanted mutation, the hardest part fixing it was to learn the proper use of my debugger tool.

[–] ZILtoid1991@lemmy.world 4 points 1 day ago (1 children)

Good, now invent a keyword for variables you don't want to declare the type.

auto. Also in D, you only need const if you don't want to specify a type for a constant, the compiler automatically inferres it to you.

Function declarations can be easily decyphered from context, no problem.

[–] ZILtoid1991@lemmy.world 2 points 1 day ago (1 children)

Or certain transphobic acts of violence.

[–] ZILtoid1991@lemmy.world 14 points 1 day ago (2 children)

Is there any parody porn about TSA? I want to masturbate to it. As long as it's not too noncon (like TSA in real life), I don't really care about the details (I'm ok with any gender, large insertions/fisting, etc.).

[–] ZILtoid1991@lemmy.world 10 points 2 days ago (4 children)

Would that actually be true? Someone should try to render a flat earth, for science, shits, and giggles.

[–] ZILtoid1991@lemmy.world 8 points 2 days ago (1 children)

Hungary's hate speech laws are also now ineffective, for similar reasons.

[–] ZILtoid1991@lemmy.world 3 points 2 days ago

While still a bad person, what Gaiman did limited to a number of people, not a number of countries, also his work is actually good, not half-baked garbage only held up by nostalgia.

 

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?

 
 
 
 
 

Note: I'm aware the sides are not perfectly parallel, this was the best I could do on my phone.

 
view more: next ›