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
// ==UserScript== | |
// @name Ingress Player Locations | |
// @description Shows player locations on the Ingress Intel Map | |
// @version 1.2 | |
// @match http://www.ingress.com/intel | |
// @run-at document-start | |
// ==/UserScript== | |
function override() { |
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
// ==UserScript== | |
// @name Ingress Intel: Notify UI | |
// @namespace https://arantius.com/misc/greasemonkey/ | |
// @description Annotate the Ingress Intel Dashboard with links to control the Ingress Notify app. | |
// @match http://www.ingress.com/intel* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
//const NOTIFY_SERVER = 'http://localhost:8080/' |
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
/**************************************************************************/ | |
/*! | |
@file Adafruit_MMA8451.h | |
@author K. Townsend (Adafruit Industries) | |
@license BSD (see license.txt) | |
This is an example for the Adafruit MMA8451 Accel breakout board | |
----> https://www.adafruit.com/products/2019 | |
Adafruit invests time and resources providing this open source code, |
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
// Based on Example by Tom Igoe | |
// Edited by Leó Stefánsson | |
import processing.serial.*; | |
Serial myPort; // The serial port | |
PFont font; // The display font | |
String inString; // Input string from serial port | |
int lf = 10; // ASCII linefeed | |
Float x = 0.0; | |
Float y = 0.0; |
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
/**************************************************************************/ | |
/*! | |
@file Adafruit_MMA8451.h | |
@author K. Townsend (Adafruit Industries) | |
@license BSD (see license.txt) | |
This is an example for the Adafruit MMA8451 Accel breakout board | |
----> https://www.adafruit.com/products/2019 | |
Adafruit invests time and resources providing this open source code, |