mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00

# Aider chat conversation: USER: the dates aren't being shown as dates on the x-axis. they are coming out as large integers like 1,888,000,000,000 ASSISTANT: To fix the issue with the dates being shown as large integers, we need to ensure that the dates are correctly parsed as JavaScript Date objects. We can achieve this by modifying the data processing part of the script. Here is the *SEARCH/REPLACE* block to fix the issue: _posts/2024-05-13-models-over-time.md ```markdown <<<<<<< SEARCH x: new Date('{{ row.released }}'), ======= x: new Date('{{ row.released | date: "%Y-%m-%dT%H:%M:%S" }}'), >>>>>>> REPLACE ``` This change ensures that the date string is correctly formatted for JavaScript's `Date` object.
2 KiB
2 KiB
title | excerpt |
---|---|
LLM code editing skill over time | A comparison of LLM code editing skill based on the release dates of the models. |