mate-screenshot -ai
#!/usr/bin/env bash
mogrify -resize 50% "$@"
| class ParlerModelSerializer(serializers.ModelSerializer): | |
| """https://gist.github.com/yellowcap/81c6d5f3ea1426689c80""" | |
| def __init__(self, *args, **kwargs): | |
| # Get list of translated fields | |
| fields = self.Meta.model._parler_meta._fields_to_model | |
| # Separate parler fields and scilent fields | |
| parler_fieds = [x for x in self.Meta.fields if x in fields] | |
| pas_parler_fields = [x for x in self.Meta.fields if x not in fields] |
| version: '3.9' | |
| services: | |
| proxy: | |
| image: nginxproxy/nginx-proxy:1.0.1-alpine | |
| restart: always | |
| container_name: base-proxy | |
| ports: | |
| - 80:80 | |
| - 443:443 |
| select | |
| "user@example.com" as 'Email', | |
| date(facts.start_time) as 'Start date', | |
| time(facts.start_time) as 'Start time', | |
| strftime('%H:%M:%S', strftime('%s',facts.end_time) - strftime('%s',facts.start_time), 'unixepoch') as 'Duration', | |
| categories.name as 'Project', | |
| activities.name as 'Description' | |
| from | |
| facts, categories, activities | |
| where |
| 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) |