sjaehn / lv2tutorial

Programming tutorial series for creating LV2 plugins using C/C++ and turtle.
MIT License
64 stars 6 forks source link

TODO #11

Open redtide opened 1 year ago

redtide commented 1 year ago

Maybe issues is not the best place for a list of (possible) additions, maybe could it be a shared project or convert this to a discussion?

sjaehn commented 1 year ago

Lots of ideas. Thanks. I moved the first two to new issues. Easier to handle. The others could be object of a new tutorial series. But I'm not sure if I'm the right one for this.

redtide commented 1 year ago

But I'm not sure if I'm the right one for this.

Me or someone else could contribute something, then you can give it a look and decide if will be something that you can keep for maintenance in the repo. In the worst case can go in a separated, community maintained wiki. IIRC you can enable a wiki for the project in settings and set it writable by anyone/contributors, for example.

sjaehn commented 1 year ago

In the beginning, I thought about also making a video about the build system. Only the Makefile basics. And just a few lines. But still, I think that such a video would become very dry and boring. Therefore I pushed it away. Again and again.

Maybe it would be better to make a text documentation only? And make it specific for building LV2 plugins, with references to already existing tutorials about build systems (in general)?

Contributions are welcome. Feel free, if you (and/or someone else) want to take hands on.

redtide commented 1 year ago

I think technical videos are super boring, not a thing for me, unless you want to show the steps to do in some editor, but it's not the case, so documentation with external references is the way to go. An example with CMake:

redtide commented 1 year ago

I'm working on the splitted documents, to show also them in a website generated from this repo. I see now in README file a lots of inline links (which are not surrounded by < and > like in standard markdown, so not usable in other parsers) instead of references. Maybe some are OK to keep inline, so just adjust them, from:

See video: https://the-possibly-loooooong-ugly-url-video-link

to

See video: <https://the-possibly-loooooong-ugly-url-video-link>

if not

[See video on YT](the-possibly-loooooong-ugly-url-video-link)

or, eventually some others, making them readable from a text editor:

[See video on YT][video001]

some (much) more content here...

and at the end of the README:
[video001]: the-possibly-loooooong-ugly-url-video-link

ideas? Will follow a PR