Alex Ling
Alex Ling
Thanks for your reply! When testing it I was using an AMD64 host, but I set up QEMU and started an ARM32 Docker container. I then linked the cross-compiled object...
Sure! Here's the Dockerfile I used: ```dockerfile FROM arm32v7/ubuntu:18.04 RUN apt-get update && apt-get install -y git make llvm-8 llvm-8-dev g++ libpcre++-dev libgc-dev libssl-dev libcrypto++-dev libevent-dev RUN git clone https://github.com/crystal-lang/crystal...
Just subclass `HTTPDataResponse`. For example: ```objc // JSONHTTPResponse.h #import #import @interface JSONHTTPResponse : HTTPDataResponse @end ``` ```objc // JSONHTTPResponse.m #import "JSONHTTPResponse.h" @implementation JSONHTTPResponse - (NSDictionary *)httpHeaders { return @{@"Content-Type": @"application/json"};...
Any updates on this? I am having the same issue with Crystal 0.34.0 and the latest version of `crystal-sqlite3`.
Thanks for reporting. Looks like in the latest release build some CSS is missing. Probably an issue with the build process. The intended mobile UI is like this:  I...
That's very strange. Did you see any error messages (from either the web UI or browser console) when loading the page? Normally the response from the API is passed immediately...
> I only have one plug-in, I'll try adding another one and see if it kickstarts the load upon switching to another plugin. Ahh yes that's the issue. I just...
Unfortunately the Crystal compiler does not support static ARM builds (see https://github.com/crystal-lang/crystal/issues/5467) :( Can you mark them as unsupported at this moment? I will be happy to submit a PR...
Haha, I have faith in Crystal! I guess the core team members are just busy with the upcoming v1.0 release. I will leave this issue open and keep an eye...
Linux limits the number of open file descriptors. It looks like some process on your machine (might or might not be Mango itself) is opening a lot of files without...