php.ini file configuration to docker:
xdebug.idekey = "VSCODE"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_port = 9000
xdebug.remote_host =
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| https://itunes.apple.com/us/app/sourcedrop/id520820413?mt=12&ign-mpt=uo%3D4 |
| <?php | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Extend blade so we can define a variable | |
| | <code> | |
| | @define $variable = "whatever" | |
| | </code> | |
| |-------------------------------------------------------------------------- | |
| */ |
| <?php | |
| $connect = mysql_connect('localhost', 'root', 'root'); | |
| ?> |
| #!/bin/bash | |
| #################### SCRIPT PARA BACKUP MYSQL #################### | |
| # Jeferson R. Costa <[email protected]> # | |
| # Created Feb, 2013 # | |
| # Update Feb, 2013 # | |
| # Definindo parametros do MySQL | |
| echo " -- Definindo parametros do MySQL ..." | |
| DB_NAME='dbname' |
telegramdesktop/tdesktop#1360 (comment)
This works for me on elementary OS 0.3 and 0.4
You should have ibus-unikey installed, if you don't do it with this command:
sudo apt-get install ibus-unikey
Now configure ibus through ibus-setup. To do this, run the command on a terminal and go to the input method tab.
Criar uma chave SSH Tutorial para Windows
Criar uma chave SSH Tutorial para Linux
| #!/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # forked by Gianluca Guarini | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep -E --quiet "$1" && eval "$2" | |
| } |