diff --git a/dead-man-qry.bash b/dead-man-qry.bash
deleted file mode 100755
index 53baf8e..0000000
--- a/dead-man-qry.bash
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Call this script from a cron job:
-# MAILTO=jody@kaplon.us
-# 0,30 * * * * ~/dead-man-qry.bash
-
-# Build in a buffer of 15min to avoid false positives.
-NUMHRS=6.25
-
-# set now variable
-NOW=$(date -u +"%Y-%m-%d %H:%M:%S")
-
-RESULT=$(sqlite3 /var/www/tenniscourtsopen.com/courtsopen.db "select published_at from Alerts where datetime(published_at) > datetime('${NOW}', '-${NUMHRS} hours') order by datetime(published_at) limit 1")
-
-if [ -z "$RESULT" ]; then
-    echo "No data from device in last $NUMHRS hours."
-fi
diff --git a/server.js b/server.js
index c6c51bc..b769278 100644
--- a/server.js
+++ b/server.js
@@ -217,7 +217,7 @@ app.get('/:loc/status', function(req, res) {
             "select origjson " + 
             "from alerts " + 
             "where status in ('Open', 'Closed') " +
-            "and coreid = '300029000347343339373536' " +
+            "and coreid = '2a002b000947343432313031' " +
             "order by published_at desc " +
             "limit 1"
             client.query(mostRecentStatusQry, function(err, result) {
@@ -247,7 +247,7 @@ app.get('/:loc', function(req, res) {
             "select status, published_at " + 
             "from alerts " + 
             "where status in ('Open', 'Closed') " +
-            "and coreid = '300029000347343339373536' " +
+            "and coreid = '2a002b000947343432313031' " +
             "order by published_at desc " +
             "limit 2"
             client.query(devIndexQry, function(err, result) {