Skip to content

Instantly share code, notes, and snippets.

View migbash's full-sized avatar
:shipit:
On Track

MigBash migbash

:shipit:
On Track
  • Edinburgh Napier Univeristy
  • Edinburgh
View GitHub Profile
@migbash
migbash / PostgreSQL-EXTENSIONs.md
Created January 16, 2024 01:34 — forked from joelonsql/PostgreSQL-EXTENSIONs.md
1000+ PostgreSQL EXTENSIONs

🗺🐘 1000+ PostgreSQL EXTENSIONs

This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.

⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.

@migbash
migbash / gunicorn.py
Created December 17, 2022 08:36 — forked from HacKanCuBa/gunicorn.py
A config file of gunicorn(http://gunicorn.org/) contains fundamental configuration.
"""Gunicorn config file.
by HacKan (https://hackan.net)
Find it at: https://gist.github.com/HacKanCuBa/275bfca09d614ee9370727f5f40dab9e
Based on: https://gist.github.com/KodeKracker/6bc6a3a35dcfbc36e2b7
Changelog
=========
See revisions to access other versions of this file.
@migbash
migbash / docker-compose.yml
Created September 14, 2021 11:51 — forked from davidostermann/docker-compose.yml
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