This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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. |