This file contains 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
""" | |
Written by GPT3 from this English prompt (with one tweak to the prompt, to get | |
the timestamp parameter to not error out, and PEP8 fixes): | |
---- | |
1. Open a sqlite database with a name like `2022-07-17 17.48.19.db` or | |
`2021-04-11 08.44.16.db` | |
2. Inside is a table called `locations`, with headers [LOCTYPE INTEGER, | |
TIMESTAMP BIGINT, LATITUDE REAL, LONGITUDE REAL,ALTITUDE REAL, ACCURACY |
This file contains 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
/* | |
step.c | |
Program to verify new algorithm for linear acceleration. | |
Author: Pramod Ranade <[email protected]> | |
*/ | |
#include <stdio.h> | |
#if defined(_WIN32) || defined(_WIN64) | |
#include <io.h> | |
#endif |