This file has been truncated, but you can view the full file.
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 hosts file is a merged collection of hosts from reputable sources, | |
# with a dash of crowd sourcing via Github | |
# | |
# Date: 18 February 2019 18:52:55 (UTC) | |
# Number of unique domains: 38,958 | |
# | |
# Fetch the latest version of this file: https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts | |
# Project home page: https://github.com/StevenBlack/hosts | |
# Project releases: https://github.com/StevenBlack/hosts/releases | |
# |
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/bash | |
# Script to install riot.im to debian/ubuntu | |
# following info of there: https://riot.im/desktop.html | |
# add riot.im repository to /etc/apt/sources.list.d/riot_im.list | |
sudo sh -c 'echo "# Riot.im | |
deb http://riot.im/packages/debian/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/riot_im.list' | |
# add public key to system |
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/bash | |
# Convert Landsat 8 GeoTIFF images into RGB pan-sharpened JPEGs. | |
# | |
# Requirements: | |
# * gdal http://www.mapbox.com/tilemill/docs/guides/gdal/ | |
# * convert (image-magick) | |
# | |
# Reference info: | |
# http://www.mapbox.com/blog/putting-landsat-8-bands-to-work/ |