From f076ae286e043daaa351f7ff3225ea2df93ad62d Mon Sep 17 00:00:00 2001 From: Anton Osika Date: Sat, 17 Jun 2023 12:06:50 +0200 Subject: [PATCH] Add benchmarks --- .gitignore | 3 +++ benchmark/file_explorer/main_prompt | 2 ++ benchmark/image_resizer/main_prompt | 2 ++ benchmark/timer_app/main_prompt | 2 ++ benchmark/todo_list/main_prompt | 2 ++ 5 files changed, 11 insertions(+) create mode 100644 benchmark/file_explorer/main_prompt create mode 100644 benchmark/image_resizer/main_prompt create mode 100644 benchmark/timer_app/main_prompt create mode 100644 benchmark/todo_list/main_prompt diff --git a/.gitignore b/.gitignore index 07cd6d5..bbb9079 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,6 @@ Thumbs.db # this application's specific files archive + +# any log file +*log.txt diff --git a/benchmark/file_explorer/main_prompt b/benchmark/file_explorer/main_prompt new file mode 100644 index 0000000..20b3002 --- /dev/null +++ b/benchmark/file_explorer/main_prompt @@ -0,0 +1,2 @@ +Create a basic file explorer CLI tool in Python that allows users to navigate through directories, view file contents, and perform basic file operations (copy, move, delete). + diff --git a/benchmark/image_resizer/main_prompt b/benchmark/image_resizer/main_prompt new file mode 100644 index 0000000..dc1821f --- /dev/null +++ b/benchmark/image_resizer/main_prompt @@ -0,0 +1,2 @@ +Create a CLI tool in Python that allows users to resize images by specifying the desired width and height. Use the Pillow library for image manipulation. + diff --git a/benchmark/timer_app/main_prompt b/benchmark/timer_app/main_prompt new file mode 100644 index 0000000..a30ea11 --- /dev/null +++ b/benchmark/timer_app/main_prompt @@ -0,0 +1,2 @@ +Create a simple timer app using HTML, CSS, and JavaScript that allows users to set a countdown timer and receive an alert when the time is up. + diff --git a/benchmark/todo_list/main_prompt b/benchmark/todo_list/main_prompt new file mode 100644 index 0000000..13af386 --- /dev/null +++ b/benchmark/todo_list/main_prompt @@ -0,0 +1,2 @@ +Create a simple to-do list app using HTML, CSS, and JavaScript. Store tasks in local storage and allow users to add, edit, and delete tasks. +