Popular Post Sophie 24,410 Posted March 16, 2021 Popular Post Share Posted March 16, 2021 An infinite grid of editable text. Anyone can write absolutely anything absolutely anywhere. It is completely anonymous, and completely free. No login required. https://www.yourworldoftext.com/peefans *Please note this content is not moderated, peefans cannot be responsible for anything written here. Please enter at your own risk. 3 1 2 Link to post
Sophie 24,410 Posted March 17, 2021 Author Share Posted March 17, 2021 Thank you to everyone who has contributed so far. I'm amazed at how much has been posted in the last 24 hours!! 1 Link to post
Bacardi 10,133 Posted March 19, 2021 Share Posted March 19, 2021 This is the coolest thing ever!! Link to post
Sophie 24,410 Posted March 19, 2021 Author Share Posted March 19, 2021 (edited) Somebody asked if I had found a way of automating / cutting and pasting. Unfortunately I do not know of a way of just simply pasting so I wrote this little python script the other day. It takes anything you write into a txt file and then pastes it onto the website. Happy to answer any questions! #! /usr/bin/python3 # -*- coding: utf-8 -*- import pyautogui import sys import time art = sys.argv[1] # FIrst argument is the script itself, second argument is what you want to paste. print(f"Printing {art}, get ready!") time.sleep(5) # Five second delay to open web window. with open(f"ascii/{art}.txt") as f: result = [list(line.rstrip()) for line in f] for x in result: pyautogui.typewrite(x, interval=0.05) pyautogui.press("enter") Edited March 19, 2021 by Sophie Added extra information. 1 1 Link to post
Bacardi 10,133 Posted December 23, 2021 Share Posted December 23, 2021 Bumping this because I just went back through it and smiled so much. 1 Link to post
Scot_Lover 1,876 Posted December 23, 2021 Share Posted December 23, 2021 2 hours ago, Bacardi said: Bumping this because I just went back through it and smiled so much. Thank you. I’ve not seen this at all. Another internet surprise. 1 Link to post
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now