Vittorio Monaco
Vittorio Monaco
I would also be quite interested in such a function 👍
+1. To me it's not clear how to specify inheritance in the .nss I tried writing SuperClass:Subclass in the .nss, but it doesn't even get parsed.
I got it to work, by specifying classes as independent in the .nss and then expliciting the inheritance in code. Example: ``` H3Item { font-name: @primaryFontName; font-size: @h3FontSize; font-color: @darkGreyColor;...
any news on this?
Ok, I investigated and there are no assumptions to be made on the cache directory, so I'm not sure your emptyCache implementation is a LRU one. To do that, you...
I also included a NSArray category in this pull request, so that now you can correctly JSON encode NSArrays in POST requests
Because if I understand correctly how it works, even if I write my own handler I have to return a response in the closure and I don't have one yet....
Maybe I didn't make myself clear enough, but that's what I meant with "asynchronous". When I get a request, I have to perform _some stuff_ before I know what I...
Hi @glock45 I appreciate your reply, but writing semaphore-based request handlers is not an option at the moment. Thanks anyway!
Not sure what `DB.ExampleAsyncCall.find` is supposed to be, but I would use an established pattern like Promises and Futures, so the handler closure only takes the request and returns a...