All Questions
Tagged with api asynchronous
7 questions
3
votes
1
answer
82
views
Node.js package that retrieves data from an API, formats it and sends it out via email to a distribution list
I've created a Node.js package that retrieves data from Icinga (a monitoring platform), formats it and passes it off to a class that generates some HTML and then sends it all out as an email.
The ...
2
votes
2
answers
3k
views
Adding some wait time between API requests to avoid overloading the server
In Shopify a product can belong to a collection.
I have written a method which accepts an organisation. It would then get a list of collections that this organisation has from Shopify. Finally, it has ...
3
votes
0
answers
322
views
Middleware which lets developer maintain dynamic context
Problem Statement: Users can chat while the replies of the chatbot are based on past messages.
So the chatbot needs to have the context of the previous messages and reply accordingly. Here is ...
4
votes
0
answers
861
views
Update UI once all API calls are done
I'm learning Swift at the moment but I would like to produce well-organised code. The goal of my little app is to display the weather of my current location.
I use :
the API of Darksky : https://...
2
votes
0
answers
365
views
API design for loading OpenGL textures asynchronously
What do you think about this API for loading OpenGL textures asynchronously?
My main concern is that the loader class executes code on the client io_service. This takes away some control from the ...
1
vote
1
answer
7k
views
Node.js DynamoDB callback
I am writing an API which gets results from a DynamoDB table and puts the JSON back into the browser.
The code below works and returns the desired results. However, after reading about async and ...
3
votes
1
answer
908
views
Very simple async MixpanelAPI
I would love to hear feedback on my first open source project (a very simple async API for Mixpanel).
It implements a REST client for this REST HTTP API.
Review requested on the following aspects:
...