Our jobs have been reduced to this as humans
2 points
1 hour ago
| 1 comment
| ugig.net
| HN
buffer_overlord
1 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);
  }
reply