Marc Skov Madsen

Results 435 comments of Marc Skov Madsen

I will also submit the Notebook ASAP and we can iterate on it. But maybe it would be an idea to write down and formulate the purpose and target audience...

Started a Promo Notebook PR here https://github.com/holoviz/param/pull/487. Feel free to comment or contribute.

I am perfectly confident you doing an iteration on the "draft version" I made. For me the purpose is to make sure 1. Not so strong Pythonistas understand if Param...

Opened new and revised PR here https://github.com/holoviz/param/pull/488

Hi @ea42gh . I took a look at video 2. I think its close to perfect. The two comments I have are 1. Personally I miss the intro music. I...

The bird is there in file https://drive.protonmail.com/urls/F3SK7AEPG4#CJ5JZ6fNo8Ds around 4:14. I don't think it's a big problem.

Right now what is added to the top most parent class first is the one shown first in the list. Maybe a `precedence` will override this. But `precendence` is seldom...

Hi @tomas16 If you provide `A()` to `super().__init__` then it will work ```python import param as pm class A(pm.Parameterized): value = pm.Parameter(default=123) class B(pm.Parameterized): a = pm.Parameter() def __init__(self): super().__init__(a=A())...

Agree on instantiate. That name has always confused me.

According to https://github.com/microsoft/pyright/issues/2855 we would probably have to add the constructors manually all over the place or align the api of Param with the api of dataclasses. ![image](https://user-images.githubusercontent.com/42288570/149318574-6c414627-37ec-4d58-8047-02f91cba2bef.png)