| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome to my public developer log — a space where I document my daily progress, learning, and projects in software engineering, AI, and development tools.
You can visit the live site here: 🔗IntScription
devlog/
├─ _config.yml # Jekyll configuration
├─ _layouts/ # Jekyll layout templates (default/note)
├─ _includes/ # Shared snippets (e.g., head-custom.html)
├─ assets/ # Static assets
│ ├─ css/main.scss # All custom styles (theme, archive, etc.)
│ └─ js/ # JS for theme toggle + typing effect
├─ logs/ # Daily devlog entries (YYYY-MM-DD/index.md)
├─ archive.md # Archive page (year dropdowns with month lists)
├─ index.md # Main page (typing effect landing)
├─ scripts/ # Python helpers (front matter, nav, lint, wiki, recent)
└─ _site/ # Built output (generated by Jekyll; safe to ignore)
Give each entry a real title: in its front matter, e.g.:
---
layout: default
permalink: /logs/2026-03-20/
title: Frontend Frameworks & Build Tools Explained
---Without it, the title defaults to blank and both the homepage's "Recent Devlog Entries" list and the archive page fall back to the generic label "Devlog" — fine for one entry, useless once there are dozens of same-looking date links.
bundle install
bundle exec jekyll serveThen visit http://localhost:4000/devlog/ in your browser.
The scripts/ folder contains Python automation tools:
fix_navigation.py and update_recent.py run automatically via the pre-commit Git hook. The other scripts are run manually as needed.
| Back | FazBrowse Home | New Git URL |