Skip to content

Instantly share code, notes, and snippets.

View EmberRed's full-sized avatar
🐳
Having Fun

Ale EmberRed

🐳
Having Fun
  • Praha
View GitHub Profile
@EmberRed
EmberRed / gist:1a300b3963c85c66c81a82f7c6aa3a71
Created October 8, 2019 14:40
Installing last version of docker & docker-compose (Ubuntu/Debian, CentOS)
### docker-CE
cd /tmp
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker $USER
rm get-docker.sh
### docker-compose
@webinista
webinista / pelicanconf.py
Last active April 10, 2023 23:07
A Pelican configuration for having a home page and blog index or landing page.
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# --------------------------------------
# Now compatible with Pelican 4.0.x!
# --------------------------------------
# Added by me
import time
@davidostermann
davidostermann / docker-compose.yml
Last active March 17, 2024 10:36
Docker compose Postgres Adminer
version: '3.1'
services :
db:
image: postgres:10-alpine
ports:
- "5432:5432"
environment:
POSTGRES_USER: user1
POSTGRES_PASSWORD: changeme
POSTGRES_DB: tododb
@pokisin
pokisin / Uninstall.md
Last active March 20, 2024 20:26
Uninstall git, ubuntu

Uninstall git

To remove just git package itself from Ubuntu 14.04 execute on terminal:

$ sudo apt-get remove git

Uninstall git and it's dependent packages

To remove the git package and any other dependant package which are no longer needed from Ubuntu Trusty.

$ sudo apt-get remove --auto-remove git
@mrabbani
mrabbani / mailgun-config.md
Last active January 8, 2024 01:45
Laravel Mailgun Setup