Skip to content

Instantly share code, notes, and snippets.

View orboan's full-sized avatar

Oriol Boix Anfosso orboan

View GitHub Profile
#!/bin/bash
git_it_bin='#!/bin/bash
export GIT_IT_HOME="/opt/apps/Git-it-Linux-x64"
$GIT_IT_HOME/Git-it > /dev/null 2>&1'
git_it_desktop="[Desktop Entry]
Encoding=UTF-8
Name=Git-it
Comment=Git it electron
@orboan
orboan / Vagrantfile
Created February 23, 2018 12:51
vagrantfile for iawide
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@orboan
orboan / iawide.sh
Created February 23, 2018 12:48
simple development environment for php, with apache, mariadb and cloud9
#!/bin/bash
if [[ "$PWD" == "$HOME" ]]; then
echo
echo "Please run this script from within a dedicated subdirectory of $HOME directory."
echo
exit 1
fi
################
@orboan
orboan / ncc-run.sh
Last active August 31, 2018 14:30
nextcloud - collabora online integration in a Centos 7 local virtual machine with self signed certs using certbot and a local boulder server
#!/bin/bash
## nextcloud - collabora online integration in a Centos 7 local virtual machine
## with self signed certs using certbot and a local boulder server
##
## Author: Oriol Boix Anfosso <dev@orboan.com> orboan.com
## This script is licensed under GPLv2
## git, certbot, docker and docker-compose must be installed!
## Be aware in case you already have a directory called certs in your home, not related with this project.