Felix Gertz
Felix Gertz
Hi!  I am trying to vertically center the datalabels in my horizontal bar chart, so they are perfectly vertically aligned in the middle of the bar. As you can...
Given this struct: ```JavaScript const User = object({ userId: string(), description: optional(string()), }); ``` creating an object without a description ```JavaScript const user = create({ userId }, User); ``` results...
Hi! I am trying to parse some tcx-files. If there is for some reason no "Activity" in it, then the importer.tcx.tx blows up hard, because a null-check is missing. `...
Hi, I have the following code-block in my application, which is not detected by the parser and thus not included in the resulting .po-file: ```javascript import { ngettext, msgid }...
Hi! I a found a potential problem, which could occur on high traffic sites with the concept of `setLocale`. Does anybody worked around this already? I give you a code...
Hi! This enables to define custom unit names for Humanize.filesize() by adding a 'units' parameter as shown here: ``` Humanize.filesize(1024, 1024, 1, '.', ',', ' ', ['B', 'KiB', 'MiB', 'GiB',...