Skip to content
View myshov's full-sized avatar
🚲
bycyle mood
🚲
bycyle mood

Organizations

@f-o-r @JSPartyMeetup @defront
Block or Report

Block or report myshov

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. history-of-javascript history-of-javascript Public

    Project "History of JavaScript"

    JavaScript 890 32

  2. 2gis/mapgl-gltf 2gis/mapgl-gltf Public

    Three.js plugin for @2gis/mapgl

    TypeScript 2 2

  3. xkbswitch-macosx xkbswitch-macosx Public

    Console keyboard layout switcher for MacOS

    Objective-C 214 25

  4. awesome-mobile-web-development awesome-mobile-web-development Public

    All that you need to create a great mobile web experience

    1.2k 62

  5. programming_in_haskell programming_in_haskell Public

    My Solutions for Programming in Haskell by Graham Hutton

    Haskell 16 3

  6. 11 Ways to Invoke a Function 11 Ways to Invoke a Function
    1
    console.log(1);
    2
    (_ => console.log(2))();
    3
    eval('console.log(3);');
    4
    console.log.call(null, 4);
    5
    console.log.apply(null, [5]);