Skip to content

Instantly share code, notes, and snippets.

@martinwicke
martinwicke / automobile.ipynb
Last active January 9, 2022 08:14
Estimator demo using Automobile dataset
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@igrr
igrr / esp8266_pubsubclient.ino
Created January 6, 2015 23:44
PubSubClient sample for ESP8266 Arduino
#include <PubSubClient.h>
#include <ESP8266WiFi.h>
const char* ssid = ".................";
const char* password = "................";
char* topic = "esp8266_arduino_out";
char* server = "iot.eclipse.org";
@marti1125
marti1125 / gist:5859861
Created June 25, 2013 16:17
Backgrid events examples
grid.collection.on("backgrid:editing", function(e){
alert('editando..');
});
grid.collection.on("backgrid:selected", function (model, selected) {
alert('hola');
});