Skip to content

Instantly share code, notes, and snippets.

View dmorozov82's full-sized avatar

Dmitry Morozov dmorozov82

  • Freelance
  • Russia, Moscow
  • 21:41 (UTC +03:00)
View GitHub Profile
@dmorozov82
dmorozov82 / how-to-install-homebrew-on-debian-based-distros.md
Created March 2, 2024 05:02 — forked from fardjad/how-to-install-homebrew-on-debian-based-distros.md
[How to Install Homebrew on Debian-based Distros] Steps required to install homebrew on MX Linux (and other Debian-based distros) #linux #debian #mxlinux #homebrew

How to Install Homebrew on Debian-based Distros

Steps required to install Homebrew on MX Linux (and other Debian-based distros)

Steps

  1. Update apt cache and optionally do a full upgrade

     apt update
    

apt full-upgrade # optional, reboot if needed

@dmorozov82
dmorozov82 / ansible dynamic inventory
Created February 7, 2024 16:11
Build ansible inventory dynamically
#!/usr/bin/env python
"""
This is an example script for implementing dynamic inventory in Ansible.
It could have been written in bash, but python is much easier to read.
"""
import argparse
import json
@dmorozov82
dmorozov82 / nginx.default.conf
Created June 8, 2022 14:59 — forked from sumardi/nginx.default.conf
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"utcValue": {
"type": "string",
"defaultValue": "[utcNow()]",
"metadata": {
"description": "Returns the current (UTC) datetime value in the specified format. If no format is provided, the ISO 8601 (yyyyMMddTHHmmssZ) format is used"
}