Skip to content

Instantly share code, notes, and snippets.

@tomazcunha
tomazcunha / MariaDB.md
Last active January 10, 2025 23:31 — forked from Jonasdero/MariaDB.md
MariaDB Commands Cheatsheet
@tomazcunha
tomazcunha / sql.sublime-completions
Last active July 17, 2024 10:17 — forked from tomiyap/sql.sublime-completions
Sublime Text Autocomplete for SQL
//Place this inside ~/Library/Application Support/Sublime Text/Packages/
//Linux: ~/.config/sublime-text/Packages/User/
//This is for SQL, so the file type of the new file must be .sql.
//You might need to add this if autocomplete doesn't appear
//Put in ~/Library/Application Support/Sublime Text/Packages/user/Preferences.sublime-settings
//{
// "auto_complete_selector": "source, text"
//}
@tomazcunha
tomazcunha / ArgoUML.sh
Created February 29, 2020 19:39 — forked from henriquemoody/ArgoUML.sh
Install ArgoUML on linux
#!/bin/sh
if [ "root" != "$(whoami)" ]; then
echo "You must run this command as root" 1>&2
exit 1
fi
set -x
# Download and extract
if [ ! -z "${1}" ]; then
@tomazcunha
tomazcunha / git.md
Last active April 22, 2018 02:23 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

#GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda