Skip to content
View goodideagiver's full-sized avatar
💜
💜

Block or report goodideagiver

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

Hello I'm Karol

Frontend developer

Most recent project

Currently I'm working on an Open source project: BEWEBDEV.TECH

We're looking for contributors! Check out the projects repo

Important links

💻 All of my projects are available in my portfolio

📧 How to reach me Click here

Funfacts about me

📢 Now i'm in the process of learning Node.js

Stuff I know 🤓

My Skills

Want to learn 🧠

My Skills

Some stats

goodideagiver goodideagiver

goodideagiver

Pinned Loading

  1. NowYouKnowProgramming/webdev-learning-materials NowYouKnowProgramming/webdev-learning-materials Public

    Don't waste time - the highest quality resource hub for web developers (and not only!)

    TypeScript 58 11

  2. mobilo-app mobilo-app Public

    My engineering thesis - An application for calculating the cost of transport services for insurance companies

    TypeScript 2

  3. resolve-premier resolve-premier Public

    Quick start your way into editing videos using DaVinci Resolve

    HTML 1

  4. MutationObserve, observe element and... MutationObserve, observe element and callback every time element is added
    1
    function observeElement(selector, callback) {
    2
      const element = document.querySelector(selector);
    3
    
    
    4
      if (element) {
    5
        callback(element);