<Comment deleted by user>
36... years later
100000 done
36... years later
100000 done
Why don't you just make 100,000 alt accounts, create a team and post on every account a message in that team. You'll hit the 100k in no-time.
Why don't you just make 100,000 alt accounts, create a team and post on every account a message in that team. You'll hit the 100k in no-time.
set x to 38
repeat untill x = 100000
change x by 1
Prob will count in like 1 min
set x to 38
repeat untill x = 100000
> change x by 1
Prob will count in like 1 min
Let's see if in Lichess it's even possible :)))
Yes, it is possible. But in most cases, that many posts is overkill.
Steps:
- Set up a local dev environment: https://github.com/lichess-org/lila/wiki/Lichess-Development-Onboarding
- Setup websockets and seed database
- Create 1 to 100000 account(s) THERE. 1 should do.
- Create same topic there.
- Do the following:
for $iterator in range 1 to 100000 {
post $iterator in topic;
submit post;
}
Solved!
> Let's see if in Lichess it's even possible :)))
Yes, it is possible. But in most cases, that many posts is overkill.
Steps:
1. Set up a local dev environment: https://github.com/lichess-org/lila/wiki/Lichess-Development-Onboarding
2. Setup websockets and seed database
3. Create 1 to 100000 account(s) THERE. 1 should do.
4. Create same topic there.
5. Do the following:
```
for $iterator in range 1 to 100000 {
post $iterator in topic;
submit post;
}
```
Solved!
<Comment deleted by user>