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. +