Skip to content

Instantly share code, notes, and snippets.

View ponceleon's full-sized avatar
👁️‍🗨️

Ponceleón ponceleon

👁️‍🗨️
View GitHub Profile
@ponceleon
ponceleon / README.md
Created March 21, 2019 21:39 — forked from CodingDoug/README.md
Copying Data from a Google Sheet into Firebase Realtime Database in real time via Apps Script
@richard-flosi
richard-flosi / star-wars-planets.html
Last active October 2, 2024 01:09
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"]; }