Skip to content
View wojnet's full-sized avatar
๐Ÿฅ
๐Ÿฅ

Block or report wojnet

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

๐Ÿ‘‹ Hi

My name's Wojciech, and I love programming. โ†“ Check out my projects โ†“


BANGERIFY is the social media app to share your hot takes on music. It's co-created with @dKasperek

MY PORTFOLIO no descripion needed

PASSGEN is a simple application made for generating strong and nearly impossible to remember passwords! The application will be updated to be more useful and still simple to use.

Pinned Loading

  1. bangerify-app bangerify-app Public

    Social media app. IOS version under development by @dKasperek

    JavaScript 1

  2. canvas-game canvas-game Public

    Game canvas

    JavaScript 3

  3. kret kret Public

    React & Parcel Template

  4. remove-duplicates-from-an-array.js remove-duplicates-from-an-array.js
    1
    const names = ["James", "James", "Mary", "William", "Emma", "Emma"];
    2
    const uniqueNames = [...new Set(names)];
    3
    
                  
    4
    console.log(uniqueNames); // ["James", "Mary", "William", "Emma"]