Skip to content

Instantly share code, notes, and snippets.

View gabrielmoura's full-sized avatar

Gabriel Moura gabrielmoura

View GitHub Profile
{
"features": [
{
"geometry": {
"coordinates": [
-80.704,
37.325739
],
"type": "Point"
},
@gabrielmoura
gabrielmoura / deploy.sh
Created October 29, 2022 18:45 — forked from cagartner/deploy.sh
Laravel Push deploy Github actions example
#!/bin/sh
set -e
vendor/bin/phpunit
(git push) || true
git checkout production
git merge master
@gabrielmoura
gabrielmoura / PKGBUILD
Created February 8, 2024 22:37
Warp Terminal - Arch Linux
# Maintainer: irmluity <[email protected]>
pkgname=warp-terminal
pkgver=0.2024.01.30.16.52.stable_01
pkgrel=1
pkgdesc="Warp is a modern, Rust-based terminal with AI built in so you and your team can build great software, faster"
arch=(x86_64)
url='https://warp.dev'
license=('LicenseRef-warp')
depends=('hicolor-icon-theme' 'zlib' 'glibc')
@gabrielmoura
gabrielmoura / Dockerfile
Created March 2, 2024 22:16
Keycloak Tailwind Theme
FROM registry.access.redhat.com/ubi9 AS ubi-micro-build
RUN mkdir -p /mnt/rootfs
RUN dnf install --installroot /mnt/rootfs curl --releasever 9 --setopt install_weak_deps=false --nodocs -y && \
dnf --installroot /mnt/rootfs clean all && \
rpm --root /mnt/rootfs -e --nodeps setup
#####################################################################
FROM quay.io/keycloak/keycloak:23.0 as builder
# Enable health and metrics support
ENV KC_HEALTH_ENABLED=true

Keybase proof

I hereby claim:

  • I am gabrielmoura on github.
  • I am gabrielmoura (https://keybase.io/gabrielmoura) on keybase.
  • I have a public key whose fingerprint is 4659 D153 C67D D688 F6C0 9040 F912 98F4 1995 6378

To claim this, I am signing this object:

@gabrielmoura
gabrielmoura / simple_webdav.go
Created May 19, 2024 01:08
A simple WebDav server
package main
import (
"log"
"net/http"
"strings"
"golang.org/x/net/webdav"
)
@gabrielmoura
gabrielmoura / README.md
Last active September 12, 2024 03:09
Como Instalar o Maizzle no Laravel

Como Instalar o Maizzle no Laravel.

Maizzle é uma estrutura que ajuda você a criar rapidamente e-mails em HTML com Tailwind CSS e pós-processamento avançado específico para e-mails.

Recomendo a leitura da documentação em maizzle.com.

Instalação

pnpm install tailwindcss-box-shadow@"^2.0.3" \
 tailwindcss-email-variants@"^3.0.1" \