This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Retrieve existing classifiers (if any) | |
retrieve_classifiers <- function (api_key, api_endp) | |
{ | |
req <- GET(sprintf("%s/v3/classifiers/?api_key=%s&version=2016-05-20", api_endp, api_key)) | |
} | |
## Delete an existing classifier | |
delete_classifier <- function (api_key, api_endp, classifier_id) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Simple example of MQTT message publish using Common Lisp and ABCL | |
;; | |
;; Uses the Eclipse Paho client | |
;; | |
;; Author: Frederico Munoz <[email protected]> | |
;; Date: 22-Jun-2013 | |
;; Keywords: mqtt, messaging, m2m, telemetry, abcl, iot, paho, lisp | |
;; | |
;; Copying and distribution of this file, with or without modification, | |
;; are permitted in any medium without royalty provided the copyright |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Simple example of MQTT message publish using Clojure | |
;; | |
;; Uses the Websphere Eclipse Paho client | |
;; | |
;; Author: Frederico Munoz <[email protected]> | |
;; Date: 18-Jun-2013 | |
;; Keywords: mqtt, messaging, m2m, telemetry, clojure, iot, paho | |
;; | |
;; Copying and distribution of this file, with or without modification, | |
;; are permitted in any medium without royalty provided the copyright |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Simple example of sending a message to Websphere MQ with Clojure | |
;; | |
;; Uses the Websphere MQ JMS classes (i.e. JMS-like in API, but | |
;; submits to a MQ queue) | |
;; | |
;; Author: Frederico Munoz <[email protected]> | |
;; Date: 20-Jun-2013 | |
;; Keywords: mq, websphere, messaging, jms | |
;; | |
;; Copying and distribution of this file, with or without modification, |
NewerOlder