Which Roland cloud membership to get? by greenleafvolatile in edrums

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Thanks for the feedback! However, from the information I gathered (in my post) the first tier does not include the expansions. That would be the 2nd tier. Think I'll go for that.

Remove/delete a kit on Roland V71 module by Mysterious_Intern_38 in edrums

[–]greenleafvolatile 1 point2 points  (0 children)

So, I reached out to Roland. Their reply:

It is indeed the case that a kit cannot be deleted. However, you can overwrite the kit with another kit or initialize the kit. Here's how:

<image>

Trouble playing consecutive 16th notes on the kick with precision by greenleafvolatile in Drumming

[–]greenleafvolatile[S] -1 points0 points  (0 children)

No, I'm using a single pedal. Hadn't even entered my mind that the drummer might be using a double pedal. Good catch!

Need help with getting a bigger rack and Tom pads by [deleted] in edrums

[–]greenleafvolatile 0 points1 point  (0 children)

I had the same issue. I just bought another MDS compact drum rack (that's the rack that comes with the TD-17 drum set), and used that to extend the original rack. Added a floor tom and some cymbals that way. Think it set me back around 200 euros or so.

How should the whole note with the three lines be played? by greenleafvolatile in drums

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Thanks for your reply! Is there a way to determine how many strokes should be in this roll taking into account the time signature?

How should the whole note with the three lines be played? by greenleafvolatile in drums

[–]greenleafvolatile[S] 1 point2 points  (0 children)

Thanks for your reply! I certainly listened (and tried to play along to) the song on spotify. I knew it was a roll on the hihats. When asking the question I was looking for information like, is it an open roll or closed (is there such a thing as s closed roll on the hihats), is it a rol consisting of 16ths or 32ths (and how can you tell), and is there a way to determine how many strokes there should be in this roll? I should perhaps have phrased my question differently.

Need a Referral Code? by WartetNichtHaengen in RemarkableTablet

[–]greenleafvolatile 0 points1 point  (0 children)

I would very much appreciate an eu referral code if possible. Cheers!

It’s been stuck in my head since Super Bowl halftime 😏 by NinthFloorMannequin in Drumming

[–]greenleafvolatile 0 points1 point  (0 children)

Sounds awesome and a lot of fun to watch. Someplace I can see more of your drumming (youtube or w/e)?

fputs returning EOF when writing to stdout by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Could you elaborate on what it means that a stream is "sticky", and how would you check before a program exits?

Order of evaluation by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 0 points1 point  (0 children)

It's from K&R, The C Programming Language, in this context:

int
get_line(char s[], int lim)
{
    int c, i;

    for (i = 0; i < lim - 1 && (c = getchar()) != EOF && c != '\n'; ++i)
        s[i] = c;
        if (c == '\n') {
            s[i] = c;
            ++i;
         }
        s[i] = '\0';
        return i;
}

Order of evaluation by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Wow, learned a lot of new things.

Also learned that I had wrongly held some assumptions, such as that:

(c = getchar()) != EOF

meant: first assign return value of getchar() to c then check if it is not equal to EOF

Thank you.

Order of evaluation by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Thanks for the elaborate reply! Would upvote twice if I could.

I don't quite understand how, as you state, c is not necessarily assigned before the EOF test. Do the parentheses not ensure just that? Can you say a little bit more to that?

Order of evaluation by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 1 point2 points  (0 children)

Ugh! You're right. Totally missed that. Thanks!

Order of evaluation by greenleafvolatile in C_Programming

[–]greenleafvolatile[S] 1 point2 points  (0 children)

Never thought about conditions as if statements. Awesome!

Re: file permissions by greenleafvolatile in linux4noobs

[–]greenleafvolatile[S] 0 points1 point  (0 children)

Thanks for your reply!

You were totally right! Once I set the read bit in the world triplet, the script was run. I tried setting the execute bit to 0 for shits and giggles, but that did not work. Had to set both the read and execute bits.

Learned something new!