Skip to content

Instantly share code, notes, and snippets.

@laurenancona
laurenancona / phillytweets_metatags.html
Last active February 7, 2016 18:26
meta tags for sharing
<meta property="og:title" content="Philly Tweets: demographics & topical trends in Philadelphia" />
<meta property="og:url" content="http://phillytweets.com"/>
<meta property="og:site_name" content="Philly Tweets"/>
<meta property="og:image" content="images/hotlink-ok/philly-tweets-meta.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="644" />
<meta name="twitter:card" content="photo" />
<meta name="twitter:site" content="@devlintufts" />
<meta name="twitter:creator" content="@devlintufts" />
<link rel="image_src" href="images/hotlink-ok/philly-tweets-meta.jpg"/>
@laurenancona
laurenancona / civicapps
Last active March 16, 2016 12:54
Civic Web Applications: from Hacks to Maps
# Civic Web Applications: from Hacks to Maps
---
# surprise:
### application design == product design
----------
@laurenancona
laurenancona / twitter_template.json
Created March 16, 2016 14:45
Tweetoria DDG collector
{
"template": "twitter",
"order": 1,
"settings": {
"number_of_shards": 1
},
"mappings": {
"tweet": {
"_all": {
"enabled": false
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@laurenancona
laurenancona / technocratic-oath.md
Last active February 19, 2021 09:52
technocratic-oath

Technocratic Oath

I swear to fulfill, to the best of my ability and judgment, this covenant:

I will respect the hard-won scientific gains of those physicians in whose steps I walk, and gladly share such knowledge as is mine with those who are to follow.

I will apply, for the benefit of the sick user, all measures which are required, avoiding those twin traps of overtreatment and therapeutic nihilism.

I will remember that there is art to medicine software as well as science, and that warmth, sympathy, and understanding may outweigh the surgeon's knife or the chemist's drug need for another dependency.

@laurenancona
laurenancona / .block
Created July 2, 2016 18:56 — forked from mbostock/.block
Calendar View
license: gpl-3.0
height: 2910
border: no
@laurenancona
laurenancona / .block
Last active July 15, 2016 20:11
Brett
license: gpl-3.0
border: no
scrolling: no
{
"version": 8,
"name": "Dark",
"metadata": {
"mapbox:autocomposite": true,
"mapbox:type": "default",
"mapbox:groups": {
"1444934828655.3389": {
"name": "Aeroways",
"collapsed": true
@laurenancona
laurenancona / json-ld-gtm.html
Last active September 28, 2016 21:10 — forked from chrisgoddard/json-ld-gtm.html
JSON-LD GTM Tag
<script>
(function(){
var data = {
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": {{Page URL}}
},
"headline": {{SCHEMA - Article Headline}},
@laurenancona
laurenancona / loadtest.py
Created October 7, 2016 21:16 — forked from mjumbewu/loadtest.py
Simple load tester that continuously sends GET requests to a list of URLs for a given duration of time. Requires python libraries click and requests.
#!/usr/bin/env python
from __future__ import print_function, division
import click
import csv
from datetime import timedelta
from itertools import cycle
from queue import Queue
import requests