Skip to content
View JackAtOmenApps's full-sized avatar
💭
Happily typing away
💭
Happily typing away

Organizations

@watervize
Block or Report

Block or report JackAtOmenApps

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. OmenApps/django-postgresql-dag OmenApps/django-postgresql-dag Public

    Directed Acyclic Graphs with a variety of methods for both Nodes and Edges, and multiple exports (NetworkX, Pandas, etc). This project is the foundation for a commercial product, so expect regular …

    Python 40 6

  2. OmenApps/django-calendardate OmenApps/django-calendardate Public

    A calendar model with date metadata for querying against.

    Python 15 4

  3. Example of the new django 3.0 TextCh... Example of the new django 3.0 TextChoices enumeration types
    1
    from django.db import models
    2
    
                  
    3
    class Animal(models.Model):
    4
    
                  
    5
        class AnimalType(models.TextChoices):
  4. Django and HTMX Preferences Example Django and HTMX Preferences Example
    1
    from django.db import models
    2
    from django.contrib.auth.models import AbstractBaseUser
    3
    from django.utils.translation import ugettext_lazy as _
    4
    
                  
    5