

Potluck - Selling Themes × Which Browser Should Devs Use? × Where Do You Keep 2FA Codes? × Remix vs Svelte Kit × Getting Unstuck from Tutorial Hell
4 snips Feb 16, 2022
The hosts dive into selling HTML and CSS themes, exploring the pros and cons of templates. They debate which browser—Chrome or Firefox Dev—is best for web developers. Strategies for securely storing 2FA recovery codes are also discussed. The conversation shifts to the competition between Remix and Svelte Kit. Plus, they tackle the common struggle of tutorial hell, offering practical tips to break free. Expect engaging anecdotes sprinkled throughout, making for a lively and informative discussion!
AI Snips
Chapters
Transcript
Episode notes
import.meta Explained
import.meta
is an object used to attach metadata to JavaScript modules.- Its primary use is within newer build tools, like Vite, and it's becoming more common with ESM modules.
Selling Themes: Manage Expectations
- Consider selling HTML and CSS themes if you enjoy that type of work, but be prepared for effort.
- Wes Boss tried selling on ThemeForest without success due to his design skills.
nav vs menu
- Use the
<nav>
tag for navigation in HTML; the<menu>
tag is experimental and not widely supported. - While
<menu>
offers semantic value,<nav>
is the established standard for website navigation.