-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add auto tagging of listings #29
Comments
Yes, also for job specialties like frontend, backend, devops, data, product, etc. |
interesting, how does something like that work? |
Off the top of my head I'm not sure how it would be implemented in Go but here is an example of what I was thinking in C#: List<string> tags = new List<string>();
string content = (position + organization + description).ToLower();
if(content.Contains("web3"))
{
tags.Add("web3");
} // else if ... etc... or wrap the if in a loop over a list of things we want to tag It wouldn't be anything fancy and it might be wrong sometimes, but as long as we don't get too generic with the things we want auto tagged, it should be fine. |
I dig it! It probably makes sense to have a general tagging system in place as well. Whether that comes before this is optional though. Could start with this driven by a hard-coded list of tags first, and switch to having it driven by the user-generated tags later. |
I think it might be nice to have auto tagging of jobs for things like crypto and web3 jobs. Then maybe users could filter or at least quickly see what type a job is.
The text was updated successfully, but these errors were encountered: