Skip to content

Instantly share code, notes, and snippets.

View kling-igor's full-sized avatar

Kling Igor kling-igor

View GitHub Profile
@kling-igor
kling-igor / Instructions-React-Native-Apple_Silicon-M1.md
Created April 22, 2022 07:01 — forked from yaroslav-beletsky/Instructions-React-Native-Apple_Silicon-M1.md
Instructions for pre-configuring the development environment for React Native developers on Mac OS (Apple Silicon/ M1)

Instructions for pre-configuring the development environment for React Native (Apple Silicon/ M1)

Xcode

First, let’s get Xcode and the command line tools installed. We can install Xcode via the App Store or by downloading it from the Apple developer site. Once we have Xcode installed (it will take a while), we need to install the command line tools as these are needed

@kling-igor
kling-igor / cloudSettings
Created October 2, 2018 14:05
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-10-02T14:04:35.231Z","extensionVersion":"v3.1.2"}
@kling-igor
kling-igor / gist:28378a68b756ee967cabad0ba1051a84
Last active February 26, 2018 19:50
JS Promise interruption
const thenable = {
then: function(resolve) {
this.resolve = resolve;
}
}
// interrupting promise
const interruptor = Promise.resolve(thenable);
// payload promise