Skip to content

Instantly share code, notes, and snippets.

View fernand0's full-sized avatar
💭
Programming

Fernando Tricas García fernand0

💭
Programming
View GitHub Profile
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.support import ui
from selenium.common.exceptions import NoSuchElementException, TimeoutException
def create_browser():
profile = webdriver.FirefoxProfile()
profile.set_preference('permissions.default.image', 2)
profile.update_preferences()
return webdriver.Firefox(profile)
@JJ
JJ / top-github-users-dec-2014.md
Last active March 5, 2021 01:25
Top GitHub users

Most active GitHub users

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Tue, 03 Dec 2013 07:25:57 GMT till Wed, 03 Dec 2014 07:25:57 GMT.

Only first 1000 GitHub users according to the count of followers and with more than a hundred repos are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:

githubUsers
 .filter((user) -> user.followers > 101 & user.repos > 101)