Edit docs/index.html and update the GitHub repository information:
// Find this section near line 495
const GITHUB_USER = 'kody-w';
const REPO_NAME = 'Nov17';
This is already configured correctly for your repository.
main and /docs folderGitHub will build and deploy your site. This usually takes 1-2 minutes.
Your site will be available at: https://kody-w.github.io/Nov17/
The portfolio automatically discovers and displays experiments from your repository!
When you complete a new experiment:
Name it with the date format: YYYY-MM-DD_experiment_name.py
"""
Brief description of what this experiment does
"""
or use a comment:
# Brief description of what this experiment does
git add experiments/2025-11-20_your_experiment.py
git commit -m "Add experiment: Your Experiment Title"
git push
The portfolio will automatically:
No manual updates to HTML needed!
To change the color scheme, edit the CSS variables in docs/index.html:
:root {
--primary-blue: #0078d4;
--teal-accent: #40e0d0;
--dark-blue: #005a9e;
/* ... other colors ... */
}
Update the header links to point to your blog, GitHub, or other sites:
<div class="header-links">
<a href="https://kodyw.com" class="header-link" target="_blank">Blog</a>
<a href="https://github.com/kody-w" class="header-link" target="_blank">GitHub</a>
<a href="#" class="header-link" id="repo-link">View Repository</a>
</div>
Edit the About section content directly in the HTML to describe your specific focus areas and goals.
Once deployed, you can link to your portfolio from kodyw.com:
Check out my [code experiments portfolio](https://kody-w.github.io/Nov17/)
Or add a menu item, footer link, etc.
main branch and /docs folderindex.html is in the docs/ folderGITHUB_USER and REPO_NAME are set correctly in docs/index.htmlexperiments/ folder<style> sectionEvery time you add a new experiment:
experiments array in docs/index.htmlTo add Google Analytics or similar:
</head> in docs/index.htmlTo use a custom subdomain like experiments.kodyw.com:
CNAME file in docs/ with your domainSee: https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site