Georg Meyer

Results 11 comments of Georg Meyer

> * Ability to configure NameID Format > Some IdPs requires specifying a NameID Format I'm currently started to use the new SingleLogout feature from `5.6.0` and it looks like,...

Hey @crazyjackel, I've developed a quite a collection of extension methods for binding observables to VisualElements. It's nothing fancy, but it does the job well in my opinion. Would you...

@Kaiymu: Sorry for answering back so late. I finally managed to extracted my binding extensions and put them into a gist: https://gist.github.com/scho/6ec3f30653119b3856b1a9edfd5b0b7b

@crazyjackel: Sure, the implementation could be improved. It's written to fit out project best and it does not claim to be a general solution for everyone. Regarding the click events:...

@crazyjackel: Sounds like a sensible decision to have a dedicated packe for the extensions. Do you plan to publish it on the asset store or here on Github?

@crazyjackel: The MVVM looks interesting, it's a bit similar to what we use, but our's is rather basic (see https://gist.github.com/scho/d737ec33aa3b5b1e7fc8e04990d866d2). Any reason why not using Zenject for DI?

Using `UniRx.DisposableExtensions.AddTo` helps in this case.

There is a helper method for removing the handler: `UniRx.DisposableExtensions.AddTo`. You use it like this: ``` protected void Start() { SomeModel.OnEventObservable().Subscribe(value => ...).AddTo(this); } ``` So when the Monobehaviour is...

I ran into a similar issue. I've set `INFLUXDB_DB`, but no database was created. There was an issue with the special characters not being properly escaped. In my case, the...

Changing the URL in line 90 in `index.ts` from `https://001-iz.impfterminservice.de/assets/static/its/vaccination-list.json` to `https://002-iz.impfterminservice.de/assets/static/its/vaccination-list.json` fixed the issue for me.