Skip to content
View jakub-g's full-sized avatar
  • Antibes, France
  • 22:05 (UTC +02:00)

Sponsoring

@nzakas
@marijnh

Organizations

@DataDog
Block or Report

Block or report jakub-g

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

  1. git-resolve-conflict git-resolve-conflict Public

    💲 ➕ ➖ ✅ Resolve merge conflict from command line, in one file, using given strategy (--ours, --theirs, --union)

    Shell 51 11

  2. git-move-folder-between-repos-keep-history git-move-folder-between-repos-keep-history Public

    💲 ➕ ➖ ✅ Move folder from one git repo to another, with full history.

    Shell 7 7

  3. async scripts, defer scripts, module... async scripts, defer scripts, module scripts: explainer, comparison, and gotchas
    1
    # `<script> async, defer, async defer, module, nomodule, src, inline` - the cheat sheet
    2
    
                  
    3
    With the addition of ES modules, there's now no fewer than 24 ways to load your JS code: (inline|not inline) x (defer|no defer) x (async|no async) x (type=text/javascript | type=module | nomodule) -- and each of them is subtly different.
    4
    
                  
    5
    This document is a comparison of various ways the `<script>` tags in HTML are processed depending on the attributes set.