Lukas Rieger

Results 115 comments of Lukas Rieger

As this seems to be the main thread for symlink discussions, I'd like to add my use case: I am using restic on Android through termux. For convenience, termux creates...

Could it be the warning? ![image](https://user-images.githubusercontent.com/4236651/88207193-b9ce2900-cc4f-11ea-9227-4a40de1b838d.png)

I think the warning is printed to STDERR, so the check ``String.isNullOrEmpty res.Result.Error`` will fail ... I could just skip lines that start with ``(node:#number#) Warning``? -------- If I don't...

There's also the AKS managed identity which eliminates the need for a manual service principal, though I'm not sure which permissions you need for that: https://docs.microsoft.com/en-us/azure/aks/use-managed-identity

Workaround: ```f# [] type Camera = | [] FirstPerson | [] ArcRotate | [] IsometricTopDown ```

I think Fable does some extra work to track Some None: In the Fable Repl ```f# let someNone = Some None console.log(someNone) ``` ![image](https://user-images.githubusercontent.com/4236651/88038407-76d45e80-cb46-11ea-8512-2f16fcb7c58c.png)

V3 / Q are the first replaced types to use member fields instead of member properties, so I had to modify FSharp2Fable a little bit. When you have some time,...

after overriding equality, it now fails with this weird error: ![image](https://user-images.githubusercontent.com/4236651/62488760-6a37e880-b7c5-11e9-93ad-859c8b881b18.png)

Ok, splitting the file into two so that there actually _is_ a Vector3.js helped a bit, but equality still doesn't work: ![image](https://user-images.githubusercontent.com/4236651/62489239-8d16cc80-b7c6-11e9-954e-dd496a55a0a7.png)

It somehow still accessed the old file that I had split, a ``git clean`` later it now fails with ![image](https://user-images.githubusercontent.com/4236651/62489604-702ec900-b7c7-11e9-8a52-d6bb6057322e.png) So some code expects a file ``Vector3.js``, some other code...