kasravi
kasravi
You're absolutely right, apart from that weird repeat I have no problem transcribing the music. (Also yes I saw the change glyph sample and was fascinated that you know about...
Yes the decorations I need are not standard. That one is called "riz". It has a two and three dot version (different names)  then there are up, down, up...
I am trying to implement this and came up with some solutions, just wanted to begin the conversation to know what to implement, none seem optimal at the moment. 1....
Hey @rabitt , thanks for the reply. I intentionally used a sound that is relatively easy to detect pitches just by analyzing its FFT. From your reply, I understand that...
let me write some code (assume that ConfigureServices is called runtime at startup) ``` public class RpcService { public static void ConfigureServices(IServiceCollection serviceCollection) { serviceCollection.AddTransient(typeof(RpcService)); } public RpcServiceSubA _rpcServiceSubA; public...
I'm not sure about the definition of custom scope but if you mean something like [here](https://github.com/ninject/ninject/wiki/Object-Scopes) then no. we just have the Transient, Singleton and something like Request. (our DI...
aah, well one way for me is to see what is happening in Ninject's custom scopes and if I can add this kind of scopes to our framework. I will...