Connor McCarroll
Connor McCarroll
I did some fiddling today and managed to construct some BSON objects and insert them into a DB successfully. `BSON.from_json` accepts a JSON string and returns a BSON object. This...
You can get all documents of a collection (as BSON objects) like this: ```crystal docs = [] of BSON collection.find(BSON.new).each do |doc| docs
@AshtakaOOf While trying to check for those issues I found a few more, so it seems I still have more work to do on this.
I've come back after a few weeks off this project and suddenly it wasn't working. I did some investigation and found that when I merged [this commit](https://github.com/gorilla-devs/GDLauncher/commit/1d17f1287a5b5ba32a9caf7b8aab557421e0e7d0) caused a total...
Other than MP3, what other formats are likely to be supported for the local player? I have some .XM and .MOD chiptune tracks that would be cool to play but...
Ah okay, that's a good thing to know, I think you can set up a local web server and do it from there (so it would be http://localhost/test.mp3 or something)
> I need motivation to write a "normal" patch @Nyaa97 Would it not have been faster to type `git diff` and paste the result here instead of typing out all...
I have found a workaround. HTML-escaping one or both of your angle brackets will cause them to show normally. For example, instead of `` you should write `<text>` or `<text>`....
> Clear everything with `docker system prune -a`. Despite completely reinstalling Docker, this issue still occurred for me, yet pruning fixed it. Very strange.
After more investigating, it appears that the `connection` property is not present on `req` when this is run through Deno. Simply changing this line ``` var isRequestedOverHttps = req.connection.encrypted ||...