Skip to content
View reagle's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report reagle

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
reagle/README.md

Pinned

  1. pandoc-wrappers pandoc-wrappers Public

    Various python wrappers I use to build documents using markdown and pandoc.

    Python 15 1

  2. thunderdell thunderdell Public

    Python scripts for bibliographic management using Freeplane mindmapper.

    Python 12 5

  3. Wrap text, including semantically by... Wrap text, including semantically by add breaks at terminal punctuation.
    1
    #!/usr/bin/env python2.7
    2
    """Wrap text, including semantically by add breaks at 
    3
    terminal punctuation."""
    4
    
                  
    5
    # Using python 2.7 so portions can be used in Sublime Text 3 plugin
  4. Generate a class calendar using dura... Generate a class calendar using duration of semester, the days of the week a class meets, and holidays. It can modify a markdown syllabus if they share the same number of sessions and classes are designed with the pattern "### Sep 30 Fri"
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    """Generate a class calendar using duration of semester, the days of the week a
    4
    class meets, and holidays. It can modify a markdown syllabus if they share the
    5
    same number of sessions and classes are designed with the pattern "### Sep 30 Fri"
  5. Pretty print a mailbox, since some p... Pretty print a mailbox, since some previous date, as a simple HTML file
    1
    #!/usr/bin/env python3
    2
    """Pretty print a mailbox, since some previous date, as a simple HTML file"""
    3
    
                  
    4
    import argparse  # http://docs.python.org/dev/library/argparse.html
    5
    
                  
  6. Sublime Text plugin for editing emai... Sublime Text plugin for editing emails in Thunderbird/exteditor; it unmangles MS Outlook safelinks and wraps quotes
    1
    import re
    2
    import sublime  # https://www.sublimetext.com/docs/3/api_reference.html
    3
    import sublime_plugin
    4
    import textwrap
    5
    import urllib