Skip to content

ankeorum/glopezf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 

Repository files navigation

Hi there 👋, my name is Gonzalo López

My current job title is "Systems Administrator" although I feel much more identified as "Full Stack Developer and fire extinguiser professional", on my daily tasks I do:

  • PHP PHP coding and recoding
  • SQL Server SQL Server database administration
  • Algorithms Implementation and creation of new procedures within our current management systems
  • Algorithms Azure administration
  • Algorithms Exchange online administration
  • Algorithms Learning and training myself constantly
  • Algorithms Microsoft 365 Administration

On all these areas I have been working for years, some of them for 10 or more years and others (the most recent ones) for less years. These experiences helped me to reach my current status of "man for everything" where you can reach me for configuring and admistering your network and also for coding an entire new system on PHP, javascript, java or even python (maybe this one with more difficulties as it was my last trained).

I love training myself and continue growing on this huge and incredible world which is IT.

<?php
class Skill {
  // Properties
  public $name;
  public $skillLevel;
  public $experience; // years

  // Methods
  function set_name($name) {
    $this->name = $name;
  }
  function get_name() {
    return $this->name;
  }
  function set_skillLevel($skillLevel) {
    $this->skillLevel = $skillLevel;
  }
  function get_skillLevel() {
    return $this->skillLevel;
  }  
  function set_experience($experience) {
    $this->experience = $experience;
  }
  function get_experience() {
    return $this->experience." years";
  }
}

$skill1 = new Skill();
$skill1->set_name = 'PHP';
$skill1->set_skillLevel = 'expert';
$skill1->experience = 10;

$skill2 = new Skill();
$skill2->set_name = 'JavaScript';
$skill2->set_skillLevel = 'medium';
$skill2->experience = 2;

$skill3 = new Skill();
$skill3->set_name = 'jQuery';
$skill3->set_skillLevel = 'advanced';
$skill3->experience = 3;

$skill4 = new Skill();
$skill4->set_name = 'SQLServer';
$skill4->set_skillLevel = 'expert';
$skill4->experience = 10;

$skill5 = new Skill();
$skill5->set_name = 'Microsoft365Administration';
$skill5->set_skillLevel = 'advanced';
$skill5->experience = 2;

$skill6 = new Skill();
$skill6->set_name = 'AzureAdministration';
$skill6->set_skillLevel = 'medium';
$skill6->experience = 1;

$skill7 = new Skill();
$skill7->set_name = 'Virtualisation_vmWare';
$skill7->set_skillLevel = 'medium';
$skill7->experience = 6;

$skill8 = new Skill();
$skill8->set_name = 'WindowsServer';
$skill8->set_skillLevel = 'high';
$skill8->experience = 6;
?>

About

Public Description

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published