Skip to content

Instantly share code, notes, and snippets.

View francomile's full-sized avatar
Home based remote workforce

Rubens Franco francomile

Home based remote workforce
View GitHub Profile
@francomile
francomile / keybase.md
Created February 25, 2021 20:49
Keybase

Keybase proof

I hereby claim:

  • I am francomile on github.
  • I am francomile (https://keybase.io/francomile) on keybase.
  • I have a public key ASBv2KxwgTd6cgQgv8JCy_IFGIqS3HDnvAEQ8v5Aw1EcFwo

To claim this, I am signing this object:

@francomile
francomile / README.md
Created September 16, 2016 13:47 — forked from trinitronx/README.md
A shell script to install latest Ansible via pip + dependencies

omnibus-ansible

Install latest Ansible via pip + dependencies via a shell script

This file is used to install ansible in test kitchen when you set in the kitchen.yaml file

require_ansible_omnibus: true

By default test kitchen will always download and use the latest version of this install file.

WARNING: AS SOON AS YOU MERGE CODE HERE IT IS INSTANTLY AVAILABLE TO EVERYONE DOING OMNIBUS KITCHEN ANSIBLE INSTALLS:

@francomile
francomile / install_php_modules.sh
Created October 15, 2015 00:09
Install almost every PHP modules in Ubuntu/Debian servers
#!/bin/sh
sudo apt-cache search ^php5- | awk {'printf $1 " "'} | sed 's\php5-dbg\\g' | sed 's\php5-mysqlnd\\g' | sed 's\php5-xcache\\g' | sed 's\php5-fpm\\g' | sed 's\ -ms\\g'| xargs sudo apt-get -y install
@francomile
francomile / Vertical_Rythm_mixins.scss
Created January 22, 2015 23:26
Sass Vertical Rhythm @Mixins using REM
//===========================
// typographic scale and rem:
//===========================
// This @mixins will give fallback in pixels for browsers that don´t support REM
// Line-height and Base font-size:
$line-height: 1.6;
$base-font: 1rem;