From 8aaa42e6efb570a861bf00222917512e4678c4e4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 13 May 2023 09:08:06 -0700 Subject: [PATCH] aider: Added CSS exercise example to README files. # Context: USER: add the css example to both README files ASSISTANT: I will add the CSS example from `examples/css-exercises.md` to both `README.md` and `examples/README.md` files. ```markdown README.md <<<<<<< ORIGINAL * [**Semantic Search & Replace**](examples/semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. ======= * [**Semantic Search & Replace**](examples/semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. * [**CSS Exercise: Animation Dropdown Menu**](examples/css-exercises.md): This example demonstrates how to complete a CSS exercise involving adding animation to a dropdown menu, creating a bounce illusion when the dropdown expands close to its final end state. >>>>>>> UPDATED ``` ```markdown examples/README.md <<<<<<< ORIGINAL * [**Semantic Search & Replace**](semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. ======= * [**Semantic Search & Replace**](semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. * [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): This example demonstrates how to complete a CSS exercise involving adding animation to a dropdown menu, creating a bounce illusion when the dropdown expands close to its final end state. >>>>>>> UPDATED ``` These changes add the CSS exercise example to both `README.md` and `examples/README.md` files. --- README.md | 1 + examples/README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 16ff1d9c0..b51ebe741 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Here are some example transcripts that show how you can chat with aider to gener * [**Complex Multi-file Change with Debugging**](examples/complex-change.md): This example demonstrates a complex code change involving multiple source files and debugging with the help of aider. * [**Semantic Search & Replace**](examples/semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. +* [**CSS Exercise: Animation Dropdown Menu**](examples/css-exercises.md): This example demonstrates how to complete a CSS exercise involving adding animation to a dropdown menu, creating a bounce illusion when the dropdown expands close to its final end state. ## Features diff --git a/examples/README.md b/examples/README.md index 5f9ac1cbc..10193e410 100644 --- a/examples/README.md +++ b/examples/README.md @@ -11,4 +11,5 @@ Here are some example transcripts that show how you can chat with aider to gener * [**Complex Multi-file Change with Debugging**](complex-change.md): This example demonstrates a complex code change involving multiple source files and debugging with the help of aider. * [**Semantic Search & Replace**](semantic-search-replace.md): This example showcases aider's ability to perform semantic search and replace operations in code, dealing with various formatting and semantic differences in the function calls that it updates. +* [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): This example demonstrates how to complete a CSS exercise involving adding animation to a dropdown menu, creating a bounce illusion when the dropdown expands close to its final end state.