Changed default speeds on PWM to 6000/24000, and clean up old cookies

This commit is contained in:
David Carley
2021-12-07 19:15:13 -08:00
parent 9a0e90576f
commit 5b1702c62a
3 changed files with 14 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env python3
import sqlite3
db = sqlite3.connect('/home/pi/.config/chromium/Default/Cookies')
cur = db.cursor()
cur.execute("DELETE FROM cookies WHERE creation_utc < 13240000000000000")