Skip to content
View Sendao's full-sized avatar

Block or report Sendao

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. AoC AoC Public

    JavaScript

  2. RadServer RadServer Public

    Node.js https+sockets compatible server with a few goodies, including Stripe integration and custom database.

    JavaScript

  3. IsoSpells IsoSpells Public

    A bunch of web pages that create various interesting effects using word dynamics.

    JavaScript 1

  4. Llamao Llamao Public

    Llama.cpp with multi-agent support for one GPU.

    C++ 1

  5. brainPower.js brainPower.js
    1
    var mostPoints = function(questions) {
    2
        var dp = new Array(questions.length).fill(0);
    3
    
                  
    4
        dp[ dp.length-1 ] = questions[ questions.length-1 ][0];
    5
    
                  
  6. Solve expressions using js Solve expressions using js
    1
    let solve = function( tokens, start ) {
    2
      var end = tokens.length;
    3
      
    4
      for( i=start; i<end; i++ ) {
    5
        if( tokens[i] == '(' ) {