Mathias LANG

Results 614 comments of Mathias LANG

Is the issue still here ? I was under the impression that Meson was used by a few users, and thus working relatively well. I know nothing about it myself,...

@Cogitri : Thanks for testing! Do you think we could set up a CI so it stops breaking ? I'd be happy to merge any PR in that direction, or...

@s-ludwig : This is itching me. I'm thinking of starting the (quite long process) of transitioning it, by first slightly changing `vibe-core`'s `runApplication` API, then updating all the examples and...

> What do you have in mind? Can this be an additive change? I would have to re-visit the topic, since this issue has been opened a while ago. TBF...

Note: There was a PR for it too: https://github.com/vibe-d/vibe.d/pull/1622

Is that a RDMD bug ? It's a Windows limitation, and `rdmd` correctly informs the user of the failure. I'm tempted to say that we should not try to be...

One effort in that direction: https://github.com/vibe-d/vibe.d/pull/2496

Right, the original reasoning for sending the default parameter is that it might be the default for the client, but not the server. Obviously for nullable, that makes little sense....

```D auto redisDB = connectRedisDB(URL("redis://password:localhost/3?maxmemory=10000000")); ``` Shouldn't that be: ```D auto redisDB = connectRedisDB(URL("redis://:password@localhost/3?maxmemory=10000000")); ```

Look at the example again: You need to have a column before the password (to indicate that the username is empty). This is not Vibe.d specific BTW, it's the standard...