40 Matching Annotations
  1. Jun 2024
  2. Feb 2024
  3. Dec 2023
  4. Jan 2023
  5. Jun 2022
  6. May 2022
  7. Apr 2022
  8. Dec 2021
  9. Nov 2021
  10. Oct 2021
  11. May 2021
  12. Apr 2021
  13. Mar 2021
  14. Oct 2020
  15. Sep 2020
  16. Jun 2020
  17. Apr 2020
  18. Jan 2020
  19. Nov 2019
  20. May 2019
  21. Apr 2019
    1. Instead of encouraging more “data-sharing”, the focus should be the cultivation of “data infrastructure”,¹⁴ maintained for the public good by institutions with clear responsibilities and lines of accountability.

  22. May 2018
    1. We showhow the rise of large datasets, in conjunction with arising interest in data as scholarly output, contributesto the advent of data sharing platforms in a field trad-itionally organized by infrastructures.

      What does this paper mean by infrastructures? Perhaps this is a reference to the traditional scholarly journals and monographs.

  23. Sep 2015
    1. This approach is called change data capture, which I wrote about recently (and implemented on PostgreSQL). As long as you’re only writing to a single database (not doing dual writes), and getting the log of writes from the database (in the order in which they were committed to the DB), then this approach works just as well as making your writes to the log directly.

      Interesting section on applying log-orientated approaches to existing systems.