There are a few symbols that don’t exist. Remove .DJI and CICS
Read the statement by Michael Teeuw here.
Posts made by alexyak
-
RE: Stocks
I’ve updated the code to support the new API’s from https://iextrading.com/developer/docs/#stocks. Which BTW, doesn’t even require registration.
-
RE: Stocks
I’ve found a web service which provides free intraday stock quotes. You will only need to register to get an API key.
https://www.alphavantage.co/support/#api-key
The code in the module will need to be modified though to parse a different payload result. I will try to update it today or tomorrow.
-
RE: Send Selfie to Flickr or Photobucket
You will need to communicate via the API’s that these services provide. For example flickr has this:
-
RE: Motion Detector
@trividar I don’t see anything related to the motiondetector in your logs. It seems the error coming from the mmm-systemperature/node_helper.js
-
RE: Motion Detector
@trividar My apologies. This should be fixed. Just pull the latest.
-
RE: Motion Detector
Hi All,
I’ve revamped the motiondetector module to use a more optimised code to detect the motion from the web camera. The old one was performing very poorly. The new code works many times better. Just pull the latest from
https://github.com/alexyak/motiondetector
- Alex
-
RE: Stocks
@ZTA0796 The object that you get int the stocks.js is the deserialized javascript object. In your case it’s going to be a single row object. You could just access the properties list this:
this.result.symbol, this.result.price, etc…
-Alex
-
RE: Stocks
@ZTA0796 The original code does a hardcoded substring on the result:
var result = JSON.parse(body.substring(3, body.length));
You probably don’t need to do that.