From e5a9fa51091c1731a89268cf17580faeed3d5832 Mon Sep 17 00:00:00 2001 From: ike Date: Thu, 28 Aug 2025 23:12:04 +0000 Subject: [PATCH] adjust the connector word percentage --- README.md | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6389b3e..0050cb1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ HTML page containing random text and links. The generator is tuned to be very nonsensical, but ends up creating some weirdly strange and poetic prose... keep following links to find more! -I use this as an AI scraper labyrinth, with the following NGINX config: +I use this as an AI scraper labyrinth (or poison pill), with the following NGINX config: ``` # No AI Bots diff --git a/main.go b/main.go index 960b15c..015ad48 100644 --- a/main.go +++ b/main.go @@ -433,7 +433,7 @@ func isShePervertedLikeMe() PocketGraph { tree := make(PocketGraph) for _, word := range ConnectionWords { - var percentageOfWords float64 = 0.02 + var percentageOfWords float64 = 0.005 var numberOfConnections = float64(len(words)) * percentageOfWords for j := 0; j < int(numberOfConnections); j++ { randomWord := words[rand.Intn(len(words))]