Skip to content

Instantly share code, notes, and snippets.

View gouvermxt's full-sized avatar
:electron:

Marcio Gouvea Silva gouvermxt

:electron:
View GitHub Profile
@gouvermxt
gouvermxt / database.yml
Last active August 17, 2017 18:37
Rails database configuration file for use with my Vagrantfile and PostgreSQL
default: &default
adapter: postgresql
pool: 5
timeout: 5000
host: localhost
username: vagrant
password: vagrant
development:
<<: *default
@gouvermxt
gouvermxt / queries.css
Last active October 20, 2017 11:59
Basic media queries for base.css
/* From big tablets to 1200px (widths smaller then the 1140px row) */
@media only screen and (max-width: 1200px) {
.row {
padding: 0 2%;
}
section {
padding-top: 2%;
}
}
@gouvermxt
gouvermxt / base.css
Last active October 20, 2017 11:58
My basic css style
/* -------------------------------------------------------------------------------------- */
/* BASIC SETUP */
/* -------------------------------------------------------------------------------------- */
* {
/* default css reset */
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* -------------------------------------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------------------------------------- */
header {
background-color: #3C4B5B;
@gouvermxt
gouvermxt / postgres-brew.md
Created June 4, 2019 15:26 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update