Skip to content

Instantly share code, notes, and snippets.

View UlugbekMuslitdinov's full-sized avatar
📑
Studying

Ulugbek Muslitdinov UlugbekMuslitdinov

📑
Studying
View GitHub Profile
@UlugbekMuslitdinov
UlugbekMuslitdinov / Dockerfile
Last active March 3, 2023 01:04
Django, Docker-compose and PostgreSQL
# Pull base image
FROM python:3.8
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Set work directory
WORKDIR /code
@UlugbekMuslitdinov
UlugbekMuslitdinov / urls.py
Last active July 17, 2024 13:14
How to connect PyTelegramBotAPI with Django
from bot.views import bot
from django.urls import path
urlpatterns = [
path('ANY-RANDOM-LINK/', bot, name="bot"),
]
@eightyknots
eightyknots / avregex.md
Last active November 3, 2025 15:45
AvReg: Aviation regex match toolkit

AvReg: The Aviation RegEx Match Toolkit

General Tips

  • The PCRE flavour of RegEx is used here.
  • Append the i modifier to the end of the regex to make any pattern case-insensitive.

Aircraft

| Purpose | Description | RegEx | Example |