Skip to content

Instantly share code, notes, and snippets.

View borispov's full-sized avatar

Boris borispov

  • Israel
View GitHub Profile

Web Scraping a job listing website

Using web scraping for a real use case application

Data Extraction

In this article I will show you how I built a simple web scraping tool to assist my wife's job seeking journey.

My wife's route of action is straight-forward, she knows couple of job postings sites and she checks them out on a daily basis, filtering irrelevant jobs that are showing up too frequently and clotting up the page space, and those that are relevant she's sending her application via email.

@borispov
borispov / odin_js_exer
Created October 6, 2018 22:03
Simple solutions for isPalindrome, snake_case coverter and fibonacci
// check if word is palindrome
// can enter CAPS, nums, symbols etc..
function isPalindrome(string){
return string.replace(/[^a-z]/gi, '').toLowerCase().split('').reverse().join('') === string.replace(/[^a-z]/gi, '').toLowerCase()
}
// n is index in the fibonacci sequence.
// function returns n's number in the sequence.
function fibo(n) {
if (n < 0) return 'OOPS!'