Skip to content

Instantly share code, notes, and snippets.

View lauroguedes's full-sized avatar
📚
Always learning...

Lauro Guedes (Léo WG) lauroguedes

📚
Always learning...
View GitHub Profile
@lauroguedes
lauroguedes / watch.sh
Last active June 4, 2020 12:11 — forked from rhukster/watch.sh
Watch script for wellington sassc wrapper
#!/bin/sh
# Install WWellington project (https://getwt.io/)
# Run this script in your root project where is your sass folder
#
# Configuration
#
# sass source
@lauroguedes
lauroguedes / docker-php-ext-install.md
Created January 28, 2020 17:07 — 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 docker-php-ext-install mcrypt
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
@lauroguedes
lauroguedes / git-update-fork.sh
Created January 21, 2020 19:56 — forked from rdeavila/git-update-fork.sh
Git: como atualizar um fork com as mudanças do original?
#!/bin/bash
# Adicione um novo remote; pode chamá-lo de "upstream":
git remote add upstream https://github.com/usuario/projeto.git
# Obtenha todos os branches deste novo remote,
# como o upstream/master por exemplo:
git fetch upstream