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
import requests | |
import pandas as pd | |
from geopy.geocoders import Nominatim | |
geolocator = Nominatim(user_agent="FridaysforFuture.de Streikkarte") | |
url = 'https://fridaysforfuture.de/streiktermine/' | |
html = requests.get(url).content | |
df_list = pd.read_html(html) | |
df = df_list[0] |
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
http://bradsrpi.blogspot.fr/2013/03/sending-data-from-arduino-to-raspberry.html |
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
location ~ /\.git { | |
deny all; | |
} | |
# or, all . directories/files in general (including .htaccess, etc) | |
location ~ /\. { | |
deny all; | |
} |