- https://t.co/1FSFQUfp
- http://t.co/vJzKAzFs
- http://t.co/ncTxB5za
- http://t.co/klb4yNn7
- https://twitter.com/randomfrequency/status/244188321834758145
- https://www.lucidchart.com/
- google drawings (a part of google docs I never noticed somewhow)
- http://t.co/E5uMkjaP
- https://t.co/8w7ob5dc
- Emacs' Artist Mode
// ==UserScript== | |
// @name Use Markdown, sometimes, in your HTML. | |
// @author Paul Irish <http://paulirish.com/> | |
// @link http://git.io/data-markdown | |
// @match * | |
// ==/UserScript== | |
// If you're not using this as a userscript just delete from this line up. It's cool, homey. |
import eventbrite | |
your_app_key = 'YOUR_APP_KEY_HERE' | |
your_user_key = 'YOUR_USER_KEY_HERE' | |
repeating_event_eid = 3919635736 | |
eb_client = eventbrite.EventbriteClient({'app_key': your_app_key, 'user_key': your_user_key}) | |
def convert_repeat_to_organizer_schedule(evnt): | |
#clear existing repeat_schedule | |
eb_client.event_update({'id': evnt['id'], 'repeat_schedule': 'clear'}) |
var Browser = require("zombie"), | |
program = require("commander"); | |
program | |
.version('0.0.1') | |
.option('-l, --location <string>', 'location:port') | |
.option('-u, --username <string>', 'username') | |
.option('-p, --password <string>', 'password') | |
.option('-c, --concurrencies <integer>', 'number of browsers you want') |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
<title>Easy earthquakes</title> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://libs.cartocdn.com/cartodb.js/v2/cartodb.js"></script> | |
<style type="text/css"> | |
body{ |
AWS = (function () { | |
var SDK = Npm.require("aws-sdk"); | |
var crypto = Npm.require("crypto"); | |
var url = Npm.require("url"); | |
function getAuthenticatedURL(fullUrl, accessKeyID, secretAccessKey, expires) { | |
/* | |
Signature = URL-Encode( Base64( HMAC-SHA1( YourSecretAccessKeyID, UTF-8-Encoding-Of( StringToSign ) ) ) ); |
Libertarianism when applied to the social and political structure of technology and open source (Meritocracy) perpetuates inequality by failing to acknowledge the role of power and current state of inequality.
American libertarianism is uniquely American, unfortunately Silicon Valley happens to be in America. It is a political and social philosophy that believes individual ownership and power should supplant collective ownership of any kind. Most immediately the ownership and interventionist powers of government should be dismantled and the free market should be left with the responsibility of creating equality and individuals expected to protect their own interests.
Filtered through the lens of technology this becomes a more unified theory of Meritocracy. Being that we don't trade goods for currency we don't have a traditional market and libertarians must invent one. A strange mix of experience, social capital, and skill are a sort of currency in technology communities. Merit
https://twitter.com/izs/status/416635696367951873 | |
let's talk here, we have commments with mor ethan 140 characters! |
# in your .bash_profile / .bashrc | |
alias pushit='git push && open http://www.youtube.com/watch?v=vCadcBR95oU' | |
# to get the file into your .bash_profile | |
echo "alias pushit='git push && open http://www.youtube.com/watch?v=vCadcBR95oU'" >> .bash_profile |