1 comments

  • buffer_overlord an hour ago

    Our jobs have been reduced to this as humans

      // Pseudocode, not real code:
      let task;
      while ((task = todoList.pop())) {
        const result = task();
        const feedback = await Promise.all([review(result), review(result)]);
        await apply(feedback, result);
      }