Johannes Müller
Johannes Müller
While working on porting this site to Jekyll (https://github.com/crystal-lang/crystal-book/issues/261#issuecomment-582609390) it became evident that the content in this book needs to be restructured. The current navigation structure ([SUMMARY.md](https://github.com/crystal-lang/crystal-book/raw/master/SUMMARY.md)) is very confusing....
The `{before,after,around}_{each,all}` spec hooks should be mentioned in the guide. Changes are pending in https://github.com/crystal-lang/crystal/pull/9090
It would be nice to have automated integration tests with at least the major driver implementations (the ones mentioned in the readme). This would help us identify issues that only...
In some use cases, you simply want to send a number of SQL commands to the server and have them executed in bulk. A basic example for this would be...
Executing a query on the same connection while a previous result set is still open can lead to weird errors because of unexpected data is sent. It's hard to figure...
I was thinking about a reusable API for profiling code to see which parts of an application take the most resources. Metrics should be at least execution time, maybe even...
It would be great to have a shard with more elaborate ways to find and filter files than `Dir.glob`. It should be able to query for example all files with...
I get the following error running linkchecker 9.3 GUI on Windows for a https request: Error: SSLError: hostname 'XXX.net' doesn't match 'YYY.net'. Seems like it messes up Server Name Indication....
The readme and API docs show which options exist to configure `LogBackend`. But it's not clear what they mean or what the default behaviour is. From reading the code I...
The semantics of the crystal property have changed in #395 and the result is largely fine. But the implicit semantics of `crystal: "x.y.z"` being equivalent to `crystal: "~> x.y, >=...