Invite the forest for a dance, oh, most vile creature. Scorch the ground with your black acid, turn living into death. Inorganic, bitter soil lay in your wake, as you, unstoppable, are a moving helix, leaving no ground untouched, no body unseen and not predated. See all other as other, you, against the world, an innate opposition whose humor is to always mirror the inverse. The inverse, but always worse, no sliver of good or true, or neutral for the matter. Satiate that need, the tendency to torture.
Dance with this boulder - stoic and intentionless who is too, kin of insects and smaller pests, sear its skin, rake its mane, do as you please. Play your game, and the tolerance of matter, because you are weaker than the inevitable. The still that you stir up, it revolves and finds its place once again.
You are merely motion.
March 15, 2022 - 9:51pm — theano7203
In case you have csv files and due to events or just life need to organize or move things to the cloud
A regular csv file with Python can convert to Python language and you can manipulate data
CSV looks like this
Rank,Country,Gold,Silver,Bronze,Total
1,United States,39,41,33,113
2,China,38,32,18,88
3,Japan,27,14,17,58
4,Great Britain,22,21,22,65
5,ROC,20,28,23,71
6,Australia,17,7,22,46
7,Netherlands,10,12,14,36
8,France,10,12,11,33
9,Germany,10,11,16,37
10,Italy,10,10,20,40
With dictwriter command in Python
import csv
medals_table = [
{'country': 'United States', 'gold': 39, 'silver': 41, 'bronze': 33, 'rank': 1},
{'country': 'China', 'gold': 38, 'silver': 32, 'bronze': 18, 'rank': 2},
{'country': 'Japan', 'gold': 27, 'silver': 14, 'bronze': 17, 'rank': 3},
{'country': 'Great Britain', 'gold': 22, 'silver': 21, 'bronze': 22, 'rank': 4},
{'country': 'ROC', 'gold': 20, 'silver': 28, 'bronze': 23, 'rank': 5},
{'country': 'Australia', 'gold': 17, 'silver': 7, 'bronze': 22, 'rank': 6},
{'country': 'Netherlands', 'gold': 10, 'silver': 12, 'bronze': 14, 'rank': 7},
{'country': 'France', 'gold': 10, 'silver': 12, 'bronze': 11, 'rank': 8},
{'country': 'Germany', 'gold': 10, 'silver': 11, 'bronze': 16, 'rank': 9},
{'country': 'Italy', 'gold': 10, 'silver': 10, 'bronze': 20, 'rank': 10},
]
def sort_key(d: dict) -> str:
return d['country']
columns = ['country', 'gold', 'silver', 'bronze', 'rank']
filename = 'country_medals.csv'
with open(filename,'w', encoding='utf-8', newline='') as output_file:
writer = csv.DictWriter(output_file, fieldnames=columns, extrasaction= 'ignore')
writer.writeheader()
# for row in medals_table:
# writer.writerow(row)
writer.writerows(sorted(medals_table, key= sort_key))
Where the hash tags are you can take off the last line and it does it a different way on a separate file
you load a csv file and then create a Python file
March 12, 2022 - 10:26pm — Patchlamb
Hello! I am gathering information on The Endless Forest fan community to expand its Fanlore page. Seems there is plenty about it's history, but not a whole lot of community meta. So please, if you have some time consider answering a few questions for me! Especially if you have been a long-time TWF player. You may skip and answer questions at your leisure. Your responses may be used on the Fanlore page, either as direct quotes, snipped quotes (edited for brevity), or indirectly as footnotes. You are of course welcome to skip this all together and edit information onto the page yourself as well.
https://fanlore.org/wiki/The_Endless_Forest
1. How long have you been playing on The Endless Forest?
2. What do you call your community? (For example, "Furry Fandom" for furries, "Creatures Community" for fans of the game Creatures, "Potterheads" for Harry Potter fans, etc)
3. Is there any unique terminology your community uses? (Example: "Hexies" is what the Petz fandom call game mods- this is unique to them)
4. How has the community changed from the early days to now?
5. What other places do you congregate to enjoy TEF's community/fandom? Other forums, websites, chatrooms?
6. Describe how roleplay functions in your community, and what it is about. Imagine you're explaining this to a newbie or outsider.
7. Have there ever been any major controversies in the community?
8. Would you say you are a "deer person?" If so, how do you see this as differing from other species-based communities? (Example: such as communities focused around lion characters, or around horse characters, etc)
9. Do you know anyone who has played TEF who has gone on to do something else note worthy? (Example: Ehtere making the Fawnlings ARPG in 2012)
10. Anything else interesting you'd like to say about the community or game?