Skip to content

Instantly share code, notes, and snippets.

View bcdonadio's full-sized avatar
💼
Hard at work

Bernardo Donadio bcdonadio

💼
Hard at work
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bcdonadio on github.
  • I am bcdonadio (https://keybase.io/bcdonadio) on keybase.
  • I have a public key whose fingerprint is 254F 71E4 49AA 7674 F91F 6D3D BE60 3DF6 5126 DD90

To claim this, I am signing this object:

####INICIO rsync_dhcp.te####
module rsync_dhcp 1.1;
require {
type rsync_t;
type dhcp_etc_t;
class dir { getattr search };
class file { read getattr open };
}
allow rsync_t dhcp_etc_t:dir { getattr search };
@bcdonadio
bcdonadio / Install ABNTex2
Created February 26, 2016 10:48
Command to install ABNTex2 and dependencies for the models
dnf install texlive-abntex2 texlive-babel-portuges texlive-babel-french texlive-hyphen-portuguese texlive-hyphen-french texlive-multirow texlive-lipsum
@bcdonadio
bcdonadio / vim_pluginstall.sh
Last active August 2, 2016 00:51
Vim plugins installer
#!/bin/bash
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
git clone https://github.com/Valloric/YouCompleteMe ~/.vim/bundle/YouCompleteMe
cd ~/.vim/bundle/YouCompleteMe
git submodule update --init --recursive
rm -rf ~/.ycm_build
mkdir ~/.ycm_build
cd ~/.ycm_build
cmake -G "Unix Makefiles" -DUSE_SYSTEM_LIBCLANG=ON . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp