Skip to content

Instantly share code, notes, and snippets.

View ridershow's full-sized avatar
:octocat:
git pushessss

Jérémy ridershow

:octocat:
git pushessss
View GitHub Profile
layout title permalink
checklist_page
The Side Project Marketing Checklist
/marketing-checklist/

Pre-Launch

Market Research

@ridershow
ridershow / ImmowebScraper.py
Created May 28, 2019 22:30 — forked from hbro/ImmowebScraper.py
Scrape an Immoweb search URL and e-mail any new results.
#!/usr/bin/python3
# Usage:
# - Fill in the settings, then run with `python3 ImmowebScraper.py`.
# - First run won't send any mails (or you'd get dozens at once).
# Requirements:
# - python3
# - selenium
# - phantomjs
import sqlite3
@ridershow
ridershow / CSV Duplication Remover
Created April 13, 2019 16:12 — forked from murphyslaw/CSV Duplication Remover
A ruby script that removes duplicate rows in a csv file. Duplicates are found based on an identifier column and a criteria column, which are configurable.
#!/usr/bin/ruby -w
require 'csv'
require 'active_support/core_ext'
class Parser
attr_accessor :input_folder
attr_accessor :output_folder
attr_accessor :filename