Skip to content

Instantly share code, notes, and snippets.

@bonobo78
bonobo78 / plex.repo
Created May 15, 2024 17:17
plex.repo
[Plexrepo]
name=plexrepo
baseurl=https://downloads.plex.tv/repo/rpm/\$basearch/
enabled=1
gpgkey=https://downloads.plex.tv/plex-keys/PlexSign.key
gpgcheck=1
filter ColorPattern( [string]$Pattern, [ConsoleColor]$Color, [switch]$SimpleMatch ) {
if( $SimpleMatch ) { $Pattern = [regex]::Escape( $Pattern ) }
$split = $_ -split $Pattern
$found = [regex]::Matches( $_, $Pattern, 'IgnoreCase' )
for( $i = 0; $i -lt $split.Count; ++$i ) {
Write-Host $split[$i] -NoNewline
Write-Host $found[$i] -NoNewline -ForegroundColor $Color
}
@bonobo78
bonobo78 / csv_tojson_bulk_es.pl
Last active January 1, 2016 04:09
Creates a json file ready for _bulk ES API tested with strawberry-perl-5.18.1.1-64bit on window$
#!/usr/bin/env perl
## Creates a json file ready for _bulk ES API
## tested with strawberry-perl-5.18.1.1-64bit
## 2013-12-22 Author : FRN
use strict; use warnings;
use JSON; ## brings json_encode
use Tie::Array::CSV; ## brings @Array from csv file
*******************************************************************************
rem Auteur : ITEC/EUR/PRO
rem
rem Uproc : « Nom de l’uproc »
rem
rem Titre : « description de l’uproc »
rem
rem Date : « Date de création de l’uproc »
rem
rem Paramètres : « préciser les paramètres s’il y en a »
@bonobo78
bonobo78 / gist:7668234
Last active December 29, 2015 12:09
Traces des actions dans $U. uxiotrns.log
La version 5 de DOLLAR UNIVERSE permet de tracer chaque action faite par les utilisateurs du produit
(via le GUI ou en mode commande). Pour activer ces traces, il faut positionner la variable U_LOG_TRANS a Y
(ou O ou y ou o) :
- dans les fichiers uxsetenv, uxsetenv_csh et uxsetenv.ksh sur Unix
- dans les fichiers uxsetenv, universe.def et ’societe’.def sur Windows

Client-side SSL

For excessively paranoid client authentication.

Using self-signed certificate.

Create a Certificate Authority root (which represents this server)

Organization & Common Name: Some human identifier for this server CA.

openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
@bonobo78
bonobo78 / cmd
Last active December 27, 2015 23:29
Set default mapping for a single field
$ curl -XPUT http://127.0.0.1:9200/_template/logstash_per_index -d @file.json