I hereby claim:
- I am andreiz on github.
- I am andreiz (https://keybase.io/andreiz) on keybase.
- I have a public key ASAXjXBboFhq4qjHq4l0IxRnFHrOUsXyB-JCIJ0LzMkbEwo
To claim this, I am signing this object:
| > /Users/andrei/Downloads/timelinize ; exit; | |
| 2026/02/16 20:02:32.084 INFO opening DB write pool {"dsn": "file:%2FUsers%2Fandrei%2FTimeline%2Ftimeline.db?_foreign_keys=on&_journal_mode=wal&_txlock=immediate&mode=rwc"} | |
| 2026/02/16 20:02:32.084 INFO opening DB read pool {"dsn": "file:%2FUsers%2Fandrei%2FTimeline%2Ftimeline.db?_foreign_keys=on&_journal_mode=wal&mode=ro"} | |
| 2026/02/16 20:02:32.087 INFO using sqlite {"version": "3.50.4"} | |
| 2026/02/16 20:02:32.092 INFO opened timeline {"repo": "/Users/andrei/Timeline", "id": "85811586-d58c-44dc-b391-9eb07f525436"} | |
| 2026/02/16 20:02:32.092 INFO maintenance optimizing database for performance | |
| 2026/02/16 20:02:32.093 INFO maintenance finished optimizing database {"duration": 0.000079875} | |
| 2026/02/16 20:02:32.093 INFO starting python server to enable semantic features {"dir": "/Users/andrei/Library/Application Support/Timelinize/python/server"} | |
| 2026/02/16 20:02:32.096 INFO config saved config file {"loaded": "2026/02/16 20:02:32.082", "path": "/Users/andrei/Library/Application |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| error_reporting(E_ALL); | |
| define('NUM_FEATURES', 3); | |
| // My dataset describes cities around the world where I might consider living. | |
| // Each sample (city) consists of 3 features: | |
| // * Feature 1: average low winter temperature in the city | |
| // * Feature 2: city population, in millions |
| curl 'localhost:9200/conf/speaker/_search?pretty=true' -d' | |
| { | |
| "query" : { | |
| "match_all" : {} | |
| }, | |
| "size": 0, | |
| "facets" : { | |
| "histo1" : { | |
| "histogram" : { | |
| "field" : "height", |
| curl -XDELETE 'http://localhost:9200/foo/' | |
| curl -XPUT 'http://localhost:9200/foo/' -d'{ index : { number_of_shards : 1, number_of_replicas : 1 } }' | |
| curl -XPUT 'http://localhost:9200/foo/place/_mapping' -d' | |
| { | |
| "place" : { | |
| "_all" : {"enabled" : false}, | |
| "properties" : { | |
| "user_id" : {"type" : "integer", "index" : "not_analyzed"}, | |
| "title" : {"type" : "string", "boost" : 1.5}, | |
| "notes" : {"type" : "string"}, |