This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reverse proxy for granting access to clients that are | |
# in the local net or presenting a valid SSL certificate. | |
# Credits to https://stackoverflow.com/a/48012499/2705147 | |
geo $internal_ip { | |
default no; | |
10.0.0.0/16 yes; | |
} | |
map $internal_ip$ssl_client_verify $request_allowed { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://github.com/3b1b/manim | |
# Animation: https://debe.galliera.it/pub/taylor.mp4 | |
from manimlib.imports import * | |
import math | |
from functools import partial | |
class Graphing(GraphScene): | |
CONFIG = { | |
"x_min": -10, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -eu | |
# Uses connection strings defined in /etc/barman.d/*.conf | |
# to dump each single database and global objects | |
# do not run multiple instances | |
[ "${FLOCKER:-''}" != "$0" ] && exec env FLOCKER="$0" flock -en "$0" "$0" "$@" || : | |
BASE=/var/lib/barman/dumps | |
VERBOSE=0 | |
QUERYDB="select datname from pg_database where datallowconn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def flatten(l): | |
if isinstance(l, list): | |
out = [] | |
out = flatten(l.pop()) + out | |
if l: | |
out = flatten(l) + out | |
return out | |
return [l] | |
# Example |
Si tratta di buzzword, comunque indica un'architettura in cui i singoli servizi sono accoppiati in modo lasco, oguno può essere sviluppato con tecnologie diverse e da vendor diversi. Garantiscono maggiore flessibilità rispetto ad un'implementazione concentrata su un server monolitico.
Tipicamente sono realizzati su HTTP, se non altro per il fatto che è ubiquo.
L'entropia misura l'incertezza media di una variabile casuale X o se vogliamo di un processo. Lavorando in base 2 è il minimo numero di bit necessari in media per rappresentare il valore x della variabile casuale X.
H(X) = - Σ p(x) · log(p(x)) x ∈ X
- La responsabilità penale è personale.
- L’imputato non è considerato colpevole fino alla sentenza definitiva.
Nessuno può essere punito se non in forza di una legge che sia entrata in vigore prima del fatto commesso.
NewerOlder