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

Block or report tachyondecay

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. tachyondecay.net-mirror tachyondecay.net-mirror Public

    Public mirror of the codebase for my blog (tachyondecay.net) and book review sites (kara.reviews).

    SCSS

  2. DateTime WTForms field that assumes ... DateTime WTForms field that assumes input is in local time and converts to UTC for storage
    1
    # Requires Arrow package
    2
    
                  
    3
    class DateTimeWidget:
    4
        """Widget for DateTimeFields using separate date and time inputs."""
    5
        def __call__(self, field, **kwargs):
  3. Tags in Flask via SQLalchemy and ass... Tags in Flask via SQLalchemy and association proxies
    1
    from app import db
    2
    from sqlalchemy import desc, event, func, orm
    3
    from sqlalchemy.ext.associationproxy import association_proxy
    4
    from sqlalchemy.ext.declarative import declared_attr
    5
    from sqlalchemy_utils import ArrowType, auto_delete_orphans
  4. DateTimeForm: Combined date/time HTM... DateTimeForm: Combined date/time HTML5 inputs for WTForms
    1
    import datetime
    2
    
                  
    3
    from wtforms import Form, StringField
    4
    from wtforms.fields.html5 import DateField
    5
    from wtforms.widgets.html5 import TimeInput