stefanpl
stefanpl
What's the reasoning behind `parse()` returning `undefined` when given invalid input (e.g. '1 secnd')? In my opinion, an error will be much easier to detect and feels syntactically more appropriate...
This is what I'm trying to achieve: ```typescript interface A { a: string; b?: number; c?: number; } type B = PickOptionalKeys; // B should be { b?: number |...
Hi, I'm trying to create a bind mount to persist mariadb data on my host. Having this in my mariadb service definition in docker-compose.yml: ``` volumes: - ./db-volume-data:/var/lib/mysql ``` I...
Hi, in the readme it says: > There are some great carousels (like slick) that do not have real React implementations. […] not merely a wrapper for some jQuery solution...
If you remove the `title` inside `properties.namedEnum.items` from the `test/e2e/arrayOfEnum.ts`, an error will be thrown: ``` TypeError { message: 'Cannot read property \'endsWith\' of undefined', } > src/generator.ts:182:21 ``` This...
The [link to the docs](https://docs.prodo.dev/) doesn't work right now. ``` This site can’t be reached docs.prodo.dev unexpectedly closed the connection. ``` Not only does this stop you from reading the...
Hi, is this still being maintained? Wanted to get this going with the current alfred version (4.3.2), connecting to `https://gitlab.com/api/v4/` with a private access token, but it's not showing me...
For some reason, there is no `TS` icon indicating that the npm package has typings: https://www.npmjs.com/package/fuzzysort This always had me not installing it 😮 Where'd it go? 🤔
I would expect this package to work without having to provide a config file. [Sensible defaults](https://stevebennett.co/the-power-of-sensible-defaults/) should be applied when there is no such file – instead, the program will...
Hi 👋 I'm trying to run this role against a Ubuntu 22.04.4 LTS instance: ```yaml roles: - role: gantsign.oh-my-zsh become: true tags: - shell_setup users: - username: nwon oh_my_zsh: theme:...