Skip to content

Instantly share code, notes, and snippets.

View FMassin's full-sized avatar
🇷🇪

Fred Massin FMassin

🇷🇪
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FMassin
FMassin / Mass downloads.ipynb
Last active March 22, 2017 09:02
FDSNws tricks.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FMassin
FMassin / Make a OSM tile buffer.ipynb
Created March 22, 2017 08:35
Make a OSM tile buffer
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FMassin
FMassin / Eq-review.ipynb
Last active March 22, 2017 09:06
Demo of my codes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FMassin
FMassin / git.md
Last active March 23, 2017 15:08
Cheetsheat
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.ethz.ch") || dnsDomainIs(host, ".ethz.ch")) {
return "SOCKS5 127.0.0.1:1080; SOCKS 127.0.0.1:1080";
}
return "DIRECT";
}