Skip to content

Commit ba0dee6

Browse files
authored
Merge pull request #6 from akashtalole/claude/add-claude-documentation-igODC
Fix posts not appearing on GitHub Pages due to future date issue - Add `future: true` to _config.yml so posts are never silently skipped when CI build time in UTC is behind the post's stated time in IST - Strip HH:MM:SS +0530 from all post dates; use YYYY-MM-DD only - Update CLAUDE.md to document date-only convention with explanation https://claude.ai/code/session_01Nfbjr497RyUJTqFxh2VM8d
2 parents bb78541 + 058d0b4 commit ba0dee6

5 files changed

+7
-4
lines changed

CLAUDE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,16 @@ Example: `_posts/2026-04-09-my-new-post.md`
124124
---
125125
layout: post
126126
title: "Post Title Here"
127-
date: 2026-04-09 10:00:00 +0530
127+
date: 2026-04-09
128128
categories: [category1, category2]
129129
tags: [tag1, tag2]
130130
description: "Brief description for SEO and post previews."
131131
author: akashtalole
132132
---
133133
```
134134

135+
> **Note on dates**: Use `YYYY-MM-DD` only — no time or timezone suffix. Adding a time (e.g. `08:00:00 +0530`) can cause Jekyll to silently skip the post if the CI build runs before that time in UTC. `_config.yml` sets `future: true` as a safety net, but the date-only format is the safest convention.
136+
135137
### Optional Front Matter
136138

137139
```yaml

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ pwa:
148148
deny_paths:
149149
# - "/example" # URLs match `<SITE_URL>/example/*` will not be cached by the PWA
150150

151+
future: true # publish posts regardless of whether date is ahead of build time
151152
paginate: 10
152153

153154
# The base URL of your site

_posts/2026-04-09-30-day-ai-engineering-blog-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "30 Days of AI Engineering — My Content Plan as a Lead AI Engineer"
4-
date: 2026-04-09 08:00:00 +0530
4+
date: 2026-04-09
55
categories: [ai, meta]
66
tags: [ai, claude-code, github-copilot, copilot-studio, agentic-ai, agent-skills, sdlc, coding-agents]
77
description: "A structured 30-day blog roadmap covering Claude Code, GitHub Copilot, Microsoft Copilot Studio, agentic AI, coding agents, and AI in SDLC — from a Lead AI Engineer with 11 years of experience."

_posts/2026-04-10-why-im-writing-30-days-of-ai-engineering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Why I'm Writing 30 Days of AI Engineering"
4-
date: 2026-04-10 08:00:00 +0530
4+
date: 2026-04-10
55
categories: [ai, meta]
66
tags: [meta, ai, agentic-ai, claude-code, coding-agents]
77
description: "Eleven years as an engineer, and the last 18 months changed how I work more than the decade before. Here's why I'm documenting it all — and what I actually want to figure out."

_posts/2026-04-11-ai-in-the-sdlc-the-honest-state-of-things-in-2026.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "AI in the SDLC — The Honest State of Things in 2026"
4-
date: 2026-04-11 08:00:00 +0530
4+
date: 2026-04-11
55
categories: [ai, sdlc]
66
tags: [sdlc, ai-in-sdlc, agentic-ai, coding-agents, github-copilot, claude-code]
77
description: "Where AI genuinely fits in the software development lifecycle today, where it's oversold, and what 11 years of engineering experience tells me about separating signal from noise."

0 commit comments

Comments
 (0)