Skip to content

Instantly share code, notes, and snippets.

View lekankoku's full-sized avatar

Olamilekan(Lekan) Koku lekankoku

  • Berlin,Germany
View GitHub Profile
@lekankoku
lekankoku / webdev_online_resources.md
Created May 1, 2019 05:23 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@lekankoku
lekankoku / star-wars-planets.html
Created April 20, 2022 08:40 — forked from richard-flosi/star-wars-planets.html
Web Component using Custom Element, Shadow DOM, fetch, async/await, and the Star Wars API
<html>
<head>
<script>
customElements.define("star-wars-planets", class extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
}
static get observedAttributes() { return ["loading", "planets"]; }