I hereby claim:
- I am MacDiva on github.
- I am macdiva (https://keybase.io/macdiva) on keybase.
- I have a public key whose fingerprint is CBC3 5D27 B08C 65A6 98D5 0AAB 46DC 305D F033 28EB
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style type="text/css"> | |
| /*css to go here*/ | |
| svg { | |
| border: 1px solid #f0f; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| Today started like your typical day. You woke up, showered, had breakfast. But during your commute, you saw the most extraordinary thing, but you couldn't hear it. What was it? |
| #!/bin/bash | |
| # Set up paths and whatnot | |
| test -e ~/.bashrc && source ~/.bashrc | |
| # We need tmux. Obvs. | |
| if [[ -z `which tmux` ]]; then echo "You need tmux first!"; exit 1; fi | |
| # Named variables are much more flexible | |
| name="$1" |
| # Copyright Jehiah Czebotar 2013 | |
| # http://jehiah.cz/ | |
| import tornado.options | |
| import glob | |
| import os | |
| import sqlite3 | |
| import logging | |
| import datetime | |
| import csv |
| Docs here: | |
| http://www.flickr.com/services/api/flickr.photos.search.htm | |
| Interactive API Explorer for that method here: | |
| http://www.flickr.com/services/api/explore/flickr.photos.search | |
| Find a place. Like this: |
| /* ------------------------------------------------- | |
| MINIMAL TWITTER FOR FLUID / USERSTYLES | |
| Special thanks to: | |
| Max Fenton (@maxfenton) for kicking this off | |
| ------------------------------------------------- */ | |
| .trends, .bird-topbar-etched, .wtf-module, .site-footer, .topics { |
| # | |
| # Before running: | |
| # $ gem install twitter | |
| # | |
| # To run: | |
| # $ ruby counter.rb sleazywebsite.com | |
| # | |
| # Context: | |
| # http://luigimontanez.com/2012/actually-social-media-buttons-work-really-well | |
| # |
| /* Here's how to add a coloured marker to a Google Map with a shadow in the | |
| right place. | |
| The pin itself is dynamically generated using the Google Charts API, | |
| documented here: | |
| https://developers.google.com/chart/image/docs/gallery/dynamic_icons | |
| Note however that this API was marked as deprecated on April 20th 2012 | |
| although it's not clear when or if it will be turned off. | |
| */ |
| class Grid | |
| constructor: (@width, @height) -> | |
| @grid = [] | |
| get: (x,y) -> | |
| @grid[y*@width + x] | |
| set: (x,y,val) -> |