This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Better Align | |
Descrição: Alinha o código com base em dois pontos(:), atribuições(=,+=,-=,*=,/=) e cetas (=>) | |
Site: https://github.com/WarWithinMe/better-align | |
GitLens — Git supercharged | |
Descrição: Várias funcionalidades para Git. Blame para linha, hovers, gotas (na numeração de linhas do editor) | |
Site: https://gitlens.amod.io/ | |
PHP Getters & Setters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET SESSION sql_mode = 'STRICT_ALL_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ver as informações de autor e comitador | |
git log --pretty=fuller | |
# faz a substutuição | |
git filter-branch -f --commit-filter ' | |
if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]; | |
then | |
GIT_AUTHOR_NAME="Ricardo Pereira"; | |
GIT_AUTHOR_EMAIL="[email protected]"; | |
GIT_COMMITTER_NAME="Ricardo Pereira"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pdflatex meu-documento.tex | |
ou | |
pdflatex /caminho/para/meu-documento.tex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\begin{document} | |
Este é meu primeiro documento escrito com Latex!! | |
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install -y texlive texlive-latex-extra texlive-lang-portuguese texlive-fonts-recommended texlive-extra-utils texlive-generic-extra texlive-lang-portuguese texlive-latex-extra texlive-pictures texlive-plain-extra texlive-publishers texlive-science-doc texlive-science; |
NewerOlder