wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zip
unzip 8-07-14_MegaCLI.zip
#!/usr/bin/env python | |
############################################################################### | |
# $Id$ | |
# | |
# Project: GDAL2Tiles, Google Summer of Code 2007 & 2008 | |
# Global Map Tiles Classes | |
# Purpose: Convert a raster into TMS tiles, create KML SuperOverlay EPSG:4326, | |
# generate a simple HTML viewers based on Google Maps and OpenLayers | |
# Author: Klokan Petr Pridal, klokan at klokan dot cz | |
# Web: http://www.klokan.cz/projects/gdal2tiles/ |
--- | |
- name: Compile NGINX from sources | |
hosts: webserver | |
vars: | |
nginx_version: nginx-1.13.4 | |
nginx_tarball_url: "http://nginx.org/download/{{ nginx_version }}.tar.gz" | |
nginx_install_dir: "/tmp/{{ nginx_version }}" | |
nginx_sbin_path: "/usr/sbin/nginx" | |
nginx_conf_path: "/etc/nginx/nginx.conf" |
-- Enable PostGIS (includes raster) | |
CREATE EXTENSION postgis; | |
-- Enable Topology | |
CREATE EXTENSION postgis_topology; | |
-- Enable PostGIS Advanced 3D | |
-- and other geoprocessing algorithms | |
-- CREATE EXTENSION postgis_sfcgal; | |
-- fuzzy matching needed for Tiger | |
CREATE EXTENSION fuzzystrmatch; | |
-- rule based standardizer |
curl
to get the JSON response for the latest releasegrep
to find the line containing file URLcut
and tr
to extract the URLwget
to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
; CDSCN800C.INF -- CardScan 800c Setup File | |
; Copyright (c) 2005 CardScan, Inc. | |
; Manufacturer: CardScan, Inc. | |
[Version] | |
Signature="$CHICAGO$" | |
Provider=%CardScan% | |
Class=Image | |
ClassGuid={6bdd1fc6-810f-11d0-bec7-08002be2092f} | |
Catalogfile=cdscn800c.cat |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Based on copy of https://gist.github.com/kalxas/5ab6237b4163b0fdc930 on 20 June 2014 12:27 UTC |