| layout | default |
|---|---|
| title | Thoughts Collection |
| nav_order | 6 |
| description | Personal reflections, experiments, and ideas |
| permalink | /thoughts/ |
Personal reflections, experiments, and ideas related to AI tools and usage.
Insights and learnings from AI tool usage.
{% assign reflections = site.thoughts | where: "thought_type", "reflection" %} {% if reflections.size > 0 %}
-
{% for thought in reflections %}
- {{ thought.title }} - {{ thought.description | default: "No description available" }} {% endfor %}
No reflections available yet. Share your insights!
{% endif %}Testing new approaches and techniques.
{% assign experiments = site.thoughts | where: "thought_type", "experiment" %} {% if experiments.size > 0 %}
-
{% for thought in experiments %}
- {{ thought.title }} - {{ thought.description | default: "No description available" }} {% endfor %}
No experiments available yet. Document your experiments!
{% endif %}Future improvements and potential projects.
{% assign ideas = site.thoughts | where: "thought_type", "idea" %} {% if ideas.size > 0 %}
-
{% for thought in ideas %}
- {{ thought.title }} - {{ thought.description | default: "No description available" }} {% endfor %}
No ideas available yet. Share your ideas!
{% endif %}{% assign all_thoughts = site.thoughts | sort: "date" | reverse %} {% if all_thoughts.size > 0 %}
{% for thought in all_thoughts %} {% endfor %}| Title | Type | Date | Status | Description |
|---|---|---|---|---|
| {{ thought.title }} | {{ thought.thought_type | default: "General" }} | {{ thought.date | date: "%Y-%m-%d" | default: "N/A" }} | {{ thought.status | default: "N/A" }} | {{ thought.description | default: "No description available" }} |
No thoughts available yet. Start by adding some thoughts to the _thoughts directory!
To add a new thought:
- Create a new markdown file in the
_thoughtsdirectory - Use the following front matter template:
---
title: "Your Thought Title"
thought_type: "reflection|experiment|idea"
date: 2024-01-01
status: "draft|active|completed|archived"
related_tools: ["tool1", "tool2"]
description: "Brief description of this thought"
---
Your thought content goes here...
## Background
Context and background information...
## Analysis
Your analysis or findings...
## Follow-up Actions
What to do next...