I hereby claim:
- I am brandonb927 on github.
- I am brandonb927 (https://keybase.io/brandonb927) on keybase.
- I have a public key whose fingerprint is 8826 74F2 B591 348F B704 0CE6 5356 85E8 95E5 E538
To claim this, I am signing this object:
<!doctype html> | |
<html ng-app> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script> | |
</head> | |
<body ng-controller="CarSelector"> | |
<h3>Select A Dream Car</h3> |
I hereby claim:
To claim this, I am signing this object:
<!-- | |
From: https://metric.io/blog/2014/04/simple-client-side-error-logging | |
Stacktrace.js available from http://stacktracejs.com | |
--> | |
<script src="/static/js/stacktrace.js"></script> | |
<script> | |
window.onerror = function() { | |
var stackTrace; |
From: http://run-node.com/littlest-database-that-could/
I've written numerous tiny databases. They don't have much features, but they don't need much features. Usually I'm looking for fast simple key/value stores and Node never disappoints. The point here is, why abstract key value store when JS gives us one for free, as it's most basic component: object.
Will it meet every need? No. But it will meet ALOT of scenarios.
In memory JS object lookups, were talking hundreds of thousands of lookups (you'll easily flood http before the db), and save hundreds of thousands of records in a JSON file written to disk. Not a 200ms r/t to some hosted Redis. Hey, that's fine if that's your thing.
Here's the requirements:
import httplib | |
import base64 | |
import contextlib | |
import simplejson | |
import urllib | |
from django.conf import settings | |
def stripe_fetch(resource, method='GET', params=None, secret=settings.STRIPE_SECRET, prefix='/v1'): |
<script src="https://apis.google.com/js/plusone.js"></script> | |
<div id="comments"></div> | |
<script> | |
gapi.comments.render('comments', { | |
href: window.location, | |
width: '624', | |
first_party_property: 'BLOGGER', | |
view_type: 'FILTERED_POSTMOD' | |
}); | |
</script> |
document.cookie="VISITOR_INFO1_LIVE=oKckVSqvaGw; path=/; domain=.youtube.com";window.location.reload(); |
git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | |
<meta name="description" content="{{ site.bio }} - {{ site.author }}" /> | |
<meta name="copyright" content="Copyright (c) 2013 {{ site.author }}" /> | |
<meta name="classification" content="blog" /> | |
{% if is_post %} | |
<meta property="article:published_time" content="{{ post.created_at }}" /> |