Skip to content

Instantly share code, notes, and snippets.

View JoaoPauloFerrariSantAna's full-sized avatar
🤔
Focusing

JoaoPauloFerrariSantAna

🤔
Focusing
View GitHub Profile
@NickMcSweeney
NickMcSweeney / postgresql_plus_arch-linux.md
Last active July 18, 2024 16:10
Getting postgresql running on Arch Linux

Setup Postgresql

run postgresql with systemctl

Install postgres

latest

sudo pacman -S postgresql

specific version

find version & build from source

@SergioDiniz
SergioDiniz / hibernate.cfg.xml
Created November 18, 2016 21:58
hibernate.cfg.xml for PostgreSQL
<!--
~ Hibernate, Relational Persistence for Idiomatic Java
~
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
-->
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
@ruph
ruph / .vimrc
Last active July 18, 2024 14:34
vim settings
" Use vim settings, rather then vi settings (much better!)
" This must be first, because it changes other options as a side effect.
set nocompatible
set t_Co=256 " iTerm2 supports 256 color mode.
set ai " auto indenting
set history=100 " keep 100 lines of history
set ruler " show the cursor position
syntax on " syntax highlighting
filetype plugin on " use the file type plugins