Skip to content

Instantly share code, notes, and snippets.

View todomagichere's full-sized avatar
🎯
Focusing

Roberto Pérez todomagichere

🎯
Focusing
View GitHub Profile
@todomagichere
todomagichere / teams-chat-post.sh
Created June 7, 2023 06:26 — forked from chusiang/teams-chat-post.sh
Post a message to Microsoft Teams with bash script.
#!/bin/bash
# =============================================================================
# Author: Chu-Siang Lai / chusiang (at) drx.tw
# Filename: teams-chat-post.sh
# Modified: 2021-10-18 00:09
# Description: Post a message to Microsoft Teams.
# Reference:
#
# - https://gist.github.com/chusiang/895f6406fbf9285c58ad0a3ace13d025
#
@todomagichere
todomagichere / docker-php-ext-install.md
Created July 8, 2021 12:14 — forked from giansalex/docker-php-ext-install.md
docker-php-ext-install Reference
RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite
RUN apt install -y libmcrypt-dev
RUN apt install -y libicu-dev
RUN docker-php-ext-install -j$(nproc) intl
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/