Skip to content

Instantly share code, notes, and snippets.

View paulo-raoni's full-sized avatar

Paulo Raoni paulo-raoni

  • Rio de Janeiro - Brasil
View GitHub Profile
@paulo-raoni
paulo-raoni / gomatrix
Created October 4, 2022 19:14 — forked from dhaiducek/gomatrix
Modified Matrix Effect (original from @khakimov)
#!/bin/bash
lines=$(tput lines)
cols=$(tput cols)
awkscript='
{
lines=$1
random_col=$3
letter=$4
@paulo-raoni
paulo-raoni / gitflowPassoAPasso.md
Last active May 22, 2024 17:49
GIT FLOW - Passo a passo

Conceitos

O que é Gitflow?

Resumidamente, o Gitflow é um modelo fortemente baseado em branches, mas focado nas entregas. Foi criado em 2010 e hoje em dia é muito utilizado por equipes de desenvolvedores em todo o mundo.

Definições das branchs no Gitflow:

Historic Branches:​

Ao invés de trabalhar apenas com a branch master, esse workflow utiliza dois branches principais para guardar histórico do projeto. A branch master guarda o histórico oficial das entregas, já a branch developer serve como integração entre todas as branches de funcionalidades (feature branches).

@paulo-raoni
paulo-raoni / importExportVsCodeExtensions.md
Created July 13, 2020 20:40
IMPORT/EXPORT VS CODE EXTENSIONS

Automatic

To do automatically use the Settings Sync extension.

It will allow:

  1. Export of your configuration and extensions
  2. Share it with coworkers and teams. You can update the configuration. Their settings will auto updated.

INSTALAÇÃO DO AMBIENTE DE DESENVOLVIMENTO JSF - ECLIPSE

PASSO 1 - INSTALAÇÕES

Lista de instalação:

  • TOMCAT 8.5.4
  • ECLIPSE OXYGEN 3A - Eclipse JAVAEE IDE for Web Developers
  • SDK Java 8

Docker Windows 10 Home Edition installation

Installation Failed: one prerequisite is not fulfilled

Docker Desktop requires Windows 10 Pro or Enterprise version 15063 to run.

The reason why Docker needs Windows Pro or Enterprise is that they are using Hyper-V and Containers. Let’s install these.

SOLUTION:

Install Hyper-V and Containers

@paulo-raoni
paulo-raoni / gitHelper.md
Last active August 7, 2020 21:37
Git Helper Commands

Commands (alternatives) to delete all branchs (locally) except master and developer:

git branch | grep -v "master\|developer" | xargs git branch -D

git branch -D git branch | grep -vE 'master|developer'

Command to delete remote branch:

git push origin --delete