I hereby claim:
- I am demeter on github.
- I am ellie (https://keybase.io/ellie) on keybase.
- I have a public key whose fingerprint is F845 257D 4679 6465 3815 FFF6 9117 83FB 4845 E4DD
To claim this, I am signing this object:
ಠ_ಠ | |
( ͡° ͜ʖ ͡°) | |
¯\_(ツ)_/¯ | |
(╯°□°)╯︵ ┻━┻ | |
http://www.fileformat.info/convert/text/upside-down.htm | |
WRTTN http://wrttn.me/30dbfd/ | |
Unicode Emoticons |
I hereby claim:
To claim this, I am signing this object:
<p>Sidewiki supported the following HTML tags within entries:</p><br> | |
<p>Font formatting</p> | |
<p> | |
<ul> | |
<li>b <code> <b>Bold text</b></code> </li> | |
<li>em <code<em>Emphasize your text</em></code></li> | |
<li>i <code><i>Italicize your text</i></code></li> | |
<li>strike <code><strike>Strike out text</strike></code></li> | |
<li>strong <code><strong>strong font</strong></code></li> | |
<li>sup <code>Go <sup>superscript</sup></code></li> |
0rz.tw | |
2tu.us | |
301url.com | |
6url.com | |
a2n.eu | |
adjix.com | |
azqq.com | |
b23.ru | |
b65.us | |
bit.ly |
Error Retries and Exponential Backoff in AWS | |
see http://docs.aws.amazon.com/general/latest/gr/api-retries.html for context. | |
Numerous components on a network, such as DNS servers, switches, load balancers, and others can generate | |
errors anywhere in the life of a given request. The usual technique for dealing with these error responses | |
in a networked environment is to implement retries in the client application. This technique increases the | |
reliability of the application and reduces operational costs for the developer. | |
Each AWS SDK implements automatic retry logic. The AWS SDK for Java automatically retries requests, and you | |
can configure the retry settings using the ClientConfiguration class. For example, in some cases, such as |
doInstall <- TRUE # Change to FALSE if you don't want packages installed. | |
toInstall <- c("plyr", "ggplot2") | |
if(doInstall){install.packages(toInstall, repos = "http://cran.r-project.org")} | |
lapply(toInstall, library, character.only = TRUE) | |
ANES <- read.csv("http://www.oberlin.edu/faculty/cdesante/assets/downloads/ANES.csv") | |
head(ANES) | |
ANES$PID3 <- factor(ANES$pid7) # Convert to three-level Party ID: | |
levels(ANES$PID3) <- c("Dem", "Dem", "Dem", "Ind", "Rep", "Rep", "Rep") |
Dear soon-to-be-former user, | |
We've got some fantastic news! Well, it's great news for us anyway. You, on | |
the other hand, are fucked. | |
We've just been acquired by: | |
<! DOCTYPE html> | |
<html> | |
<head> | |
<title>PLS Processor</title> | |
<!-- needed for IE9 to ensure it treats page as HTML5 properly --> | |
<meta http-equiv="X-UA-Compatible" content="IE=9" > | |
</head> | |
<body> | |
<p>Audio PLS processor<p> | |
<audio id="audio" controls="controls"></audio > |
#!/usr/bin/env python | |
import os | |
import subprocess | |
# First, build up the results file. it'll have the form: | |
# 110 vidioc-g-dv-preset.xml | |
linecount_cmd = "rm results; for i in *; do find $i -execdir wc -c '{}' \; " + \ | |
">> results; done;" | |
os.system(linecount_cmd) |
############################################################################### | |
# Quick & Dirty script to download the Avatars of your Twitter Followers | |
# Daniel McCarney -- 10/10/11 | |
# | |
# Emphasis on the quick & dirty. There's no error handling, and bad things | |
# are liable to happen if you have Twitter followers with malicious avatars | |
# | |
# Requirements: Python 2.6, python-twitter, OAuth keys* | |
# | |
# *Twitter requires OAuth authentication for the API calls this script uses. |