You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The site's "Learn" page is currently a simple list of the videos the ACE YouTube channel has uploaded. We'd like to make this list more approachable to users by allowing them to filter by tag and search by keyword. For example, we might have a tag for all of our GBM videos, and another for all Leetcode Day videos. If users wanted to find these videos, they could either filter by these tags or type them into a search bar.
To reduce the amount of work required to manage video tags, we'd like the process of adding tags to be somewhat automated. This means that when videos are retrieved from the ACE YouTube channel, their titles will need to be scanned for keywords so the videos can be appropriately tagged.
Backend Tasks:
Update video schema to include a list of tags
Add a function to find a list of videos whose tag list contains a specified tag, or a specified list of tags
Add a function to find a list of videos whose names include a specified search term
Frontend Tasks:
Update current method of retrieving YouTube videos
- Add function for processing titles/descriptions in search of taggable terms
Create interface for filtering videos by tag(s)
Create search bar for finding videos whose titles contain search terms
The text was updated successfully, but these errors were encountered:
The site's "Learn" page is currently a simple list of the videos the ACE YouTube channel has uploaded. We'd like to make this list more approachable to users by allowing them to filter by tag and search by keyword. For example, we might have a tag for all of our GBM videos, and another for all Leetcode Day videos. If users wanted to find these videos, they could either filter by these tags or type them into a search bar.
To reduce the amount of work required to manage video tags, we'd like the process of adding tags to be somewhat automated. This means that when videos are retrieved from the ACE YouTube channel, their titles will need to be scanned for keywords so the videos can be appropriately tagged.
Backend Tasks:
Frontend Tasks:
- Add function for processing titles/descriptions in search of taggable terms
The text was updated successfully, but these errors were encountered: