I hereby claim:
- I am maplethorpej on github.
- I am maplethorpej (https://keybase.io/maplethorpej) on keybase.
- I have a public key whose fingerprint is 6720 6C54 FAF3 D5C9 E76C AD1B 5344 67BE 0E22 74FE
To claim this, I am signing this object:
| import React, { Component } from 'react' | |
| class Pagination extends Component { | |
| render () { | |
| const {totalPages, currentPage, selectFn} = this.props | |
| if (totalPages <= 1) {return null} | |
| const pages = Array.from({length: totalPages}, (v, k) => k + 1) |
| import requests | |
| class Nomics: | |
| base_url = 'https://api.nomics.com/v1' | |
| api_key = None | |
| def __init__(self, api_key): | |
| self.api_key = api_key |
| import datetime | |
| import re | |
| class Requester: | |
| start = None | |
| end = None | |
| now = datetime.date.today() | |
| default_period = { |
| Verifying my Blockstack ID is secured with the address 19zu7s3xsWjvNpp7j1jaZA7AQe6RSETVzL https://explorer.blockstack.org/address/19zu7s3xsWjvNpp7j1jaZA7AQe6RSETVzL |
| function subjectCrawl() { | |
| var $list = $('.subject-crawl ul'); | |
| var itemHeight = $list.children('li:first').height(); | |
| var listLength = $list.children().length; | |
| // position center item | |
| $list.css('top', -(($list.height() - itemHeight) / 2)); | |
| scrollList(); |
| # wildcard route for ssl verification | |
| @app.route('/', defaults={'path': ''}) | |
| @app.route('/.well-known/<path:path>') | |
| def ssl_cert(path): | |
| return render_template('.well-known/' + path) |
I hereby claim:
To claim this, I am signing this object:
| Environment: | |
| Request Method: GET | |
| Request URL: http://127.0.0.1:8000/arstechnica.com/posts/?f=json&metric=visitors&minutes=today&limit=15 | |
| Django Version: 1.9.8 | |
| Python Version: 2.7.10 | |
| Installed Applications: | |
| ['account', |
| var navigation = { | |
| setup: function ($container) { | |
| this.onChange($container); | |
| }, | |
| onChange: function ($container) { | |
| var $nav = $container.find('.nav li'), | |
| $content = $container.find('.content li'); | |
| $nav.on('click', function () { |
| .table { | |
| display: table; | |
| width: 100%; | |
| .cell { | |
| display: table-cell; | |
| &.bottom { | |
| vertical-align: bottom; | |
| } | |
| &.top { | |
| vertical-align: top; |