I hereby claim:
- I am alanhamlett on github.
- I am alanhamlett (https://keybase.io/alanhamlett) on keybase.
- I have a public key whose fingerprint is 2A17 98FE 2E12 3F7C BCDB E05F 76C4 315D 71A9 FECC
To claim this, I am signing this object:
| -e git://github.com/kennethreitz/inbox.py.git@551b4f44b144564504c687cebdb4c543cb8e9adf#egg=inbox | |
| alembic==0.8.3 | |
| amqp==1.4.9 | |
| anyjson==0.3.3 | |
| boto==2.39.0 | |
| braintree==3.20.0 | |
| cairosvg==1.0.19 | |
| celery==3.1.20 |
| (function() { | |
| var utils = {}; | |
| utils.clear_form_errors = function($el) { | |
| $el.find('.text-danger').each(function() { | |
| $(this).empty(); | |
| }); | |
| return $el; | |
| }; |
| {% extends "common/base.html" %} | |
| {% block subtitle %}Django vs Flask Worksheet{% endblock %} | |
| {% block css %} | |
| {% compress 'css' %} | |
| <link href="{{STATIC_URL}}libs/fullpage.js/jquery.fullPage.css" rel="stylesheet" type="text/css"> | |
| <link href="{{STATIC_URL}}css/django-vs-flask-worksheet.less" rel="stylesheet" type="text/less"> | |
| {% endcompress %} | |
| {% endblock %} |
| """ File: views.py | |
| """ | |
| @blueprint.route('/project/<path:project_name>/commits') | |
| @api_utils.nocache | |
| @auth.login_required | |
| def project_commits(project_name): | |
| user = app.current_user |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| * | |
| * Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. | |
| * | |
| * Oracle and Java are registered trademarks of Oracle and/or its affiliates. | |
| * Other names may be trademarks of their respective owners. | |
| * | |
| * The contents of this file are subject to the terms of either the GNU | |
| * General Public License Version 2 only ("GPL") or the Common |
| #!/usr/bin/env python | |
| import base64 | |
| import requests | |
| ACCESS_TOKEN = "XXX" | |
| APP_SECRET = "XXX" | |
| # get some JSON, authenticating with url args | |
| r = requests.get('https://wakatime.com/api/v1/users/current/stats/complete', params={'access_token': ACCESS_TOKEN}) |
| from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin, BaseUserManager | |
| from django.db import models, transaction | |
| from django.utils import timezone | |
| class Manager(models.Manager): | |
| """ Use this class to define custom methods on models. | |
| """ | |
| def get_query_set(self): |
| /* responsive.less | |
| * ~~~~~~~~~~~~~~~ | |
| * | |
| * Responsive helper classes for Bootstrap style margins, padding, aligning, and displaying per screen size. | |
| * Works along with Bootstrap3. | |
| */ | |
| //== Media queries breakpoints from Bootstrap3 | |
| // Extra small screen / phone |
| # -*- coding: utf-8 -*- | |
| """ | |
| wakatime.amqp | |
| ~~~~~~~~~~~~~ | |
| Setup for Celery distributed task queue. | |
| """ | |
| import socket |