Skip to content

Instantly share code, notes, and snippets.

@maxw3st
maxw3st / dabblet.css
Created April 22, 2012 10:34 — forked from LeaVerou/dabblet.css
Scrolling shadows by @kizmarh and @LeaVerou
/**
* Scrolling shadows by @kizmarh and @leaverou
* Only works in browsers supporting background-attachment: local; & CSS gradients
* Degrades gracefully
*/
html { background: white; }
.scrollbox {
overflow: auto;
@maxw3st
maxw3st / dabblet.css
Created May 11, 2012 13:35 — forked from jklm313/dabblet.css
some uses for :hover Pseudo class and '~' selector
/* some uses for :hover Pseudo class and '~' selector */
/*/ 360deg Goggle view /*/
/* le wrapper */
.g {
width: 600px;
height: 400px;
margin: 50px auto;
@maxw3st
maxw3st / Fullpage.html
Created May 12, 2012 02:38
A web page created at CodePen.io
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pure CSS3 Slideshow Without Page Jump &middot; CodePen</title>
<style>
YUI.add('node-scroll-info', function (Y) {
/**
Provides the ScrollInfo Node plugin, which exposes convenient events and methods
related to scrolling.
@module node-scroll-info
**/
/**
@maxw3st
maxw3st / index.coffeescript
Created July 24, 2012 19:26
A web page created at CodePen.io.
###
Text masked spring particles
Author: Kushagra Gour a.k.a. Chin Chang
###
# requestanimationframe polyfill
window.requestAnimFrame = (->
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
@maxw3st
maxw3st / index.coffeescript
Created July 24, 2012 20:10
Springy particle text A web page created at CodePen.io.
###
Text masked spring particles
Author: Kushagra Gour a.k.a. Chin Chang
###
# requestanimationframe polyfill
window.requestAnimFrame = (->
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||

Piping into and out of the cloud with skypipe

Skypipe is a magical command line tool that lets you easily pipe data across terminal sessions, regardless of whether the sessions are on the same machine, across thousands of machines, or even behind a firewall. It gives you named pipes in the sky and lets you pipe data anywhere.

Skypipe is sort of like named pipes and netcat, but with even more power and a simpler interface. Here is a simple example using skypipe like you would a regular named pipe in order to gzip a file across shells:

$ skypipe | gzip -9 -c > out.gz

Your skypipe is ready to receive some data from another shell process:

@csswizardry
csswizardry / tagged.css
Created August 7, 2012 19:09
Leaving tags in CSS files to find similar chunks of code
/*------------------------------------*\
$NAV
\*------------------------------------*/
/*
TAGS: ^lists ^navigation ^text
*/
/*
As per csswizardry.com/2011/09/the-nav-abstraction
*/
.nav{
@krisbulman
krisbulman / Readme.md
Last active October 12, 2015 00:58
A Sass mixin for block lists.
@tbwiii
tbwiii / Don't Close Me, Bro
Created November 14, 2012 21:07
A Bookmarklet that keeps you form accidentally closing a tab you wanted to keep open.
javascript:(function(){window.addEventListener('beforeunload',function(){return"Whoa bro, you tried to close me. \n Did you mean to do that?"})})();