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

Organizations

@dumptecnologia

Block or report medeirosinacio

Report abuse

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

Report abuse
medeirosinacio/README.md
// PHP 8 is 💙, and runs on ☕️

$doug = new Person(
    name:  'Douglas Medeiros',
    email: 'eu@douglasmedeiros.dev',
    birthDate: '1993-06-05',
);

$doug->install(new Life\PackageManager([
    'curiosity',
    'coffee-dependency',
    'debugging-skills',
]));

$mySkills = new Life\Skills(
    languages:   ['PHP', 'Python', 'Bash', 'JavaScript', 'PowerShell', 'Go', 'Ruby', 'HTML/CSS', ...],
    editors:     ['PHPStorm (dark mode only)', 'VS Code', 'Notepad++ (for nostalgia)', 'Vim (how to quit?)', ...],
    frameworks:  ['HyperF', 'Bootstrap', 'Laravel', 'Yii2', 'jQuery (still alive!)', 'Flask', ...],
    databases:   ['PostgreSQL', 'MySQL', 'Redis', 'MongoDB', 'AWS Aurora', 'SQLite'],
    techStack:   [
        'Git', 'Gitlab CI/CD', 'Markdown', 'Postman',
        'Docker', 'Docker Compose', 'RabbitMQ', 'WebSocket',
        'Vagrant', 'WSL2', 'Zsh', 'Nginx', 'PHP-FPM', 'Jekyll',
        'Memcached', 'MailHog', 'CentOS', 'Ubuntu', ...
    ]
);

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

try {
    while ($developer->hasEnergy() || $developer->hasCoffee()) {
        $developer->code();
    }
} catch (Life\Exceptions\BurnoutException $e) {
    $developer->rest();
    $developer->hydrate();
    $developer->comeBackStronger();
}

Pinned Loading

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

    Forked from php-pds/skeleton

    Basic PHP Project Structure

    PHP 8 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 5

  3. php-exec-multithread php-exec-multithread Public

    A thread implementation in PHP using the exec function.

    PHP 1

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

    A complete Jekyll template with bootstrap for Github Pages!

    HTML 6 2

  5. php-docker-run php-docker-run Public

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

    PHP

  6. php-mongo-ttl-index-change-stream php-mongo-ttl-index-change-stream Public

    This repository contains an example PHP application demonstrating the use of MongoDB TTL indexes and change streams.

    PHP