Karl-Aksel Puulmann
Karl-Aksel Puulmann
### Changes This metric was only shown in some details modals and ~~with scroll depth goals incoming~~ IMO cause confusion and complexity. Long-term we plan to show the fraction(s) in...
We usually don't read events/pageviews from sessions table as sessions can start before or after the time window of the query. This is particularly pronounced with realtime queries. After this...
What's new: - [x] Script update guide - [ ] Form submission tracking What's updated: - [ ] Rewrite docs/script-extensions.md - [x] Script feature description docs - [x] docs/plausible-script.md -...
Based on logic from original PR adding mixed library support: https://github.com/jarnedemeulemeester/findroid/pull/628 Seems the feature got broken during the recent rewrite. I was hacking on adding other functionality but this seemed...
``` scala val query = sql"BEGIN; SELECT 'foobar'; COMMIT".as[String] val r: Vector[String] = run(query) // db.run(query) println(r, r(0).isInstanceOf[String], r(0).isInstanceOf[Integer]) ``` Outputs `(Vector(0),false,true)` Relevant debug log: ``` 2016-08-24 22:33:43 DEBUG []...