Got a basic xo clone running locally on a dev server
| a lifetime spent arguing with autistic men online | 03/23/26 | | just be racist | 03/23/26 | | zarathustra | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | just be racist | 03/23/26 | | which dad? | 03/23/26 | | AI cat video connoisseur | 03/23/26 | | Fucking Fuckface | 03/23/26 | | woah | 03/24/26 | | Emotionally + Physically Abusive Ex-Husband | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | John Frum | 03/23/26 | | Nude Man Ray | 03/23/26 | | Nude Karlstack | 03/23/26 | | Nude Man Ray | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | '"'''''''''''''"' | 03/23/26 | | AI cat video connoisseur | 03/23/26 | | adrian dittman | 03/23/26 | | AI cat video connoisseur | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | .,.....,.,.;,.,,,:,.,.,::,...,:,..;,.., | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | peeface | 03/23/26 | | Diane Rehm talking dirty | 03/23/26 | | a lifetime spent arguing with autistic men online | 03/23/26 | | Diane Rehm talking dirty | 03/24/26 | | a lifetime spent arguing with autistic men online | 03/24/26 | | woah | 03/24/26 | | Diane Rehm talking dirty | 03/25/26 | | a lifetime spent arguing with autistic men online | 03/25/26 | | Diane Rehm talking dirty | 03/25/26 | | a lifetime spent arguing with autistic men online | 03/26/26 | | I'm literally Will Hunting btw | 03/25/26 |
Poast new message in this thread
Date: March 23rd, 2026 4:22 PM Author: a lifetime spent arguing with autistic men online
https://ibb.co/LXDMsCvZ
https://ibb.co/7tWHw6WR
I know its not perfect but this is just a test prototype
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49763172) |
 |
Date: March 23rd, 2026 4:38 PM Author: AI cat video connoisseur
This is actually what all AI-coded stuff is
It's literally just pattern-matching already existing-coded stuff from its training data. But worse
Trvth nvke
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49763214) |
Date: March 23rd, 2026 4:35 PM
Author: .,.....,.,.;,.,,,:,.,.,::,...,:,..;,..,
this might be the gayest thing i've ever seen ever. is there even a fucking Condor?
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49763211) |
 |
Date: March 24th, 2026 8:45 PM Author: a lifetime spent arguing with autistic men online
The schema goes from path ordering to tree traversal. So like:
0001 (root)
0001.0001 (first reply)
0001.0002 (second reply)
0001.0002.0001 (nested reply)
So for thread detail query you've effectively got:
posts = (
Post.objects
.filter(thread=thread)
.select_related("author")
.order_by("path")
)
and that's it all the structure's pushed into the key. haven't tried to replicate UI behavior yet, not the exact classic nested tree listing but the backend supports arbitrarily nested replies
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49766631) |
 |
Date: March 25th, 2026 10:08 PM Author: a lifetime spent arguing with autistic men online
I haven't switched the database backend to postgreSQL yet. Django is applying the DDL through migrations in SQLlite. The thread query in SQL is basically:
SELECT *
FROM forum_post
WHERE thread_id = ?
ORDER BY path ASC, created_at ASC;
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49769403) |
 |
Date: March 25th, 2026 11:34 PM Author: Diane Rehm talking dirty (🦀 )
This is one of those problems that seem easy but then gets hard when you get into it. Complication being infinite number of leafs (replies) at any level
AND
get the whole tree back in a single SQL query for performance.
I used the nested set pattern and was pretty proud of that solution. Very curious how AI would solve this.
https://en.wikipedia.org/wiki/Nested_set_model
(http://www.autoadmit.com/thread.php?thread_id=5848897&forum_id=2\u0026mark_id=3986969#49769600) |
|
|