Skip to content

Latest commit

 

History

History
114 lines (95 loc) · 3.03 KB

File metadata and controls

114 lines (95 loc) · 3.03 KB
layout default
title Thoughts Collection
nav_order 6
description Personal reflections, experiments, and ideas
permalink /thoughts/

Thoughts Collection

Personal reflections, experiments, and ideas related to AI tools and usage.

Categories

🤔 Reflections

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 %}
{% else %}

No reflections available yet. Share your insights!

{% endif %}

🧪 Experiments

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 %}
{% else %}

No experiments available yet. Document your experiments!

{% endif %}

💡 Ideas

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 %}
{% else %}

No ideas available yet. Share your ideas!

{% endif %}

All Thoughts

{% 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" }}
{% else %}

No thoughts available yet. Start by adding some thoughts to the _thoughts directory!

{% endif %}

Contributing

To add a new thought:

  1. Create a new markdown file in the _thoughts directory
  2. 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...