Caiu no IntelliJ agora?
Aprenda só esses:
| Tipo de Atalho | IntelliJ IDEA |
|---|
1 - Primeiramente vamos fazer a instalação do nvm (node version manager - https://github.com/creationix/nvm) através do nosso gerenciador de pacotes yaourt:
$ yaourt -S nvm
2 - Depois vamos adicionar o nvm ao nosso shell, no meu caso o zshrc:
$ echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.zshrc
$ source .zshrc
| [mysqld] | |
| # Set the SQL mode to strict | |
| sql_mode="STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER" | |
| explicit_defaults_for_timestamp=1 | |
| bind-address=0.0.0.0 |
| #!/bin/bash | |
| # | |
| # Author: Sameer Naik <[email protected]> | |
| # Gist: https://gist.github.com/sameersbn/dd24dfdd13bc472d11a5 | |
| # Short Url (raw): http://goo.gl/iJcvCP | |
| # | |
| # Installs a bunch of plugins for the docker-redmine image | |
| # | |
| # Usage: | |
| # $ mkdir -p /opt/redmine/data/plugins |
| #!/bin/bash | |
| # | |
| # Author: Sameer Naik <[email protected]> | |
| # Gist: https://gist.github.com/sameersbn/aaa1b7bb064703c1e23c | |
| # Short Url (raw): http://goo.gl/deKDpp | |
| # | |
| # Installs a bunch of themes for the docker-redmine image | |
| # | |
| # Usage: | |
| # $ mkdir -p /opt/redmine/data/themes |
| { | |
| "estados": [ | |
| { | |
| "sigla": "AC", | |
| "nome": "Acre", | |
| "cidades": [ | |
| "Acrelândia", | |
| "Assis Brasil", | |
| "Brasiléia", | |
| "Bujari", |
| import java.util.stream.Stream; | |
| import javafx.collections.FXCollections; | |
| import javafx.collections.ObservableList; | |
| import javafx.event.Event; | |
| import javafx.scene.control.ComboBox; | |
| import javafx.scene.control.Tooltip; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.input.KeyEvent; | |
| import javafx.stage.Window; |
| <select name="estados-brasil"> | |
| <option value="AC">Acre</option> | |
| <option value="AL">Alagoas</option> | |
| <option value="AP">Amapá</option> | |
| <option value="AM">Amazonas</option> | |
| <option value="BA">Bahia</option> | |
| <option value="CE">Ceará</option> | |
| <option value="DF">Distrito Federal</option> | |
| <option value="ES">Espírito Santo</option> | |
| <option value="GO">Goiás</option> |
| import javafx.application.Application; | |
| import javafx.beans.value.ChangeListener; | |
| import javafx.beans.value.ObservableValue; | |
| import javafx.scene.Scene; | |
| import javafx.scene.web.WebEngine; | |
| import javafx.scene.web.WebView; | |
| import javafx.stage.Stage; | |
| import org.w3c.dom.Document; | |
| /** |
| Comandos uteis do oracle para obter configiurações: | |
| Parâmetros da NLS: | |
| => Select * from nls_database_parameters | |
| => Select * from nls_session_parameters | |
| => Select * from nls_instance_parameters | |
| Exibe os valores de database_parameters | |
| => SELECT name,value$ from sys.props$ where name like '%NLS_LANG%' | |
| => SELECT name,value$ from sys.props$ where name like '%NLS_CHAR%' | |
| => SELECT name,value$ from sys.props$ where name like '%_CHARACTER%' |