View details here: https://gist.github.com/xynova/87beae35688476efb2ee290d3926f5bb
References:
| TEXT ..S... arib_caption ARIB STD-B24 caption | |
| TEXT DES... ass ASS (Advanced SSA) subtitle (decoders: ssa ass ) (encoders: ssa ass ) | |
| IMAGE DES... dvb_subtitle DVB subtitles (decoders: dvbsub ) (encoders: dvbsub ) | |
| IMAGE ..S... dvb_teletext DVB teletext | |
| IMAGE DES... dvd_subtitle DVD subtitles (decoders: dvdsub ) (encoders: dvdsub ) | |
| TEXT D.S... eia_608 EIA-608 closed captions (decoders: cc_dec ) | |
| IMAGE D.S... hdmv_pgs_subtitle HDMV Presentation Graphic Stream subtitles (decoders: pgssub ) | |
| TEXT ..S... hdmv_text_subtitle HDMV Text subtitle | |
| TEXT D.S... jacosub JACOsub subtitle | |
| TEXT D.S... microdvd MicroDVD subtitle |
| #!/bin/bash | |
| # install packages/dependencies for compilation | |
| sudo yum -y install gcc make ncurses-devel | |
| cd /tmp | |
| # the latest version of ncdu is published here: http://dev.yorhel.nl/ncdu | |
| # update the link below if necessary: | |
| wget -nv http://dev.yorhel.nl/download/ncdu-1.10.tar.gz |
| #!/usr/bin/env python3 | |
| """ | |
| Delete an IAM User from an AWS Account. | |
| Copyright (c) 2019 TKalus <[email protected]> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
View details here: https://gist.github.com/xynova/87beae35688476efb2ee290d3926f5bb
References:
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: nginx-conf | |
| data: | |
| nginx.conf: | | |
| user nginx; | |
| worker_processes 3; | |
| error_log /var/log/nginx/error.log; | |
| events { |
Create file /etc/systemd/system/[email protected]. SystemD calling binaries using an absolute path. In my case is prefixed by /usr/local/bin, you should use paths specific for your environment.
[Unit]
Description=%i service with docker compose
PartOf=docker.service
After=docker.service| git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -r -n 1 git branch -D |
| # This hosts file is brought to you by Dan Pollock and can be found at | |
| # http://someonewhocares.org/hosts/ | |
| # You are free to copy and distribute this file for non-commercial uses, | |
| # as long the original URL and attribution is included. | |
| #<localhost> | |
| 127.0.0.1 localhost | |
| 127.0.0.1 localhost.localdomain | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |