26 Matching Annotations
  1. Sep 2024
  2. Jul 2023
  3. May 2023
  4. Feb 2023
    1. La mise en place d’une telle « allocation d’autonomie » est défendue en France91 depuis la Charte de Grenoble de 1946 par des organisations comme l’Union nationale des étudiants de France, mais n’a jamais été réalisée. La mesure a failli être adoptée en 1951, alors que « la commission de l’Éducation nationale de l’Assemblée nationale avait ainsi adopté à l’unanimité le rapport Cayol en faveur d’une rémunération étudiante92 ». Le refus d’adopter la mesure en France s’expliquerait notamment par l’influence croissante de la théorie du capital humain néolibérale qui présente l’étudiant·e comme un investisseur en lui-même93. Le salariat étudiant était encore revendiqué en 2018 en France (ainsi qu’au Québec par les Comités unitaires sur le travail étudiant94) et l’idée a été notamment reprise par le candidat présidentiel Jean-Luc Mélenchon à la suite de l’immolation d’un étudiant pour cause de précarité (celui-ci avait écrit un texte revendiquant le salariat étudiant avant de poser son geste). Mélenchon proposait dans sa plateforme une allocation de 800 euros par mois95.
  5. Aug 2022
  6. Nov 2021
  7. Oct 2021
    1. Sun, W., Liu, Y., Amanat, F., González-Domínguez, I., McCroskery, S., Slamanig, S., Coughlan, L., Rosado, V., Lemus, N., Jangra, S., Rathnasinghe, R., Schotsaert, M., Martinez, J. L., Sano, K., Mena, I., Innis, B. L., Wirachwong, P., Thai, D. H., Oliveira, R. D. N., … Palese, P. (2021). A Newcastle disease virus expressing a stabilized spike protein of SARS-CoV-2 induces protective immune responses. Nature Communications, 12(1), 6197. https://doi.org/10.1038/s41467-021-26499-y

  8. Aug 2021
  9. May 2021
  10. Jan 2021
  11. Dec 2020
  12. Sep 2020
  13. Aug 2020
  14. Jul 2020
  15. Jun 2020
  16. May 2020
  17. Aug 2017
  18. Jan 2014
    1. Having made these points many times in the last few years, I've realized that the fundamental problem is in the mistaken belief that the type system has anything whatsoever to do with the storage allocation strategy. It is simply false that the choice of whether to use the stack or the heap has anything fundamentally to do with the type of the thing being stored. The truth is: the choice of allocation mechanism has to do only with the known required lifetime of the storage.

      The type system has nothing to do with the storage allocation strategy; the choice of allocation mechanism has to do only with the known required lifetime of the storage.

    1. If we’re in that situation when new memory is allocated then the “high water mark” is bumped up, eating up some of the previously “free” portion of the block. The newly-reserved memory is then usable for the reference type instance that has just been allocated. That is extremely cheap; just a single pointer move, plus zeroing out the newly reserved memory if necessary.