Download the package: http://www2.futureware.at/~nickoe/msys2-mirror/msys/x86_64/rsync-3.1.3-1-x86_64.pkg.tar.xz
Extract it and move rsync.exe to %HOMEDRIVE%%HOMEPATH%\AppData\Local\Programs\Git\usr\bin.
Download the package: http://www2.futureware.at/~nickoe/msys2-mirror/msys/x86_64/rsync-3.1.3-1-x86_64.pkg.tar.xz
Extract it and move rsync.exe to %HOMEDRIVE%%HOMEPATH%\AppData\Local\Programs\Git\usr\bin.
| import requests | |
| http_url = 'https://api-us.faceplusplus.com/facepp/v3/detect' | |
| key = "foo" | |
| secret = "bar" | |
| # Build http request | |
| res = requests.post(url=http_url, data={'api_key': key, 'api_secret': secret, | |
| 'image_url': 'http://bj-mc-prod-asset.oss-cn-beijing.aliyuncs.com/mc-official/images/face/demo-pic11.jpg', | |
| 'return_landmark': 1, |
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| global popup, langText, guiCreated := false, prevLangID := 0 | |
| ; Check the keyboard layout every 200ms | |
| SetTimer(CheckKeyboardLayout, 200) | |
| CheckKeyboardLayout() { | |
| global popup, langText, guiCreated, prevLangID |
| """ | |
| Télécharge les observations Météo-France Open Data pour Paris (dépt. 75), | |
| en horaire pour les périodes récentes et en quotidien pour les historiques, | |
| puis filtre les stations demandées et calcule : | |
| - Tmax quotidienne | |
| - Tmin quotidienne | |
| - excès diurne max(Tmax - 35, 0) | |
| - excès nocturne max(Tmin - 20, 0) | |
| - plus longue séquence de jours avec Tmax > 35°C |