Skip to content
View medeirosinacio's full-sized avatar
🤙
Stackoverflow Oriented Programming
🤙
Stackoverflow Oriented Programming

Organizations

@dumptecnologia
Block or Report

Block or report medeirosinacio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
medeirosinacio/README.md
// PHP 8 is <3

$developer = new Dev(
    name:  'Douglas Medeiros',
    email: 'eu@douglasmedeiros.dev',
    age:   30
);

$developer->setStatus(new Life\Status(
    learning:   ['Java', 'Software Architecture'],
    exploring:  ['vue.js', 'Flask'],
    aiming:     ['Empower the Community']
));

$mySkills = new Life\Skills(
    languages:   ['PHP', 'Python', 'Bash', 'HTML/CSS', 'JavaScript', 'PowerShell'],
    editors:     ['PHPStorm', 'VS Code', 'Notepad++', 'Vim'],
    frameworks:  ['Bootstrap', 'Laravel', 'Yii2', 'jQuery'],
    databases:   ['PostgreSQL', 'MySQL', 'Redis'],
    techStack:   [
        'Git', 'Gitlab CI/CD', 'Markdown', 'Postman',
        'Docker', 'Docker Compose', 'RabbitMQ', 'WebSocket',
        'Vagrant', 'WSL2', 'Zsh', 'Nginx', 'PHP-FPM', 'Jekyll',
        'Memcached', 'MailHog', 'CentOS', 'Ubuntu'
    ]
);

$developerRole = new Career\Developer(person: $developer, skills: $mySkills);

while ($developerRole->hasCoffee())  
{
    $developerRole->code();
}

Pinned

  1. basic-php-project-structure basic-php-project-structure Public template

    Forked from php-pds/skeleton

    Basic PHP Project Structure

    PHP 7 4

  2. docker-compose-nginx-loadbalance-multiple-domains docker-compose-nginx-loadbalance-multiple-domains Public

    The ultimate easy example with one docker-compose template to nginx web server multiple domains and load balance

    11 4

  3. library library Public

    Biblioteca pessoal de códigos, configurações, scripts e algumas coizitas mais.

    Shell 2

  4. php-exec-multithread php-exec-multithread Public

    A thread implementation in PHP using the exec function.

    PHP 1

  5. jekyll-bootstrap-github-pages jekyll-bootstrap-github-pages Public template

    A complete Jekyll template with bootstrap for Github Pages!

    HTML 4 1

  6. php-docker-run php-docker-run Public

    Proof of concept for running the "docker run" command with PHP + Docker API

    PHP