Mechakhan
Mechakhan
You need to escape any dots in the domain name (`.`) into (`\.`). For example, `example.com` should turn into `example\.com`. Hence the double echo with the sed command.
Do you get "Reverse DNS is not a Valid Hostname" from mxlookup? So do I, I'm pretty sure it is because it tries to check if your IP address resolves...
Just to make sure, your forward DNS points to just your IP address right? Could there be a NAT or firewall or something that updates the public IP address? What...
I was able to build the emulator like this: ```bash mkdir web/build npm install npx asc assembly/index.ts -b web/build/untouched.wasm ``` Don't know if it runs properly though, but it might...
I was able to get around this by editing the Spidermonkey Dockerfile to clone the fork https://github.com/fastly/spidermonkey-wasi-embedding instead of https://github.com/tschneidereit/spidermonkey-wasi-embedding. ~~But for some reason the `runtime.cpp` gets stuck somewhere inside...
I tried adding your suggestion to my project config and also tried adding some more filters just in case, but I am still not able to see that anything was...
What about extractor classes that could be provided to fields and associations? Is that something that is addressed in this PR? https://github.com/procore-oss/blueprinter/blob/b90d251d7098249b6760493a4c414db4ba920c43/lib/blueprinter/field.rb#L11 We are currently using custom extractors to cache...