Skip to content
View mindon's full-sized avatar
🙃
zig, deno and hx, sometimes go & qt
🙃
zig, deno and hx, sometimes go & qt

Block or report mindon

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. an-example-nanovg.zig an-example-nanovg.zig Public

    A solo example on using nanvg.zig

    Zig

  2. hello-zig-cpp hello-zig-cpp Public

    A demo how to call c++ from Zig

    Zig

  3. packup packup Public

    Forked from kt3k/packup

    📦 Zero-config web application packager in Deno

    TypeScript 1

  4. deno.lit-and-mw3.demo deno.lit-and-mw3.demo Public

    Packup/Deno Typescript Demo using LitElement and Material Design 3 (Material Web), with localization and npm~ for local npm modules

    TypeScript 2 1

  5. nodeeditor nodeeditor Public

    Forked from paceholder/nodeeditor

    Qt Node Editor. Dataflow programming framework

    C++

  6. sort a object array with string attr... sort a object array with string attributes: descend +<->, ascend -<+>
    1
    const arr = [{attr:'x', value: 2}, {attr:'y', value: 2}, {attr:'z', value: 1}];
    2
    
                  
    3
    // descend +<->
    4
    arr.sort((a,b,x='attr')=>+(a[x]<b[x])-(a[x]>b[x]));
    5
    console.log(arr.slice(0));