Stats (as of 56 minutes ago)
Key metrics
- Number of couples formed (self reported, as of 4 October, 2021): >= 15
-
Number of users: 11209 (112.09% to 10k)
This what we optimize for (see explanation in
the blogpost).
Please
reach out to me
if you are a couple who met through the site.
General metrics
- Weddings (self reported, as of 4 October, 2021): 0
- Verified users:
11209
- Female:
3633
(32.4%)
- Male:
7522
(67.1%)
- Non-binary:
54
(0.5%)
- With photos:
5917
(52.8%)
-
3039 always unblurred
(27.1% of all users)
- With "empty" profiles
:
1669 (14.9%)
-
By relationship type:
- Friendships only: 1027
- Romantic only: 5050
- Both: 4663
-
By FIRE type:
- "lean": 1262
- regular: 5642
- "fat": 1356
- By activity (when visited site last):
- < 1 day: 144 (1.3%)
- < 7 days: 440 (3.9%)
- < 28 days: 946 (8.4%)
- < 90 days: 1760 (15.7%)
- By v2 design enrollment:
- beta: 202
- bleeding edge: 66
- By registration:
- < 1 day: 2
- < 7 days: 26
- < 28 days: 135
-
- Profile observations
: 579979
- < 1 day: 174
- < 7 days: 1706
- < 28 days: 6837
-
- Profile fullness
- Requests
:
- Sent:
91124
- < 1 day: 23
- < 7 days: 303
- < 28 days: 1218
- Accepted:
27019
(29.7%)
- Messages:
- Sent:
283605
- < 1 day: 186
- < 7 days: 1138
- < 28 days: 4719
- Read:
272060
(95.9%)
- Geography:
-
Top 10 countries:
- United States - 6755
- Canada - 871
- United Kingdom - 486
- Australia - 374
- Germany - 351
- India - 243
- Netherlands - 202
- Russian Federation - 166
- Spain - 117
- Switzerland - 104
-
Top 10 cities:
- New York, NY, United States - 289
- Seattle, WA, United States - 284
- Los Angeles, CA, United States - 238
- Chicago, IL, United States - 212
- Toronto, Canada - 195
- London, United Kingdom - 195
- Denver, CO, United States - 169
- Atlanta, GA, United States - 152
- Boston, MA, United States - 147
- Austin, TX, United States - 147
- Last hour activity log (max 100 items)
-
[an hour ago] User signed in
-
[an hour ago] Message sent
-
[an hour ago] Message sent
-
[an hour ago] Profile seen for the first time
-
[an hour ago] User signed in
- Viktor's time spent (as of 1st of June 2021)
:
605 hours
- Money spent (as of 1st of June 2021): 226.65 EUR (~276 USD)
- Volunteers: 6 (as of 23th of June 2021) = 3 designers + 3 React developers.
- Fun: infinity
- Learned: a lot (especially CSS, web design, public communication)
- Interesting people met: a lot, all over the world
- RAM usage
- CPU usage
- Hard drive usage
-
Number of non-initialized accounts (these are not included
in the counts above)
- without validated email:
883
- not attempted test:
521
-
All known privacy incidents
- February 7, 2024 - Email addresses & usernames of 16 users were each exposed to a single, different user.
I was in the process of rewriting message notification emails to include more details and make them more personalized, in the hope of receiving more responses. As part of this rewrite, I intended to include the sender's pseudonym in the title. Internally, user data is represented as a DatingProfile object. This object has a helper method "get_possibly_handcrafted_pseudonym" which returns the user pseudonym or age-gender.
However, due to an oversight, I wrote "current_user.datingprofile.get_possibly_handcrafted_pseudonym" instead of "current_user.datingprofile.get_possibly_handcrafted_pseudonym()". Instead of calling the method, I referenced the method as it is. This wouldn't have been an issue, but in Python, this leads to a string "a bound method of DatingProfile...". For debugging, the string representation of a dating profile includes the username and email. As a result, both of these were unintentionally included in the email title. This bug was active for about an hour, and during that time, 16 such emails were sent out, each exposing the details of one user to another.
I quickly noticed and fixed the issue by double-checking the impact of my changes. I deeply regret the unintended exposure this bug caused. I've informed all affected users, both the ones whose details were exposed and their recipients.
I've mitigated this from happening in the future. I've removed all the user-generated information from the string representations. I will test such changes better in the future.