Skip to content

Instantly share code, notes, and snippets.

View MateusMaceedo's full-sized avatar

Mateus Macedo MateusMaceedo

View GitHub Profile
@MateusMaceedo
MateusMaceedo / settings.json
Last active September 30, 2021 22:18
VSCode Settings (Updated)
{
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"polacode.backgroundColor": "#6633CC",
"editor.tabSize": 2,
"editor.fontSize": 16,
@MateusMaceedo
MateusMaceedo / .gitconfig
Last active May 5, 2021 01:02
.gitconfig
[user]
email = mateusouza2014@live.com
name = MateusMaceedo
[code]
editor = code --wait
[alias]
ci = commit
co = checkout
cm = checkout master
@MateusMaceedo
MateusMaceedo / BancoDeDados.md
Last active March 13, 2021 01:36
Modelagem de Dados

SQL languages

DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.

DML is short name of Data Manipulation Language which deals with data manipulation, and includes most common SQL statements such SELECT, INSERT, UPDATE, DELETE etc, and it is used to store, modify, retrieve, delete and update data in database.

DCL is short name of Data Control Language which includes commands such as GRANT, and mostly concerned with rights, permissions and other controls of the database system.

Datatypes

Text types

@MateusMaceedo
MateusMaceedo / .hyper.js
Last active February 21, 2021 18:08
Terminal Hyper (customizado)
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@MateusMaceedo
MateusMaceedo / settings.json
Last active September 17, 2021 00:01
Minhas configurações de VSCode 2021
{
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"polacode.backgroundColor": "#6633CC",
"editor.tabSize": 2,
"editor.fontSize": 16,
@MateusMaceedo
MateusMaceedo / install-extensions.sh
Created February 17, 2021 01:38
Script shell para instalar minhas extensões de VSCode
code --install-extension aaron-bond.better-comments &&
code --install-extension adpyke.codesnap &&
code --install-extension albert.TabOut &&
code --install-extension alefragnani.project-manager &&
code --install-extension aliariff.auto-add-brackets &&
code --install-extension andys8.jest-snippets &&
code --install-extension auiworks.amvim &&
code --install-extension bierner.markdown-emoji &&
code --install-extension bierner.markdown-preview-github-styles &&
code --install-extension bigous.vscode-multi-line-tricks &&