Giter VIP home page Giter VIP logo

Comments (8)

mreinstein avatar mreinstein commented on May 28, 2024 2

This fork has my latest https://github.com/mreinstein/hyperx

from hyperx.

goto-bus-stop avatar goto-bus-stop commented on May 28, 2024 1

@mreinstein thanks for the interest 😸 I sent an invitation to the GitHub org. I can't invite to npm on my phone I think but I can do that later.

from hyperx.

goto-bus-stop avatar goto-bus-stop commented on May 28, 2024 1

Yeah I can't realistically commit to doing reviews. feel free to request them especially if you do need input on things, but I'm not actively using these projects at the moment so I think my opinions on direction are not the most important, and I may not find time/motivation to do much anyways 🙂

from hyperx.

mreinstein avatar mreinstein commented on May 28, 2024

I'd like to consider refactoring parse(str) to be an explicit state machine. Rather than having very long if/else if chains we could have a separate function for each state, something like this:

function open (c, m) {  }

function attr_key (c, m) {  }

var lookup = {
  OPEN: open,
  ATTR_KEY: attr_key,}

function parse (str) {
    var i, machine = {
         state: TEXT,
         res: [ ],
         reg: ''
    }

    for (i=0; i < str.length; i++)
      lookup[machine.state](str[i], machine)

    return machine.res
}

from hyperx.

rook2pawn avatar rook2pawn commented on May 28, 2024

Just ran into the #41 issue .. @goto-bus-stop @mreinstein I'd also like to volunteer to help maintain.

from hyperx.

mreinstein avatar mreinstein commented on May 28, 2024

I would love someone to take over ownership of this project but sadly it is a mausoleum.

from hyperx.

mreinstein avatar mreinstein commented on May 28, 2024

@goto-bus-stop @substack I'm still keen to maintain this project. Any chance of letting me do this? I use hyperx in my work and personal projects and I'm really not crazy about maintaining these personal forks if I can avoid it.

from hyperx.

mreinstein avatar mreinstein commented on May 28, 2024

from hyperx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.