HN user

volument

165 karma
Posts26
Comments82
View on HN
volument.com 5y ago

Show HN: Volument – Our take on website analytics

volument
3pts1
qvik.com 5y ago

When MVP is a bad strategy

volument
2pts0
markets.businessinsider.com 6y ago

Mastercard Leaves Facebook Libra

volument
14pts1
ia.net 6y ago

Web Design is 95% Typography (2006)

volument
4pts2
medium.com 6y ago

How to Use Rendering Tab in Chrome Dev Tools

volument
1pts0
cushionapp.com 6y ago

Running costs for running a web app

volument
3pts0
adlrocha.substack.com 6y ago

I have been underestimating JavaScript

volument
1pts0
www.dealerinspire.com 6y ago

Is `bounce_rate` becoming a meaningless metric?

volument
1pts2
volument.com 6y ago

SPA – Likely the biggest website performance booster

volument
5pts4
news.ycombinator.com 6y ago

Had a debate with Google engineer and the page was removed from Google. Related?

volument
27pts12
volument.com 6y ago

Large data study: Navigator.sendBeacon() is broken

volument
3pts2
www.nytimes.com 6y ago

Finland: World's youngest prime minister and a government led by women

volument
25pts12
news.ycombinator.com 6y ago

Ask HN: Why cookie consent overlays cover the whole page?

volument
2pts6
walledoffhotel.com 6y ago

Banksy's “Walled Off” art hotel next to Israel's wall

volument
1pts0
news.ycombinator.com 6y ago

Ask HN: How to avoid frontend development complexity?

volument
3pts0
news.ycombinator.com 7y ago

Ask HN: Usability feedback wanted (Analytics UI)

volument
2pts1
volument.com 7y ago

CRO: Google Analytics vs. Volument

volument
1pts0
volument.com 7y ago

The pain of a successful Hacker News launch

volument
8pts1
news.ycombinator.com 7y ago

Ask HN: What are the best books you've read this year?

volument
2pts3
news.ycombinator.com 7y ago

Ask HN: What Happened to Terark DB?

volument
1pts0
lwn.net 7y ago

Docker dreams of being systemd (2016)

volument
1pts0
news.ycombinator.com 7y ago

Ask HN: What is your primary database?

volument
6pts4
news.ycombinator.com 7y ago

Ask HN: Books you plan to read in 2019?

volument
51pts33
news.ycombinator.com 7y ago

Ask HN: What did HN give you in 2018?

volument
27pts9
volument.com 8y ago

Show HN: Volument is a new approach to analytics: measure growth

volument
7pts0
volument.com 8y ago

Rebuilding Google Analytics

volument
2pts0

ePrivacy talks about "information stored in the terminal equipment", which includes any information you can get from the device. For example the user agent, location, and operating system. It's not about the information itself being essential or not, but what you do with it: is it for essential purposes (consent not needed) or non-essential purposes (consent needed).

That depends solely on what is an "analytics cookie". If it's a permanent identifier, then it's considered PII and requires a GDPR consent. Otherwise GDPR doesn't care. You can freely store foo=bar to a cookie.

The eDirective states that the browser and device information (like the URL) is private data and you need a permission to access it for non-essential purposes such as analytics. This is why Simple Analytics also needs a cookie banner, contrast to what their marketing says.

Cookies are not an issue for GDPR, it's all about respecting users' privacy. In fact you can freely store anonymous data to cookies, localStorage, and sessionStorage without issues. The problem comes when you are dealing with personally identifiable information such as permanent identifiers.

You definitely need a "cookie banner" when using Simple Analytics, Fathom, or Plausible. Any service that accesses the device information such as the URL needs a permission from the user according the ePrivacy directive.

We have consulted EU law specialists when building our upcoming analytics service that is as privacy-friendly as Simple Analytics, while still measuring important things like retention and conversions. More information:

https://volument.com/learn/data-privacy

That website had too many annoyances and content blockers that I had to leave (which wasn’t easy either). I’ll remember Bloomberg. Same with Forbes.

Hey, we at Volument (volument.com) are using Redis as the primary datastore. We are extremely happy we chose that option. It gives us everything we need: extreme performance, scalability with customized sharding, stability with sentinels, and most importantly: a fantastic data model that is enjoyable to work with. We don't need to add anything extra to our stack if we later need a pub/sub system or realtime support for our custom chat app for example.

We use a custom Go-based system to collect the crazy amount of analytics that easily exceeds our memory, but for the core business logic, Redis is a top-notch choice. We actually build our whole CRM on top of Redis: https://volument.com/blog/the-power-of-simple-crud

Great to hear! Can you shed some light on "script size constrained serverless scripts"? Would possibly make a good FAQ entry.

And yes. Bareserver needs Node currently and is not designed for client-side testing. It's trivial to add if needed.

Made it more clear that account is not needed and email is enough. Thanks!

Good points. Just want to point out that comparing with a basic "sum" function measures the performance of the test runner and leaves out the time it takes to run the application code. Baretest has little overhead so it is good for testing the actively developed code with the `only` function.

With Baretest all the custom things you do like transpiling TS or rendering React is done outside the test runner. This way it can test cases of any complexity.

It serves about 35,000 concurrently running A/B experiments,

With that amount of optimizations, you would expect them to have the best user experience in the world. Do they? I think there is something severely wrong with the current A/B testing methodology.

That's our goal too. We pushed out this simple CRUD first for commenting and private support chat/email. We'll add realtime chat functionality later if needed. Currently, we are doing fine without it.

We could ditch Recurly because we had all the necessary billing data available on the new, central system. Not before that.

Here's how Volument works: https://volument.com/learn/volument-data-model

A/B testing in Volument is quite different from, say Optimizely. You can compare a lot of things in apples-to-apples fashion: landing pages, inner pages, market segments, campaigns, site versions, etc. And you can compare both how much traction something generates, or how engaging a page is.

The causation thing is just something we measure. We measure how people behave on their first visit, how intensively they return, and how much they convert. It's not about the statistical validity, it's about choosing metrics that are essential for conversion optimization.