Code Monkey home page Code Monkey logo

yorubaname-twitter-bot's People

Contributors

afope avatar akamaozu avatar dadepo avatar esteedqueen avatar

Watchers

 avatar  avatar  avatar

yorubaname-twitter-bot's Issues

Make the bot more effecient

The current implementation for picking a name from the YorubaName dictionary and tweeting it is not efficient.

Right now, the bot follows the following steps to tweet:

  1. Queries the YorubaName end point for 5000 names
  2. Randomly picks a name from the returned 5000 names
    • (by shuffling the returned array and picking the first element)
  3. Tweeting the picked name

Having to query the API for 5000 names, only to pick one to tweet is very inefficient.

Another thing being omitted is the status of the name to be tweeted. Currently, there is no check in place to ensure that the randomly selected name is actually in a PUBLISHED state. Only names in PUBLISHED state should be tweeted as those are the ones publicly available in the dictionary.

This GitHub issue is to note this short-comings and to provide a fix by implementing a more efficient way to retrieve name to be tweeted while taking into consideration the published state.

The current API of YorubaName does not make it straightforward to randomly pick a name, but a suggestion that would be more efficient than the current implementation would be to:

  1. Instead of using only the count query parameter on the /v1/names endpoint, use a combination of the following supported query parameters: page, count and state to build a more efficient query, eg:

v1/names?count=[random count with a reasonable upper limit]&page=[random selected page number]&state=PUBLISHED

Check the YorubaName Swagger API page to explore the available endpoints.

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.