home.social
  1. @albertcardona Some initial focus was directed at :
    djl.ai/

    However, I have been looking closely ar DL4J and how may be used more extensively in .

  2. development is mainly concentrated at based at .

    development is currently focused at @HHMI Janelia where I work.

    Tobias Pietzsch, an independent developer, is now picking up of and development with support from and @HHMI .

  3. One of the open source projects I work on is (is just ).

    At the heart of is , a n-dimensional numerical processing library for .

    Yesterday, we had a Chan Zuckberg Initiative Essential Open Source Software sponsored community meeting:
    forum.image.sc/t/bigdataviewer

  4. I'm a Software Engineer at @HHMI 's Research Campus in Scientific Computing. I work on software related to microscopy where I mostly use , , and . I'm interested in Open Science, Open Data, and Open Source Software.

    I was formerly a postdoc in Cell Biology at and and a graduate student in Systems Biology and Biophysics at and . I concentrated in Biological Chemistry and Mathematics at .

  5. The difference is due to the behavior of when given a null pointer for the first argument.

    Linux: "If filename is NULL, then the returned handle is for the main program."

    man7.org/linux/man-pages/man3/

  6. I've been looking at the behavior of on and in relation to `ctypes.pythonapi._handle`.

    On Linux, this returns a specific handle to look up symbols in the Python executable via `dlsym` even when statically linked to libpython.

    On macOS, this returns RTLD_DEFAULT, which can be a bit slow since this searches all mach-o images.