Skip to content
View UseTheFork's full-sized avatar
๐Ÿคฎ
๐Ÿคฎ
  • 13:58 (UTC -05:00)

Organizations

@Robo-Cowboys

Block or report UseTheFork

Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
UseTheFork/README.md
github contribution grid snake animation

<?php

declare(strict_types=1);

namespace App\Domain\Developer;

/**
 * ๐Ÿด UseTheFork
 * 
 * A full-stack developer who turns coffee into code
 */
class UseTheFork extends BaseDeveloper
{

    public function getMood(): string
    {
        return "๐Ÿคฎ";
    }

    public function getLanguages(): array
    {
        return [
            'PHP ๐Ÿ˜',
            'Python ๐Ÿ',
            'JavaScript ๐ŸŸจ',
            'TypeScript ๐Ÿ’™',
            'Nix โ„๏ธ',
            'Shell ๐Ÿš',
            'HTML5 ๐ŸŒ',
            'CSS3 ๐ŸŽจ',
            'Markdown ๐Ÿ“'
          ];
    }

    public function getFrameworks(): array
    {
        return [
            'Laravel โค๏ธ',
            'React โš›๏ธ',
            'FastAPI ๐Ÿš€',
            'Vite โšก',
            'Next.js โ–ฒ',
            'Node.js ๐ŸŸข',
            'Tailwind CSS ๐Ÿ’จ',
            'Bootstrap ๐Ÿ…ฑ๏ธ',
            'Sass ๐Ÿ’…',
            'MUI ๐ŸŽญ'
            ];
    }

    public function getDatabases(): array
    {
        return [
            'PostgreSQL ๐Ÿ˜',
            'MySQL ๐Ÿฌ',
            'Redis ๐Ÿ”ด',
            'Elasticsearch ๐Ÿ”',
            'Snowflake โ„๏ธ'
            ];
    }

    public function getTools(): array
    {
        return [
            'NPM ๐Ÿ“ฆ',
            'UV ๐Ÿš€'
            ];
    }

    public function getAI(): array
    {
        return [
            'OpenAI ๐Ÿค–',
            'Anthropic ๐Ÿง ',
            'Google Gemini ๐Ÿ’Ž'
            ];
    }

    public function getSkills(): array
    {
        return [
            'Languages' => $this->getLanguages(),
            'Frameworks' => $this->getFrameworks(),
            'Databases' => $this->getDatabases(),
            'Tools' => $this->getTools(),
            'AI' => $this->getAI(),
        ];
    }
}

Pinned Loading

  1. snowblower snowblower Public

    โ„๏ธ ๐Ÿ’จ A Nix-based development environment manager that provides consistent, reproducible environments with minimal configuration. All flake, no fluff.

    Nix 2

  2. synapse synapse Public

    Synapse is a powerful package that enables seamless integration and management of AI agents within Laravel applications. Inspired by Langchain and Laravel Saloon, it provides a flexible framework tโ€ฆ

    PHP 50 6

  3. byte byte Public

    A human-in-the-loop AI coding agent that keeps you in control.

    Python