AK
AK
@patricktotaliQ i think what you may want is [`mixpanel.people.increment`](https://developer.mixpanel.com/docs/javascript-full-api-reference#mixpanelpeopleincrement) this doesn't give you the value client-side, but rather issues a server-side directive to mixpanel to add/subtract a value from an...
@devshorts yes, this the design of the `/track` API ... nothing [older than 5 days](https://developer.mixpanel.com/reference/track-event#when-to-use-track-vs-import) should you wish to import events older than 5 days, you can `init` the library...
@uhop anything i can add to make this PR more attractive to be included with the lib?
I _think_ it's like this: ``` name Function argument scope variable.parameter settings fontStyle italic foreground #FD971F ```
@oyvindwe sorry for the late reply here. the endpoint you can use here: https://api-eu.mixpanel.com/decide however, `/decide` is deprecated (used to power A/B testing deployments which mixpanel no longer supports) and...
@jalamprea these are the instructions for running the docker image on your own server: https://github.com/mixpanel/tracking-proxy#option-2-docker-image you would run these commands while SSH-ed into your OLS server.
Mixpanel library has this by default: https://developer.mixpanel.com/docs/javascript#section-opting-users-out-of-tracking ``` // Opt a user out of data collection mixpanel.opt_out_tracking(); // Check a user's opt-out status // Returns true if user is opted...