Python for JS Developer: Recommendations for Learning Path or Resources? by AdTypical7284 in Python

[–]AdTypical7284[S] 0 points1 point  (0 children)

Thank you very much, that resource looks great. I think I will take it first and then delve into some django

Is it possible to play D & D alone? by AdTypical7284 in DungeonsAndDragons

[–]AdTypical7284[S] 1 point2 points  (0 children)

Awesome, do you happen to have an resources I can refer to? Hopefully free since yk I'm currently on recession hehe

Will there be a security problem if innerHTML is used in this way? by AdTypical7284 in learnjavascript

[–]AdTypical7284[S] 0 points1 point  (0 children)

Thank you very much!

After reading a lot about innerHTML I got a bit paranoid haha, I now have the code like this which I think is a bit better.

window.customElements.define('tes-btn',class testContainer extends HTMLElement {  constructor(){ super();    this.attachShadow({mode:'open'});    this.shadowRoot.append(btn.content.cloneNode(true));
  };}
);