VIM KEYBOARD SHORTCUTS
MOVEMENT
h - Move left
j - Move down
k - Move up
l - Move right
$ - Move to end of line
0 - Move to beginning of line (including whitespace)
h - Move left
j - Move down
k - Move up
l - Move right
$ - Move to end of line
0 - Move to beginning of line (including whitespace)
[user] | |
name = Jose Juan Reyes | |
email = neodevelop@gmail.com | |
[core] | |
editor = vim | |
pager = less -FRSX | |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
quotepath = false | |
excludesfile = /Users/makingdevs/.gitignore_global | |
commentChar = ";" |
""""""""""""""""""""""""""""""""""""" | |
" Lorenzo Sinisi Vimrc configuration | |
""""""""""""""""""""""""""""""""""""" | |
set nocompatible | |
syntax on | |
set nowrap | |
set ignorecase | |
set smartcase | |
set encoding=utf8 | |
set mouse=nicr |
The connection failed because by default psql
connects over UNIX sockets using peer
authentication, that requires the current UNIX user to have the same user name as psql
. So you will have to create the UNIX user postgres
and then login as postgres
or use sudo -u postgres psql database-name
for accessing the database (and psql
should not ask for a password).
If you cannot or do not want to create the UNIX user, like if you just want to connect to your database for ad hoc queries, forcing a socket connection using psql --host=localhost --dbname=database-name --username=postgres
(as pointed out by @meyerson answer) will solve your immediate problem.
But if you intend to force password authentication over Unix sockets instead of the peer method, try changing the following pg_hba.conf
* line:
from
set-option -g default-command "reattach-to-user-namespace -l ${SHELL}" | |
set -g prefix C-a | |
unbind C-b | |
set -sg escape-time 1 | |
set -g base-index 1 | |
setw -g pane-base-index 1 | |
bind r source-file ~/.tmux.conf \; display "Configuración recargada" | |
bind C-a send-prefix | |
bind | split-window -h -c "#{pane_current_path}" |
void setup() { | |
Serial.begin(57600); | |
for(int i = 2; i <= 10; i+=2){ | |
pinMode(i, OUTPUT); | |
} | |
} | |
void loop() { | |
String s = ""; |
tail -f faltas_suplencias.log | awk ' | |
/info/ {print "\033[32m" $0 "\033[39m"} | |
/debug/ {print "\033[34m" $0 "\033[39m"} | |
/warn/ {print "\033[33m" $0 "\033[39m"} | |
/error/ {print "\033[31m" $0 "\033[39m"} | |
' | |
tail -f ecto_sql.log | awk ' | |
/SELECT/ {print "\033[32m" $0 "\033[39m"} | |
/debug/ {print "\033[32m" $0 "\033[39m"} |
Hola,
Estamos buscando un desarrollador Java para la Ciudad de México, que tenga conocimientos sólidos de desarrollo web. Los requisitos son los siguientes:
El siguiente es un ejercicio para codificar, refactorizar y hacer pruebas, en el cual puedes invertir de 15 a 30 minutos para resolverlo gradualmente.
A type is a collection of related values
For example type Bool