Skip to content

Instantly share code, notes, and snippets.

View soile1991's full-sized avatar

Panos Soilemezis soile1991

View GitHub Profile
@soile1991
soile1991 / cloudflared_doh.md
Created July 23, 2025 04:42 — forked from emotality/cloudflared_doh.md
Install Cloudflare DoH (DNS over HTTPS) for macOS

Cloudflare DoH (DNS over HTTPS)

Currently all DNS queries are being queried over normal HTTP that can be intercepted and the hacker/scammer can then respond with a different IP address, misleading you to a clone of the original website that the hacker owns. This can be avoided by installing Cloudflare's own app, cloudflared, on your machine to route all your DNS queries over HTTPS which is secure and can't be altered. It's also a lot faster! 💡 Learn More

This is a guide on how to install cloudflared to query Cloudflare's DNS server over an HTTPS connection.

👨‍🔧 Installation

  1. Install Homebrew if you don't have it
@soile1991
soile1991 / README.md
Created June 7, 2025 06:35 — forked from denji/README.md
Simple Sentry docker-compose.yml
  1. Download docker-compose.yml to dir named sentry
  2. Change SENTRY_SECRET_KEY to random 32 char string
  3. Run docker-compose up -d
  4. Run docker-compose exec sentry sentry upgrade to setup database and create admin user
  5. (Optional) Run docker-compose exec sentry pip install sentry-slack if you want slack plugin, it can be done later
  6. Run docker-compose restart sentry
  7. Sentry is now running on public port 9000
@soile1991
soile1991 / DjangoKube.md
Created March 2, 2023 22:38 — forked from jjorissen52/DjangoKube.md
Django with Kubernetes

If you are hosting a Django app with Kubernetes, there are a few things that you need to take care of.

Containerizing

Here is a sample Dockerfile for a containerized app:

FROM python:3.9-buster

RUN apt-get update \
    --fix-missing \
@soile1991
soile1991 / k3s_helm_install.sh
Created February 16, 2023 14:06 — forked from icebob/k3s_helm_install.sh
K3S + Helm installing
# Install K3S
curl -sfL https://get.k3s.io | sh -
# Copy k3s config
mkdir $HOME/.kube
sudo cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
sudo chmod 644 $HOME/.kube/config
# Check K3S
kubectl get pods -n kube-system
@soile1991
soile1991 / macbook-setup.md
Last active July 24, 2019 12:40 — forked from antiagainst/macbook-setup.md
Set Up Zsh, Presto, Homebrew, Ruby, Powerline, and Vim on Mac OS X

blog about these tools

Setup Zsh and Prezto

  • Change default shell to Zsh
chsh -s $(which zsh)
  • Clone Presto and install it according to README.md