Skip to content
View rwirth's full-sized avatar
Block or Report

Block or report rwirth

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. pairing-imsrg pairing-imsrg Public

    A simple Python implementation of the In-Medium Similarity Renormalization Group for a pairing Hamiltonian

    Python 1 2

  2. mendelint mendelint Public

    A cleaning tool for Mendeley's BibTeX output.

    Python

  3. Script to add bookmarks to a PDF file Script to add bookmarks to a PDF file
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    import collections
    4
    import io
    5
    import re
  4. Deprecated decorator for Python. Use... Deprecated decorator for Python. Uses clever introspection to set a helpful filename and lineno in the warning message, even in complex cases like code being executed via execfile. The warning is properly registered and repeated only once for each 'offending' line (by default).
    1
    import functools
    2
    import inspect
    3
    import warnings
    4
    
                  
    5