I hereby claim:
- I am kylehotchkiss on github.
- I am kylehotchkiss (https://keybase.io/kylehotchkiss) on keybase.
- I have a public key whose fingerprint is 0E64 19C9 F67E 7C4D 264D 4CC8 3DE4 9D15 999F F849
To claim this, I am signing this object:
/** | |
* | |
* fnstraj | Simple CouchDB Wrapper | |
* Copyright 2011-2013 Kyle Hotchkiss | |
* Released under the GPL | |
* | |
* Needs checkup (HEAD) check to verify that we're good to | |
* continue forward with Daemon execution. | |
* | |
*/ |
{ | |
"_id" : "1363975475", | |
"_rev" : "1-b4dab98ce01f55526c19733988982552", | |
"analysis" : { | |
"points" : { | |
"burst" : { | |
"index" : 57, | |
"latitude" : 37.43120734417338, | |
"longitude" : -78.55404367043889, | |
"altitude" : 32747.3439370399 |
<?php | |
/////////////////////////////////// | |
// Local and Production Settings // | |
/////////////////////////////////// | |
if ( strpos( $_SERVER['SERVER_NAME'], ".dev" ) ) { | |
///////////////////////////// | |
// Development / Localhost // | |
///////////////////////////// | |
define('DB_NAME', ''); |
## | |
## Wordpress Redirects: | |
## | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] |
{ | |
"_id" : "1361639151", | |
"_rev" : "1-44fc5784a1232a8105674a8dc9bcf629", | |
"analysis" : { | |
"heading" : 111.6373011593165, | |
"distance" : 173.6348318055695, | |
"midpoint" : { | |
"longitude" : -78.26637652371045, | |
"latitude" : 37.05637464459874 | |
} |
<div class="pagination-centered"> | |
<ul class="pagination"> | |
{% if paginator.previous_page %} | |
{% if paginator.previous_page == 1 %} | |
<li class="arrow"><a href="/" class="arrow">«</a></a> | |
{% else %} | |
<li class="arrow"><a href="/blog/page/{{ paginator.previous_page }}" class="arrow">«</a></li> | |
{% endif %} | |
{% else %} | |
<li class="arrow unavailable"><a href="#">«</a></li> |
var request = require("request"); | |
var moment = require("moment"); | |
var access_token = ''; | |
var getTotalLikes = function( hashtag, callback ) { | |
var realCount; | |
var totalLikes = 0; | |
var totalImages = 0; |
md5: { | |
compile: { | |
files: { | |
'<%= config.tmp %>/styles/': '<%= config.wordpress %>/**/*.css', | |
'<%= config.tmp %>/scripts/': '<%= config.wordpress %>/**/*.js' | |
}, | |
options: { | |
keepBasename: true, | |
keepExtension: true, | |
after: function ( changes ) { |
I hereby claim:
To claim this, I am signing this object:
var transactions = []; | |
var i = 0; | |
jQuery(".summary a.expander").each(function( i ) { | |
transactions.push( this ); | |
}); | |
var getTransactions = (function getTransactions() { | |
if ( i < transactions.length ) { |