Skip to content
View hernantz's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report hernantz

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. classyconf classyconf Public

    Declarative and extensible library for configuration & code separation

    Python 83 4

  2. backbone.sos backbone.sos Public

    Keep track of the loading state of your models and collections.

    HTML 6 2

  3. Fabfile with common fabric tasks, f... Fabfile with common fabric tasks, featuring virtualenvwrapper, nginx, supervisord, git deployment and some other goodies.
    1
    from fabric.api import task, local, sudo, run, prefix, env, cd
    2
    from fabric.contrib.files import exists, first
    3
    from contextlib import contextmanager, nested
    4
    
                  
    5
    def once(s):
  4. django-htmx-demo django-htmx-demo Public

    Test demo to show how to integrate django with htmx

    JavaScript 5 1

  5. masuno masuno Public

    This project aims to simplify the calculation of meal costs and determine who pays how much.

    JavaScript 1

  6. Delete pyc files git hook Delete pyc files git hook
    1
    $ cat ~/path/to/.git/hooks/post-checkout 
    2
    #!/bin/bash
    3
    
                  
    4
    echo "Cleaning pyc"
    5
    find . -iname '*.pyc' -delete