Skip to content
View eberdellima's full-sized avatar
  • Ritech
  • Tirana ,Albania

Highlights

  • Pro

Block or report eberdellima

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
eberdellima/README.md

Hi, I'm Ergi 👋

I'm a software engineer @Ritech working primarily with web applications. I have experience with Javascript, PHP, and Go. Knowledge sharing is something I really enjoy and most of the time I'd be reading articles or hands-on trying things.

How to reach me:

Pinned Loading

  1. zippy-logger zippy-logger Public

    A logger wrapper for Winston that offers logging errors, infos and warnings.

    JavaScript 4

  2. graphql-pokedex graphql-pokedex Public archive

    A minimal GraphQL layer for the Pokeapi API.

    JavaScript 4

  3. ruby_koans_solutions ruby_koans_solutions Public

    Solutions for ruby koans

    Ruby 1

  4. go-moose go-moose Public

    Go-Moose is a web application for image sharing and discovery.

    Go 2

  5. minimal_blog minimal_blog Public

    A minimal blog project

    TypeScript 1

  6. Merge sort algorithm implemented in ... Merge sort algorithm implemented in javascript. Memoization utilized to reduce iterations count.
    1
    const mergeSort = function (unsortedArr) {
    2
    
    
    3
      function merge (leftArr, rightArr) {
    4
      
    5
        const sortedArr = [];