An iOS-friendly histogram of my motion activity on my phone. Meant to be used inside a UIWebView.
Open on a phone and scrub back and forth with your finger.
.loading { | |
border-bottom: 6px solid rgba(0, 0, 0, .1); | |
border-left: 6px solid rgba(0, 0, 0, .1); | |
border-right: 6px solid rgba(0, 0, 0, .1); | |
border-top: 6px solid rgba(0, 0, 0, .4); | |
border-radius: 100%; | |
height: 50px; | |
width: 50px; | |
animation: rot .6s infinite linear; | |
} |
// | |
// SlideAnimatedTransitioning.h | |
// SwipeLeft | |
// | |
// Created by Visnu on 4/14/14. | |
// Copyright (c) 2014 Visnu Pitiyanuvath. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
An iOS-friendly histogram of my motion activity on my phone. Meant to be used inside a UIWebView.
Open on a phone and scrub back and forth with your finger.
/** | |
* (C)Leanest CSS spinner ever | |
*/ | |
@keyframes spin { | |
to { transform: rotate(1turn); } | |
} | |
.progress { | |
position: relative; |
var fs = require('fs') | |
, net = require('net') | |
, http = require('http') | |
, port = process.env.PORT; | |
var app = function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('Hello World\n'); | |
}; |
#!/bin/sh | |
url='https://twitter.com/izs/status/433464696289497088' | |
while [[ -n $url ]]; do | |
echo $url | |
url=$(curl -s $url | fgrep data-expanded-url | head -1 | sed 's/.*data-expanded-url="\([^"]*\).*/\1/') | |
done |
@interface OpenUDID (Base64) | |
+ (NSString *)valueBase64; | |
@end | |
@implementation OpenUDID (Base64) | |
+ (NSString *)valueBase64 | |
{ |
/\___/\ | |
( .\ /. ) |
div { | |
border-bottom: solid 1px gray; | |
padding: 20px; | |
} | |
/* it's hard for your eye to track back from right to left across a large width */ | |
.width { | |
column-count: 2; | |
} | |
.width p:first-child { |