4 Matching Annotations
  1. Dec 2022
    1. https://tellico-project.org/

      Tellico<br /> Collection management software, free and simple

      <small><cite class='h-cite via'> <span class='p-author h-card'>Fernando Borretti</span> in Unbundling Tools for Thought (<time class='dt-published'>12/29/2022 15:59:17</time>)</cite></small>

    1. I continued to use this analog method right up through my Ph.D. dissertation and first monograph. After a scare in the early stages of researching my second monograph, when I thought all of my index cards had been lost in a flood, I switched to an electronic version: a Word doc containing a table with four cells that I can type or paste information into (and easily back up).
  2. Aug 2022
    1. Politique documentaire Ensemble des objectifs et processus pilotant la gestion de l’information, incluant la politique d’acquisition, la politique de conservation et la politique de médiation des collections. La politique documentaire est une partie intégrante et essentielle du projet d'établissement, permettant de répondre aux missions de la structure et aux attentes des usagers.
  3. Jan 2014
    1. When a garbage collection is performed there are three phases: mark, sweep and compact. In the “mark” phase, we assume that everything in the heap is “dead”. The CLR knows what objects were “guaranteed alive” when the collection started, so those guys are marked as alive. Everything they refer to is marked as alive, and so on, until the transitive closure of live objects are all marked. In the “sweep” phase, all the dead objects are turned into holes. In the “compact” phase, the block is reorganized so that it is one contiguous block of live memory, free of holes.