This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
""" | |
Brain dead script that scraps wikipedia for the top French cities and their population | |
then queries Github to get an estimated city developer population. | |
""" | |
__author__ = 'svolle' | |
import requests | |
import github3 | |
from bs4 import BeautifulSoup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var vari = { | |
easter: { | |
code: "38 38 40 40 37 39 37 39 66 65", | |
userIn: "" | |
} | |
}; | |
(function(v) { | |
window.addEventListener("keydown", function(e){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
This module loads all files located in PATH directory in memory and parses them as YAML. | |
It outputs the parsing operation duration. | |
--]] | |
require("lfs") | |
require("yaml") | |
local PATH = "yaml_data" | |
local yaml_data = {} |