Skip to content

Instantly share code, notes, and snippets.

View SamuelNata's full-sized avatar

Samuel Natã de França Borges SamuelNata

View GitHub Profile
@SamuelNata
SamuelNata / gist:71a58a68938563dd2dae268424c9bf1c
Created September 11, 2021 14:59
Trust a lot of known PPAs
# Trust a lot of PPAs
apt-key adv --fetch-keys http://repo.aisits.id/trusted-keys
# Trusted PPAs when executed in 11/09/2021:
"MariaDB Enterprise Signing Key <signing-key@mariadb.com>"
"nginx signing key <signing-key@nginx.com>"
"Zabbix LLC <packager@zabbix.com>"
"NodeSource <gpg@nodesource.com>"
"Skype Linux Client Repository <se-um@microsoft.com>"
"Spotify Public Repository Signing Key <tux@spotify.com>"
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
-- -----------------------------------------------------
-- Schema test
-- -----------------------------------------------------
DROP SCHEMA IF EXISTS `test` ;