Skip to content
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

Open
aaronarduino opened this issue May 23, 2022 · 4 comments
Open

Add auto tagging of listings #29

aaronarduino opened this issue May 23, 2022 · 4 comments

Comments

@aaronarduino
Copy link
Contributor

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.

@sethetter
Copy link
Member

Yes, also for job specialties like frontend, backend, devops, data, product, etc.

@kevinfalting
Copy link
Collaborator

auto tagging of jobs

interesting, how does something like that work?

@aaronarduino
Copy link
Contributor Author

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.

@sethetter
Copy link
Member

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants