You are going to block this site. This will do the following:
- You will no longer see this site in searches.
- Site will no longer see your site in searches.
- Site will not be able to comment on your site profile.
- Any comments this site has posted to your profile will not be displayed.
Are you sure you want to do this?
how could I implement this in my site? I have been looking for something like this for a while and I want to learn how to put it in mine. :)
I did it with a bit of Python running on my computer. You can use the Neocities API to upload files (https://neocities.org/api). So, I wrote a script that picks a random quote and image and uploads them to the site every day at midnight. Then scheduled it (I used systemd's timers, but you could do it on Windows or Mac also (https://www.isunshare.com/windows-10/4-ways-to-open-task-scheduler-on-windows-10.html)).
Essential Python code: requests.post("https://neocities.org/api/upload", headers={"Authorization": "Bearer YOUR_API_KEY_HERE", "User-Agent": "neocron/0.1"}, files={"path/to/put/image.jpg": open(file="C:\path\to\get\image.jpg", mode="rb"))