Code Monkey home page Code Monkey logo

Comments (7)

moos avatar moos commented on May 23, 2024

Not sure what you mean. Adding a code snippet might help.

from wordpos.

manchuwook avatar manchuwook commented on May 23, 2024
wordnet.list(function (err, list) {
    var filtered = Enumerable.from(list).where(function (word) {
            return word.length > 1 && cmudict.get(word) != null;
        }).toArray();
    console.log('Getting [' + filtered.length + '] words');

    for (i = filtered.length - 1; i >= 0; i--) {
        wordpos.lookup(filtered[i], console.log);
        filtered.splice(i, 1);
    }
});

from wordpos.

moos avatar moos commented on May 23, 2024

First confirm those files are there and you had no installation issues.

Second run the CLI making sure it is working. From your wordpos dir:

$ bin/wordpos-cli.js  def  apple pear
apple
  n: native Eurasian tree widely cultivated in many varieties for its firm round
ed edible fruits
  n: fruit with red or yellow or green skin and sweet to tart crisp whitish fles
h

pear
  n: Old World tree having sweet gritty-textured juicy fruit; widely cultivated
in many varieties
  n: sweet juicy gritty-textured fruit available in many varieties

I don't see anything wrong with the code. It should work as you have it, unless you're running into issues if filtered.length is very large.

About waiting before doing the next lookup, basically you want to do the next lookup in the callback function or use a promises library like https://github.com/kriskowal/q, for example.

from wordpos.

manchuwook avatar manchuwook commented on May 23, 2024

Filtered length ls 34,566; very large.

from wordpos.

moos avatar moos commented on May 23, 2024

Basically you're asking your system to open and search 4 multi-megabyte files 34,566 times simultaneously! Needless to say neither this library nor your computer (unless it's an IBM Watson) was meant for that.

from wordpos.

manchuwook avatar manchuwook commented on May 23, 2024

That's why I was asking for a suggestion and not actually wanting to submit it as a bug. I don't want to open them all at once and then check. I just want to open, check, close and move on to the next word. I don't care if it doesn't happen simultaneously.

from wordpos.

moos avatar moos commented on May 23, 2024

Fair enough -- my earlier comment about doing next lookup in the callback or using promises holds.

from wordpos.

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.