Skip to content
View munkacsitomi's full-sized avatar
  • Amsterdam, Netherlands
Block or Report

Block or report munkacsitomi

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. Parallel Async/Await in real life ex... Parallel Async/Await in real life example
    1
    const mockUsers = [
    2
      {
    3
        id: 1,
    4
        name: 'Tom',
    5
        deviceId: 102
  2. Sass scope with BEM Sass scope with BEM
    1
    <div class="card">
    2
      <div class="card__value">
    3
        Original
    4
      </div>
    5
    </div>
  3. Async/Await error handling Async/Await error handling
    1
    const fetchAndUpdatePosts = () => {
    2
      fetchPosts()
    3
        .then((posts) => {
    4
          updatePosts(posts)
    5
            .catch((err) => {
  4. Promise.all error handling Promise.all error handling
    1
    const pause = (data, time) => new Promise(resolve => setTimeout(() => resolve(data), time));
    2
    const pauseReject = (data, time) =>
    3
      new Promise((resolve, reject) =>
    4
        setTimeout(() => reject(new Error(`Something went wrong in the ${data} promise`)), time)
    5
      );