Moreno Gentili

Results 11 issues of Moreno Gentili

Hi everyone and thanks for this extension to hangfire. It really adds a "wow" factor to background job execution and it is essential in my case since my jobs can...

Hi, I'd like to save recordings in the [MPEG-TS](https://en.wikipedia.org/wiki/MPEG_transport_stream) format (as a single or a series of .ts files). This way I would also be able to stream the recording...

Hi and thanks very much for this library! I'd like to exclude the `console.log` and `console.warn` instructions since they're polluting the console with messages. https://github.com/richtr/NoSleep.js/blob/1d15cc88dd8c1b62fe5b5f910c6ff7396b280d68/src/index.js#L80 A configuration option would be...

Hello there, I'm comparing these two objects: ``` var obj1 = new Projection { Speakers = new [] { new Speaker { Id = 1, Name = "Fizz" } }...

Hello and thanks for such a useful piece of code. Thanks to the samples I managed to implement WebAuthn in no time. However, now I need to take it further...

Fixed an issue in HawkAuthenticationHandler with AuthenticationHeaderValue.Parse which would lead to an exception if IncludeServerAuthorization is set to true and client sends a value for Authorization which is empty, other...

Hi, here's my docsify initialization code: ``` window.$docsify = { name: '', repo: '', basePath: '/docs/', loadSidebar: 'sidebar.md', homepage: 'home.md' } ``` As you can see, I've set basePath to...

I'm sending ADPU commands using the inDataExchange method. The PN532 breakout board is communicating to an Arduino UNO via its SPI interface. Everything worked fine so far but now I'm...

Enhancement

Adds support for extended frames, as described on page 10 of the PN532C106 Application Note. https://cdn-shop.adafruit.com/datasheets/PN532C106_Application+Note_v1.2.pdf#page=10 I changed the _length_ variable mentioned in issue #38 to be a uint16_t, along...

Hi everyone, I'm having an issue with `rerender`. In the `readme.md` file, you provided a sample component options. ``` const myComponentOptions = { data () { ... }, created ()...