Learning Tracks
Learning Tracks are designed for practice, exploration, and staying connected as AI continues to evolve.
Notes & Downloads
Short written materials you can revisit or keep as reference.
Download
Live / Stream
Occasional live sessions or replays focused on practice.
Coming soon
From Practice to Perspective
Short articles and practical notes will appear here over time.
async function handleSignOut() {
try {
if (typeof sb !== 'undefined') {
await sb.auth.signOut();
}
window.location.href = '../signin.html';
} catch (error) {
console.error('Sign out error:', error);
window.location.href = '../signin.html';
}
}