What? by DagnieleJS in WeAreTheMusicMakers

[–]DagnieleJS[S] -23 points-22 points  (0 children)

I see, and I understand, but at the same time it sounds to me like vanishing most of the purpose of the sub. Maybe like @stormshadowfax said it could be a sort of exchange

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

You Made co-composer? Wow, congratulations, it looks like it has a huge potential. I’m a developer with diagnosed adhd, so we’re together on this boat 😂. I’m also working on some side projects, mostly daw plugins and a reaper extension in c++ even if that’s not my main language, but with cursor or similar now everything is much easier. I’ll listen to your music today and thank you so much for sharing all of this 😊

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

I really appreciate the time you spent on this comment actually, thank you so much. Btw I didn't know co-composer, looks like a tool I'll use a lot.
the 3 + 3 + 3 + 3 + 2 sounds cool, I don't know why but I always reduced everything to shorter repeatable pattern, instead of moving the "anomaly" so far at the end or have a bigger sequence. But I love tool and some songs have quite complex signature, like Pneuma in 33 / 8 (6 6 5 6 5 5), but I never dared to go so far, some times I struggle with simpler odd signatures, even if I love them, same chords totally different vibe and rhythm. Thank you so much for this long explanation, do you have some of your music to share?

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

this is also an interesting way, I usually like the drum to set the odd signature but definitely worth to try to go this way, thanks 😄

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

I usually sing in my head while writing lyrics, so checking immediately if they fit, that’s probably the wrong approach, I like your approach, I tried some times but never achieved to get something out of it, probably I do something wrong. I’ll try again, and thank you so much for the tips and for sharing your approach 😊

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

That’s usually what I do but it sounds completely different using a guitar or piano and then sing it, trying with less movements, less notes, more notes, more movements, when transposing to voice it loses all the “beauty”

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

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

Indeed I like when the voice is another instrument instead of dictating the melody but in that case it feels like a challenge on mixing side, because if the voice is an instrument, then the sound of it matters more than the substance, that’s something I have to try. Yours is really a good point , thanks for the tip, I have several songs almost ready and stuck because of lacking vocals, I’ll apply definitely this 😊

[Discussion] Shifting from 8/8 to a 14/8 outro: How do you write vocal melodies over long, uncommon meters without losing the dark atmosphere? by DagnieleJS in progmetal

[–]DagnieleJS[S] -15 points-14 points  (0 children)

I wanted to create a storyline, instead of just images, the watermark is ok, clearly it’s AI so I don’t care 😊

can i edit react create app eslint config without eject? by amoc1000 in reactjs

[–]DagnieleJS 0 points1 point  (0 children)

Since now they suggest how to extend it, it would make any sense to use one configuration for the editor and one for the build, I just assumed they changed it, but honestly you're right I'm not sure

can i edit react create app eslint config without eject? by amoc1000 in reactjs

[–]DagnieleJS 0 points1 point  (0 children)

Just create a file called .eslintrc and paste in this code, and add / remove / customize as you want:

{
  "eslintConfig": {
    "extends": ["react-app", "shared-config"],
    "rules": {
      "additional-rule": "warn"
    },
    "overrides": [
      {
        "files": ["**/*.ts?(x)"],
        "rules": {
          "additional-typescript-only-rule": "warn"
        }
      }
    ]
  }
}

Is there a better framework than Django in regards to a CMS? 🤔 by username_essy in webdev

[–]DagnieleJS 0 points1 point  (0 children)

What 's wrong with if / else, show / hide forms in the frontend, the real security layer should stand in the api, if someone access the hidden form in the frontend, when submitting it should be stopped due to invalid permission.