Skip to content

Instantly share code, notes, and snippets.

@fragkopoulos
fragkopoulos / unaccent.rules
Created September 20, 2021 14:58 — forked from fragoulis/unaccent.rules
Postgres unaccent rules for greek characters
À A
Á A
 A
à A
Ä A
Å A
Æ A
à a
á a
â a
@fragkopoulos
fragkopoulos / configure_docker0.sh
Created October 15, 2019 07:33 — forked from kamermans/configure_docker0.sh
Change the IP subnet of Docker's docker0 interface
#!/bin/sh -e
#
# NOTE: Since Docker 1.10 (February 4, 2016), it has been possible to configure the
# Docker daemon using a JSON config file. On Linux, this file is normally located at
# /etc/docker/daemon.json. You should use this JSON config method if you are running
# a version of Docker that is at least 1.10!
# Here is an example configuration that sets the docker0 bridge IP to 192.168.254.1/24:
# {
# "bip": "192.168.254.1/24"
# }