Skip to content

Instantly share code, notes, and snippets.

@lbbedendo
lbbedendo / pgadmin4_install_linux_mint.sh
Last active July 6, 2024 16:08
Instalando o pgAdmin 4 no Linux Mint (web e/ou desktop)
# Adaptado da página oficial do pgAdmin: https://www.pgadmin.org/download/pgadmin-4-apt/
# Testado na versão 20.3 (una)
#
# Setup the repository
#
# Install the public key for the repository (if not done previously):
sudo curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add
@ijd65
ijd65 / Merge Across
Created July 25, 2013 00:27
Merge multiple worksheets across the worksheet - specify range to be copied in the set copy range parameter
Sub Merge_Across()
Dim sh As Worksheet
Dim DestSh As Worksheet
Dim Last As Long
Dim CopyRng As Range
With Application
.ScreenUpdating = False
.EnableEvents = False
End With