Also built https://linkstacks.io (a bookmark manager).
Travels the world, debugs his way through airports.
```typescript
const response = await fetch(giftcardPath);
const svg = await response.text();
const doc = new DOMParser().parseFromString(svg, "image/svg+xml");
this.appendChild(doc.documentElement);
```
```typescript
const response = await fetch(giftcardPath);
const svg = await response.text();
const doc = new DOMParser().parseFromString(svg, "image/svg+xml");
this.appendChild(doc.documentElement);
```