From 26bacb906dbc8e7fcd4fb288aa5eb27d4b86709d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 22 May 2023 09:51:20 -0700 Subject: [PATCH] copy --- README.md | 4 +--- examples/README.md | 10 +++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 12fb76e51..60f765a96 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,7 @@ Here are some example transcripts that show how you can chat with `aider` to gen * [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Creating a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. -* [**Pong Game with Pygame**](https://aider.chat/examples/pong.html): Creating a simple Pong game using the Pygame library, with customizations for paddle size and color, and ball speed adjustments. - -* [**2048 Game Modification**](https://aider.chat/examples/2048-game.html): Exploring and modifying an open-source javascript repo for the 2048 game, including adding randomness to the scoring system. +* [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Exploring and modifying an open-source javascript repo for the 2048 game, including adding randomness to the scoring system. * [**Complex Multi-file Change with Debugging**](https://aider.chat/examples/complex-change.html): A complex code change involving multiple source files and debugging. diff --git a/examples/README.md b/examples/README.md index 072d6fda1..757b8b3da 100644 --- a/examples/README.md +++ b/examples/README.md @@ -5,20 +5,20 @@ In the chats, you'll see a varity of coding tasks like generating new code, edit * [**Hello World Flask App**](hello-world-flask.md): Creating a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. -* [**Pong Game with Pygame**](pong.md): Creating a simple Pong game using the Pygame library, with customizations for paddle size and color, and ball speed adjustments. - -* [**2048 Game Modification**](2048-game.md): Exploring and modifying an open-source javascript repo for the 2048 game, including adding randomness to the scoring system. +* [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Exploring and modifying an open-source javascript repo for the 2048 game, including adding randomness to the scoring system. * [**Complex Multi-file Change with Debugging**](complex-change.md): A complex code change involving multiple source files and debugging. +* [**Create a Black Box Test Case**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). + * [**Semantic Search & Replace**](semantic-search-replace.md): Updating a collection of function calls, which requires dealing with various formatting and semantic differences in the various function call sites. +* [**Pong Game with Pygame**](pong.md): Creating a simple Pong game using the Pygame library, with customizations for paddle size and color, and ball speed adjustments. + * [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): A small CSS exercise involving adding animation to a dropdown menu. * [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function. -* [**Create a Black Box Test Case**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). - * [**Editing an Asciinema Cast File**](asciinema.md): Editing escape sequences in an `asciinema` screencast file. ## What's happening in these chats?