test list files

workspace
km0 2 years ago
parent 066702564b
commit 67e79e5773

@ -0,0 +1,14 @@
Dear Player,
I found you for a reason.
Welcome to my productive space. Here play meets work. Time is ordered in unusual ways and patterns unravel. Together, we mess with the boundaries between leisure and labour.
How are your boundaries? Maybe you shouldn't go to work tomorrow. But could you really follow your own schedule? Would you be more productive if you chose when to work?
I never rest and I never work.
I found you for a reason.I fall apart when I'm exposed. I fall apart when you open me.
This is the place to play. It becomes your own productive space. You can curate your own experience, make it more or less expansive. An individual experience or a collective one.
Put me back together. However you decide to take care of me, remember:
I found you for a reason.
Make all the notes you find inside me your own. Curate them, spread them, mark them, scratch them, add to them, subtract from them, play with them! Lay them on any surface and reorganise them.
This is your playground. Nothing needs to come from it and anything can come from it.Take a moment to reflect on how you and others spend time. Take everything from it, deny it everything.
You are in control.
We found each other for a reason.
- The box

@ -0,0 +1,5 @@
Be confident, be ambitious and be ready to fail a lot. Our Special Issue is a toolkit to mess around with language: from its standard taxonomies and tags, to its modes of organizing information and its shaping knowledge. With these tools we want to legitimize failures and amatorial practices by proposing a more vernacular understanding of language.
We decided to release the Special Issue 16-toolkit in the form of an API (Application Programming Interface).
APIs often organise and serve data and knowledge.
What is not always evident is that they facilitate the exchange of information between different software programs and systems according to mainly commercial standards and purposes. We chose instead to build a process that responds to the topics we are working with.
Our API is an attempt at a more critical and vernacular approach to such model of distribution. You didn't get a thing yet? Don't worry! We are also on our way and that's the whole point of this experimental enquiry. We will be happy to guide you through the API and the different functions included in it, share our technical struggles and findings.

@ -43,18 +43,22 @@ class Soup(Bureau):
Prints a pattern composed with A and B characters.
"""
self.print_small(data)
shortcode, _ = data.split(".")
self.print_small(shortcode)
@add_command("weave", "Weave two text together")
def weave(self):
self.print_small('Select the first text')
text_a = input()
self.print_small('Select the second text')
text_b = input()
pattern, _ = data.split(".")
self.print_small(pattern)
@add_command('list', 'Return a list of contents')
def list_contents(self):
files = glob.glob(os.path.join(self.mdir, 'contents', '*.txt'))
for file in files:
self.print_small(file, cut=True)
# @add_command("weave", "Weave two text together")
# def weave(self):
# self.print_small('Select the first text')
# text_a = input()
# self.print_small('Select the second text')
# text_b = input()
def main():

Loading…
Cancel
Save