Skip to content

Instantly share code, notes, and snippets.

@jigante
jigante / hls.sh
Created November 24, 2024 20:31 — forked from stenuto/hls.sh
HLS ffmpeg script
#!/bin/bash
# Function to display usage information
usage() {
echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]"
exit 1
}
# Check if at least one argument (input file) is provided
if [ $# -lt 1 ]; then

Keybase proof

I hereby claim:

  • I am jigante on github.
  • I am jigante (https://keybase.io/jigante) on keybase.
  • I have a public key ASCS7DZ7umW-QwxVU2GG4dOayOKVevCT1XgicHGTSaqORAo

To claim this, I am signing this object:

#!/usr/bin/env perl
## O original esta neste Link
## www.arschkrebs.de/postfix/scripts/mailqfmt.pl
## http://www.arschkrebs.de/postfix/scripts/
# Postfix mailq file reformatter, (C) 2003 by Matthias Andree
# This file is licensed to you under the conditions of the
# GNU General Public License v2.
## Install perl-HTTP-Date, perl-JSON
#!/bin/bash
## Install ISPConfig3 on Ubuntu 14.04 64Bits
## Author: Nilton OS blog.linuxpro.com.br
## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html
## http://www.howtoforge.com/the-perfect-server-ubuntu-14.04-nginx-bind-mysql-php-postfix-dovecot-and-ispconfig3-p2
dpkg-reconfigure dash
service apparmor stop
#!/bin/bash
## Install ISPConfig3 on Ubuntu 14.04 64Bits
## Author: Nilton OS blog.linuxpro.com.br
## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html
## http://www.howtoforge.com/perfect-server-ubuntu-14.04-apache2-php-mysql-pureftpd-bind-dovecot-ispconfig-3-p2
dpkg-reconfigure dash
service apparmor stop
---
- name: Rolling elasticsearch cluster restart
hosts: es
serial: 1
sudo: yes
vars:
uribody_true: '{"transient":{"cluster.routing.allocation.enable":"none"}}'
uribody_false: '{"transient":{"cluster.routing.allocation.enable":"all"}}'
es_http_port: 9200
## ===================================================
## Hetzner Online AG - installimage - standardconfig.
## ===================================================
## ====================
## HARD DISK DRIVE(S):
## ====================
---
- hosts: all
user: root
sudo: true
tasks:
- name: update apt
command: apt-get update
- name: update bash
@jigante
jigante / nginx.conf
Last active August 29, 2015 14:06 — forked from denys281/nginx.conf
server {
# Listen on port 81
listen 81;
# Server name being used (exact name, wildcards or regular expression)
# server_name phpmyadmin.my;
root /usr/share/phpmyadmin;
@jigante
jigante / gist:f892d6143c49e1cda18a
Created July 19, 2014 07:05 — forked from therobot/gist:102770
Capistrano Rollback database migrations
before "deploy:rollback:revision", "deploy:rollback_database"
desc "Rolls back database to migration level of the previously deployed release"
task :rollback_database, :roles => :db, :only => { :primary => true } do
if releases.length < 2
abort "could not rollback the code because there is no prior release"
else
rake = fetch(:rake, "rake")
rails_env = fetch(:rails_env, "production")
migrate_env = fetch(:migrate_env, "")