mate-screenshot -ai
#!/usr/bin/env bash
mogrify -resize 50% "$@"
| version: '3.9' | |
| services: | |
| proxy: | |
| image: nginxproxy/nginx-proxy:1.0.1-alpine | |
| restart: always | |
| container_name: base-proxy | |
| ports: | |
| - 80:80 | |
| - 443:443 |
| FILENAME=Me1956 | |
| # fetch image | |
| docker pull ginetto/gdal:2.4.1_ECW | |
| # convert ecw to geotiff | |
| docker run --rm -it --name gdalecw -v $PWD:/home/datafolder ginetto/gdal:2.4.1_ECW \ | |
| gdal_translate -co "TILED=YES" -co "COMPRESS=JPEG" -co "PHOTOMETRIC=YCBCR" -co "NUM_THREADS=ALL_CPUS" -co "BIGTIFF=YES" /home/datafolder/${FILENAME}.ecw /home/datafolder/${FILENAME}.tif | |
| # add external overviews |
| #!/usr/bin/env bash | |
| targetfilename="${1%.*}" | |
| ffmpeg -i "${1}" -acodec mp2 -vcodec libx265 -crf 30 -vf "scale=iw/2:ih/2" "$targetfilename-compressed.mp4" |
wget -O- https://telegram.org/dl/desktop/linux | sudo tar xJ -C /opt/
sudo ln -s /opt/Telegram/Telegram /usr/local/bin/telegram-desktop
wget https://telegram.org/img/t_logo.png -O /usr/share/pixmaps/telegram.png
Create /usr/share/applications/telegram.desktop file with the following contents:
| #!/bin/bash | |
| ## | |
| ## Tested on: Ubuntu 18.04 & ECW 5.4 & GDAL 2.3.1 | |
| ## | |
| ## Download the ERDAS ECW JP2 SDK v5.4 Linux | |
| ## https://download.hexagongeospatial.com/downloads/ecw/erdas-ecw-jp2-sdk-v5-4-linux | |
| ## Download GDAL v2.3 Source (ex. 2.3.1) |
| #!/bin/bash | |
| ## | |
| ## Tested on: Ubuntu 18.04 & ECW 5.4 & GDAL 2.3.1 | |
| ## | |
| ## Download the ERDAS ECW JP2 SDK v5.4 Linux | |
| ## https://download.hexagongeospatial.com/downloads/ecw/erdas-ecw-jp2-sdk-v5-4-linux | |
| ## Download GDAL v2.3 Source (ex. 2.3.1) |
| <filter> | |
| <filter-name>CorsFilter</filter-name> | |
| <filter-class>org.apache.catalina.filters.CorsFilter</filter-class> | |
| <init-param> | |
| <param-name>cors.allowed.origins</param-name> | |
| <param-value>*</param-value> | |
| </init-param> | |
| <init-param> | |
| <param-name>cors.allowed.methods</param-name> | |
| <param-value>GET,POST,HEAD,OPTIONS,PUT</param-value> |
SELECT
ntile,
CAST(avg(length) AS INTEGER) AS avgAmount,
CAST(max(length) AS INTEGER) AS maxAmount,
CAST(min(length) AS INTEGER) AS minAmount
FROM (SELECT length, ntile(6) OVER (ORDER BY length) AS ntile FROM countries) x
GROUP BY ntile
ORDER BY ntile;