Skip to content

Instantly share code, notes, and snippets.

View VaughnVernon's full-sized avatar

Vaughn Vernon VaughnVernon

View GitHub Profile
@VaughnVernon
VaughnVernon / LLM-Shift-On-Duty-Off-Duty-Rotations.md
Last active May 11, 2025 08:34
Using an LLM to Determine Shift On-Duty, Off-Duty Rotations

Using an LLM to Determine Shift On-Duty, Off-Duty Rotations

I experimented with an LLM to help me plan a fictitious work schedule. This experiment was to learn how much the LLM could correctly assume about the unsupplied details and how it would succeed with an increasing number of explicitly stated details.

What I found is that the LLM gave the impression that it is built with a stronger leaning to please than it was in being accurate. Yet, this impression could be simply my personal take and not fact. It could be that the LLM is just not very "intelligent" at all, and only follows the lead of the prompts to take another stab at correctness without having much of

@VaughnVernon
VaughnVernon / CONTENTS.md
Last active November 20, 2024 10:10
Hexagonal / Ports and Adapters Is Just This Simple
@VaughnVernon
VaughnVernon / gist:5382404
Last active December 16, 2015 05:09
Shows How Grails Could Take Form Input and Dispatch to Domain Model Aggregate Method
planBacklogItem.gsp
-------------------
<g:form action="product:planBacklogItem" >
<fieldset class="form">
<g:hiddenField name="product:productId" value="${product.productId}"/>
<g:textField name="summary" value=""/>
<g:textField name="story" value=""/>
<g:textField name="storyPoints" value=""/>
...
</fieldset>