Skip to content
View zuxbrt's full-sized avatar
🧬
🧬
Block or Report

Block or report zuxbrt

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
zuxbrt/readme.MD
<?php

namespace zuxbrt;

class About extends Me
{
    public function yearsOfExperience(): integer
    {
        $started = new DateTime("2018-05-01");
        $today = new DateTime();
        $total = $started->diff($today);
        return $total->y;
    }

    public function basedIn(): array
    {
        return [
            'country' => 'Bosnia and Herzegovina',
            'city' => 'Sarajevo'         
        ];
    }

    public function currentlyWorkingAt(): array
    {
        return [
            'company' => 'Purplekey',
            'position' => 'Full Stack Developer'         
        ];
    }

    public function getBackendStack(): array
    {
        return [
            PHP::class,
            Laravel::class,
            MySQL::class,
            Ubuntu::class
        ];
    }

    public function goals(): string
    {
        return 'learn more and expand my knowledge and my current stack';
    }
}
const jsSkills = { 
  frameworksToolsAndLibraries: "React", "NuxtJS", "VueJs", "ThreeJs", "EmberJs", "Node"
  expandingKnowledgeAbout: "Typescript", "React"
}

Pinned Loading

  1. Laravel Pagination helper class Laravel Pagination helper class
    1
    <?php
    2
    
                  
    3
    // composer json
    4
    // "php": "^7.3|^8.0",
    5
    // "laravel/framework": "^8.75"
  2. Laravel eloquent search helper class... Laravel eloquent search helper class with pagination
    1
    <?php
    2
    
                  
    3
    // composer json
    4
    // "php": "^7.3|^8.0",
    5
    // "laravel/framework": "^8.75"
  3. Laravel blade partial for checkbox g... Laravel blade partial for checkbox group with inputs.
    1
    <?php
    2
    
                  
    3
    namespace App;
    4
    
                  
    5
    use Illuminate\Database\Eloquent\Model;
  4. chatapp chatapp Public

    Real-Time Chat Web application made with Node.js & Socket.io

    JavaScript

  5. phpmvc phpmvc Public

    PHP MVC ( Model-View-Controller ) from scratch

    PHP

  6. laravel-vue-spa laravel-vue-spa Public

    Single page application with Laravel 8 & Vue.js

    PHP