Skip to main content

Job details

Feature: Enhanced Search & Filtering

Data confidence

See which details came from the listing, which were inferred, and when its sources were checked.

This is an older listing. Confirm that it is still open before applying.

Some important details are unavailable and this listing is older.

Sources last verified
Originally published
Published sources
1
Location
Not identified
Salary
Not identified
Seniority
Not identified
Work model
Not identified

The original listing remains the authoritative source for current details and application instructions.

Issue :

The current job list is growing large. Users need better ways to find specific roles based on technical keywords or location.

Improvement :

Implement a client-side search or multi-select filter for the JobListComponent using the tech stack information already available in the repos.csv.

File Path : open-source-jobs/components/job-list.tsx

Code Idea :

// Inside Joblist Component
const [filter, setFilter] = useState('');
const filteredJobs = releases.filter(job => 
  job.name.toLowerCase().includes(filter.toLowerCase()) || 
  job.description.toLowerCase().includes(filter.toLowerCase())
);