- Plugin sorted by Npm.js Maintenance Score
- Plugin sorted by Npm.js Popularity Score
- Plugin sorted by Last Release Date
- Plugin sorted by Downloads Last Month
| Rank | Plugin Name | Maintenance | Last Release | Downloads Last Month |
package reflectperf | |
import ( | |
"fmt" | |
"reflect" | |
"testing" | |
) | |
// Note, switchTest produces a different result for nil, nil then reflectTest and sprintfTypeTest. | |
// However, this case is not part of the tests performed. |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"os" | |
"strings" | |
"testing" | |
) |
| Rank | Plugin Name | Maintenance | Last Release | Downloads Last Month |
Donald Trump,Quotes | |
Sometimes by losing a battle you find a new way to win the war.,http://www.brainyquote.com/quotes/quotes/d/donaldtrum383171.html | |
I have a great relationship with the Mexican people.,http://www.brainyquote.com/quotes/quotes/d/donaldtrum717755.html | |
"You have to think anyway, so why not think big?",http://www.brainyquote.com/quotes/quotes/d/donaldtrum153798.html | |
"You know the funny thing, I don't get along with rich people. I get along with the middle class and the poor people better than I get along with the rich people.",http://www.brainyquote.com/quotes/quotes/d/donaldtrum414743.html | |
"Our politicians are stupid. And the Mexican government is much smarter, much sharper, much more cunning. And they send the bad ones over because they don't want to pay for them. They don't want to take care of them. Why should they when the stupid leaders of the United States will do it for them?",http://www.brainyquote.com/quotes/quotes/d/donaldtrum714310.html | |
"That's one of the nice things. I mean, part of |
The response data seems to originate from different source referred to by property "base" in the data record. What I noticed is that the bogus 7 degrees temperature values always originate from "base": "stations" while "base": "cmc stations" seem to provide correct values all times. It should also be noted that "base": "stations" sometimes provides correct values.
action: (deviceId, actionName, params) -> | |
id = '' + @_getActionId() | |
p = if params? then params else {} | |
p.deviceId = deviceId | |
p.actionName = actionName | |
new Promise (resolve, reject) => | |
@socket.emit 'call', { | |
id: id, | |
action: 'callDeviceAction', | |
params: p |
class HomeduinoPlugin extends env.plugins.Plugin | |
init: (app, @framework, @config) => | |
@framework.deviceManager.on('discover', (eventData) => | |
@framework.deviceManager.discoverMessage( | |
'pimatic-homeduino', 'Press a button on your remote' | |
) | |
setTimeout( ( => | |
config = { |
import static java.util.UUID.randomUUID | |
import java.security.MessageDigest | |
import javax.crypto.spec.SecretKeySpec | |
import javax.crypto.Mac | |
import java.security.SignatureException | |
metadata { | |
// Automatically generated. Make future change here. | |
definition (name: "Virtual LED Strip", namespace: "smartthings", author: "SmartThings") { | |
capability "Switch Level" |
var net = require('net'); | |
var five = require('johnny-five'); | |
var firmata = require('firmata'); | |
var options = { | |
host: '192.168.2.5', //whatever host | |
port: 48879 //some port | |
}; | |