Christian d'Heureuse

Results 16 comments of Christian d'Heureuse
trafficstars

I found an ugly way to change the standard font. Example to change the font size to 9 pt: ``` const StylesXform = require("exceljs/lib/xlsx/xform/style/styles-xform.js"); const origStylesXformInit = StylesXform.prototype.init; StylesXform.prototype.init =...

@arthurschreiber Does this mean that the next Tedious release will have a dependency on the package `sspi-client` and require `node-gyp`?

I understand that it's only a first step and welcome the idea. But it's tricky that the `this` variables within the `State` classes refer to the connection object and not...

I also get this error, and can reproduce it, when I create and load a new database with h2-1.4.196 and then open it with h2-1.4.200. But when I first open...

It can be done by capturing the `focusin` event of the `document` element and redirecting outside focus changes to the modal `DIV` element. ``` function startFocusJail (focusRootElement) { $(document).off("focusin.focusJail"); $(document).on("focusin.focusJail",...

@SangeethaSanthoshKumar You have to pass a `HTMLElement` to `startFocusJail()`, not a jQuery object. startFocusJail($('#id_div')[0]);

I have the same error with BFStopControllerBlockList and used the following patch to solve it: old: `public function getModel($name = 'blocklist', $prefix = 'bfstopmodel')` new: `public function getModel($name = 'blocklist',...

It's probably easier to add an `exclude` option to prevent traversing of unwanted directories. see #74 see [How to exclude directory from reading?](https://github.com/mrmlnc/fast-glob#how-to-exclude-directory-from-reading) for fast-glob

I can use the viewer with the Nordic nRF5340 after patching the file pynrfjprog: old: ``` def connect(snr=None, jlink_khz=50000): nrf = NrfAPI(NrfDeviceFamily.NRF52) ``` new: ``` def connect(snr=None, jlink_khz=40000): nrf =...

> there's multiple rowstreams which each will come with their own column definitions. A simple solution would be to use the following structure for the items returned by the iterator:...