Skip to content

Instantly share code, notes, and snippets.

View mattmezza's full-sized avatar

Matteo Merola mattmezza

View GitHub Profile
{
"basics": {
"name": "Matteo Merola",
"label": "Technical Lead @ KLM - Royal Dutch Arlines",
"picture": "https://media-exp1.licdn.com/dms/image/C4D03AQFoWSVeBaSmyA/profile-displayphoto-shrink_200_200/0/1517257465481?e=1619654400&v=beta&t=VXQBzXYgQn4hZJQk4ckZsZaYLYvUaodfjV9FGqVTOxk",
"email": "matteo@merola.co",
"phone": "+31653707491",
"website": "https://matteo.merola.co",
"summary": "I am a strategist and solution-oriented person specialized in the IT field. I thrive in challenging and fast paced environments where my performance directly impacts the bottom line. I have a solid knowledge on IT and especially on software engineering. I have impressive organizational leadership and decision-making skills. I am a firm believer in Open Source software. I’m a sociable person, keen to building new relationships in business, with stakeholder and colleagues. I really believe in the power of the team as the only way to create extraordinary added value. I l
@mattmezza
mattmezza / ftpbackup.sh
Last active September 28, 2018 06:54
Super Simple Backup System, a very simple system to automatically backup mysql and ftp.
#!/bin/bash
OUTDIR=$1
BACKUP=$OUTDIR/tmp
NOW=$(date +"%d-%m-%Y")
# clean up tmp dir
rm -f -r $BACKUP/*
# backup a folder of a website
FILE=fs-rootfolder-full.$NOW
@mattmezza
mattmezza / vhost.sh
Last active November 30, 2023 08:30
bash script to create virtual host vhost with apache httpd and CentOs 7
#!/bin/bash
# This script is used for create virtual hosts on CentOs.
# Created by alexnogard from http://alexnogard.com
# Improved by mattmezza from http://you.canmakethat.com
# Feel free to modify it
# PARAMETERS
#
# $usr - User
# $dir - directory of web files
# $servn - webserver address without www.