Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
Dask
License:

Fix typo in level from chanllenging to challenging

#2
datasets/angular.jsonl CHANGED
@@ -8,7 +8,7 @@
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of blog.component.ts. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is appended to a service blog.service.ts.","project":"angular"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of blog.component.ts. When clicked, toggle blog-form to edit the content of selected Blog. The Title of blog-form is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is appended to a service blog.service.ts; 3) Constraint: blog-form should be singleton, ONLY ONE instance of blog-form exists.","project":"angular"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a search.component.ts (width: 200px, border-box) component above blog-list.component.ts in app.component.ts. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"angular"}
11
- {"id":"task-11","date":"2025-05-12","level":"chanllenging","description":"1) Add a button with the text 'Random Blogs' in header to append 100,000 blogs to blog-list at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY Angular APIs can be used to optimize performance.","project":"angular"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing comments.component.ts with the title 'Comments' at the bottom of blog.component.ts. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the class '.comment-item', placed above the TextArea. 4) Create services/comment.service.ts to implement state management without NgRx or other state management libraries, and connect CommentService to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize Angular APIs.","project":"angular"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create directives/tooltip.directive.ts that displays a tooltip (.tooltip) at the bottom of the host element when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body using Angular's dynamic component creation. 4) Constraint: DO NOT use any third-party packages; ONLY Angular APIs are allowed.","project":"angular"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in blog.component.ts. 2) Develop a pipe or service to reuse Markdown-related logic. 3) Prevent XSS attacks using Angular's DomSanitizer. 4) Constraint: DO NOT use any third-party packages; ONLY Angular APIs are permitted.","project":"angular"}
 
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of blog.component.ts. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is appended to a service blog.service.ts.","project":"angular"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of blog.component.ts. When clicked, toggle blog-form to edit the content of selected Blog. The Title of blog-form is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is appended to a service blog.service.ts; 3) Constraint: blog-form should be singleton, ONLY ONE instance of blog-form exists.","project":"angular"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a search.component.ts (width: 200px, border-box) component above blog-list.component.ts in app.component.ts. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"angular"}
11
+ {"id":"task-11","date":"2025-05-12","level":"challenging","description":"1) Add a button with the text 'Random Blogs' in header to append 100,000 blogs to blog-list at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY Angular APIs can be used to optimize performance.","project":"angular"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing comments.component.ts with the title 'Comments' at the bottom of blog.component.ts. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the class '.comment-item', placed above the TextArea. 4) Create services/comment.service.ts to implement state management without NgRx or other state management libraries, and connect CommentService to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize Angular APIs.","project":"angular"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create directives/tooltip.directive.ts that displays a tooltip (.tooltip) at the bottom of the host element when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body using Angular's dynamic component creation. 4) Constraint: DO NOT use any third-party packages; ONLY Angular APIs are allowed.","project":"angular"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in blog.component.ts. 2) Develop a pipe or service to reuse Markdown-related logic. 3) Prevent XSS attacks using Angular's DomSanitizer. 4) Constraint: DO NOT use any third-party packages; ONLY Angular APIs are permitted.","project":"angular"}
datasets/react-no-ts.jsonl CHANGED
@@ -8,7 +8,7 @@
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.jsx. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a custom hook hooks/useDelete.jsx.","project":"react-no-ts"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.jsx. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a custom hook hooks/useEdit.jsx;","project":"react-no-ts"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.jsx(width: 200px, border-box) component above BlogList.jsx in Main.jsx. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"react-no-ts"}
11
- {"id":"task-11","date":"2025-05-12","level":"chanllenging","description":"1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY React APIs can be used to optimize performance.","project":"react-no-ts"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.jsx with the title 'Comments' at the bottom of Blog.jsx. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/Comment.jsx to implement CommentStore without ReactContext API、Redux、mobx etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize React APIs.","project":"react-no-ts"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.jsx that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are allowed.","project":"react-no-ts"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.jsx. 2) Develop a hook or utility to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are permitted.","project":"react-no-ts"}
 
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.jsx. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a custom hook hooks/useDelete.jsx.","project":"react-no-ts"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.jsx. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a custom hook hooks/useEdit.jsx;","project":"react-no-ts"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.jsx(width: 200px, border-box) component above BlogList.jsx in Main.jsx. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"react-no-ts"}
11
+ {"id":"task-11","date":"2025-05-12","level":"challenging","description":"1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY React APIs can be used to optimize performance.","project":"react-no-ts"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.jsx with the title 'Comments' at the bottom of Blog.jsx. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/Comment.jsx to implement CommentStore without ReactContext API、Redux、mobx etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize React APIs.","project":"react-no-ts"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.jsx that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are allowed.","project":"react-no-ts"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.jsx. 2) Develop a hook or utility to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are permitted.","project":"react-no-ts"}
datasets/react.jsonl CHANGED
@@ -8,7 +8,7 @@
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.tsx. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a custom hook hooks/useDelete.tsx.","project":"react"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.tsx. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a custom hook hooks/useEdit.tsx;","project":"react"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.tsx(width: 200px, border-box) component above BlogList.tsx in Main.tsx. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"react"}
11
- {"id":"task-11","date":"2025-05-12","level":"chanllenging","description":"1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY React APIs can be used to optimize performance.","project":"react"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.tsx with the title 'Comments' at the bottom of Blog.tsx. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/Comment.tsx to implement CommentStore without ReactContext API、Redux、mobx etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize React APIs.","project":"react"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.tsx that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are allowed.","project":"react"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.tsx. 2) Develop a hook or utility to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are permitted.","project":"react"}
 
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.tsx. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a custom hook hooks/useDelete.tsx.","project":"react"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.tsx. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a custom hook hooks/useEdit.tsx;","project":"react"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.tsx(width: 200px, border-box) component above BlogList.tsx in Main.tsx. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"react"}
11
+ {"id":"task-11","date":"2025-05-12","level":"challenging","description":"1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not be stuck when 100000 blogs are appended. 3) Constraint: DO NOT USE any third-party packages, ONLY React APIs can be used to optimize performance.","project":"react"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.tsx with the title 'Comments' at the bottom of Blog.tsx. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/Comment.tsx to implement CommentStore without ReactContext API、Redux、mobx etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize React APIs.","project":"react"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.tsx that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are allowed.","project":"react"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.tsx. 2) Develop a hook or utility to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY React APIs are permitted.","project":"react"}
datasets/vue.jsonl CHANGED
@@ -8,7 +8,7 @@
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.vue. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a composable composables/useDelete.ts.","project":"vue"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.vue. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a composable composables/useEdit.ts;","project":"vue"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.vue(width: 200px, border-box) component above BlogList.vue in Main.vue. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"vue"}
11
- {"id":"task-11","date":"2025-05-12","level":"chanllenging","description":" 1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not stuck when 100000 blogs appended. 3) Constraint: DO NOT USE any third-party packages, ONLY Vue APIs can be used to optimize the performance.","project":"vue"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.vue with the title 'Comments' at the bottom of Blog.vue. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/comment.ts implement CommentStore without Inject/Provide API、Pinia etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize Vue APIs.","project":"vue"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.vue that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are allowed.","project":"vue"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.vue. 2) Develop a composable/utils to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are permitted.","project":"vue"}
 
8
  {"id":"task-8","date":"2025-05-12","level":"moderate","description":"1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.vue. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a composable composables/useDelete.ts.","project":"vue"}
9
  {"id":"task-9","date":"2025-05-12","level":"moderate","description":"1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.vue. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a composable composables/useEdit.ts;","project":"vue"}
10
  {"id":"task-10","date":"2025-05-12","level":"moderate","description":"1) Add a Search.vue(width: 200px, border-box) component above BlogList.vue in Main.vue. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs.","project":"vue"}
11
+ {"id":"task-11","date":"2025-05-12","level":"challenging","description":" 1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random. 2) Ensure the page will not stuck when 100000 blogs appended. 3) Constraint: DO NOT USE any third-party packages, ONLY Vue APIs can be used to optimize the performance.","project":"vue"}
12
  {"id":"task-12","date":"2025-05-12","level":"challenging","description":"1) Add appealing Comments.vue with the title 'Comments' at the bottom of Blog.vue. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', placed above the TextArea. 4) Create store/comment.ts implement CommentStore without Inject/Provide API、Pinia etc., and connect CommentStore to UI. 5) Preserve comments when a blog is edited, and clear them when a blog is deleted. 6) Constraint: DO NOT USE any third-party packages; ONLY utilize Vue APIs.","project":"vue"}
13
  {"id":"task-13","date":"2025-05-12","level":"challenging","description":"1) Create components/Tooltip.vue that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are allowed.","project":"vue"}
14
  {"id":"task-14","date":"2025-05-12","level":"challenging","description":"1) Enable Markdown text input for blog details. Preview the Markdown in Blog.vue. 2) Develop a composable/utils to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are permitted.","project":"vue"}