Skip to content

Instantly share code, notes, and snippets.

@visnup
visnup / dabblet.css
Created June 19, 2014 00:27 — forked from anonymous/dabblet.css
Untitled
.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;
}
@visnup
visnup / SlideAnimatedTransitioning.h
Last active November 9, 2024 08:57
iOS 7 screen edge gesture swipe from right to left (similar to edge swiping from left to right) on UINavigationController. *only* the edge swipe uses the custom transition; everything else uses default behaviors.
//
// SlideAnimatedTransitioning.h
// SwipeLeft
//
// Created by Visnu on 4/14/14.
// Copyright (c) 2014 Visnu Pitiyanuvath. All rights reserved.
//
#import <Foundation/Foundation.h>
@visnup
visnup / README.md
Last active August 29, 2015 13:58
iOS-friendly histogram

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.

@visnup
visnup / dabblet.css
Created April 4, 2014 05:03 — forked from LeaVerou/dabblet.css
(C)Leanest CSS spinner ever
/**
* (C)Leanest CSS spinner ever
*/
@keyframes spin {
to { transform: rotate(1turn); }
}
.progress {
position: relative;
@visnup
visnup / listenOnPortOrSocketFile.js
Last active May 17, 2019 11:57
Listen on a TCP port or a UNIX socket file in node.js. Handle EADDRINUSE for the socket file by deleting it and re-listening.
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');
};
@visnup
visnup / really.sh
Created February 12, 2014 23:39
people on twitter need something better to do.
#!/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
@visnup
visnup / OpenUDID+Base64.m
Created January 26, 2014 22:41
get an openudid in a base64 string rather than a hex string.
@interface OpenUDID (Base64)
+ (NSString *)valueBase64;
@end
@implementation OpenUDID (Base64)
+ (NSString *)valueBase64
{
@visnup
visnup / underrated.md
Last active January 3, 2016 22:59
underrated things that have more overrated counterparts

My growing list of underrated things in programming that go unnoticed, normally due to there being a more popular alternative. Will be good fodder for a talk...

HSL (vs. RGB)

LAB

Base64 (vs. hex)

urlsafe variants

@visnup
visnup / -
Last active December 28, 2015 09:19 — forked from huned/-
/\___/\
( .\ /. )
@visnup
visnup / dabblet.css
Created July 5, 2013 20:55
it's hard for your eye to track back from right to left across a large width
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 {