Fredrik Söderström

Results 61 comments of Fredrik Söderström

The error I get is: PHP Warning: is_dir(): open_basedir restriction in effect. File(/etc/pki/tls/certs) is not within the allowed path(s): (/dev/null:/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/usr/bin/:/usr/) in - on line 803 PHP Stack trace: PHP 1....

Hi! This sounds like a super useful feature, the API cached has makes it so easy to use, having it persist to disk as well would be great. As for...

For my use case I would be more interested in serializing/deserializing by writing the struct binary data to files directly, as this is only for caching, I would not be...

Any updates on ESM compatability?

I created a pull request at https://github.com/vibe-d/vibe.d/pull/2399 I'm new to both D and detailed knowledge about BSON so by all means make sure that it makes sense before assessing this....

@s-ludwig I see, make sense deprecating first, I'll stay on my fork for now. It's such a nice design in that it can take the base structs and automatically map...

No that was not intended, I'm experimenting on my fork for needs I have in my project. I'll see if I can clean it up. 6 feb. 2020 06:42:24 thaven...

It seems like I found a workaround by modifying `eslintConfig` in `package.json`: ```json "eslintConfig": { "extends": [ "@open-wc", "prettier" ], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" } }, ``` When...

I added the workaround on a branch in the setup repo for reference https://github.com/tirithen/open-wc-private-fields/blob/workaround/package.json#L47

I'm getting similar errors: ``` ➜ example git:(master) ✗ make mkdir -p android/jni/lib CC="/home/tirithen/.go/src/github.com/xlab/android-go/example/toolchain/bin/arm-linux-androideabi-gcc" \ CXX="/home/tirithen/.go/src/github.com/xlab/android-go/example/toolchain/bin/arm-linux-androideabi-g++" \ CGO_CFLAGS="-march=armv7-a" \ GOOS=android \ GOARCH=arm \ GOARM=7 \ CGO_ENABLED=1 \ go build -buildmode=c-shared...