16 Matching Annotations
  1. May 2025
    1. Scott-Heron’s poetry collections include Small Talk at 125th and Lenox: A Collection of Black Poems (1970) and So Far, So Good (1990). An overview of his poetry can be found in Now and Then: The Poems of Gil Scott-Heron (2000). He also wrote the novels The Vulture (1970) and The Nigger Factory (1972) and the memoir The Last Holiday (2012) and is the subject of the biography Gil Scott-Heron: Pieces of a Man (2014), by Marcus Baram.
  2. Jun 2024
  3. Dec 2023
    1. What is a thread?

      A thread is a way of allowing your computer to break up a single process/program into many lightweight pieces that execute in parallel. Somewhat confusingly, Python's standard implementation of threading limits threads to only being able to execute one at a time due to something called the Global Interpreter Lock (GIL). The GIL is necessary because CPython's (Python's default implementation) memory management is not thread-safe. Because of this limitation, threading in Python is concurrent, but not parallel. To get around this, Python has a separate multiprocessing module not limited by the GIL that spins up separate processes, enabling parallel execution of your code. Using the multiprocessing module is nearly identical to using the threading module.

      Asynchronous nature of threading: as one function waits, another one begins, and so on.

  4. Sep 2023
    1. This done, Adler can say that young crit ics of “the System” are not true revolutionaries. Real revolutionaries work within the System — since the System is the Revolution.

      How does the general idea of zeitgeist of the early 70's relate to the idea of "revolution"?

      See also: Gil Scott-Heron's "The Revolution Will Not Be Televised" (1970)

  5. Mar 2023
  6. Feb 2023
  7. Nov 2021
  8. Mar 2021
  9. Oct 2020
  10. Nov 2018
    1. The kids at the record company are very enthusiastic, and they have a lot of friends they have made, and they all want to have an interview, and the only problem is they’re asking the same things people asked me a long, long time ago, because that’s what they do when they’re starting—you ask questions you already know the answer to. I don’t want to disappoint them, but you can’t disappoint unless you have an appointment. They don’t know I only like to talk to people who have something to talk about other than me. Like everybody in New York, they know everything. How can you tell them anything?”
  11. Nov 2014