Skip to content
View szymonSys's full-sized avatar
  • Cracow

Block or report szymonSys

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

Pinned Loading

  1. transdict-app transdict-app Public

    TransDict App: intelligent translator and customizable dictionary for learning natural languages.

    JavaScript

  2. rummibuk-frontend rummibuk-frontend Public

    Front-end app for The Rummikub Online game (React.js). Back-end (Python) repository: https://github.com/szymonSys/rummikub

    JavaScript 1

  3. rummikub rummikub Public

    Back-end app for The Rummikub Online game (Python). Front-end (React.js) repository: https://github.com/szymonSys/rummibuk-frontend

    Python 1

  4. memoryGameJs memoryGameJs Public

    JavaScript object oriented project of Memory Game. It includes a ranking system, difficulty levels, and randomness of the board. Created for training and fun.

    JavaScript 1 1

  5. symfonyBlog symfonyBlog Public

    tech: PHP7, Symfony, Doctrine ORM, Twig, Bootstrap; Social blog platform with (among others) subscription, commenting and customization functions.

    PHP 1

  6. Code question - Szymon Sysło Code question - Szymon Sysło
    1
    // solution of a given problem - return new array based on two given arrays:
    2
    function makeSolution(firstList, secondList) {
    3
      const memoizeNumbers = memo();
    4
      const sortedArr = [...secondList].sort((a, b) => a - b);
    5
      return firstList.reduce(