Skip to content

Instantly share code, notes, and snippets.

View ginader's full-sized avatar

Dirk Ginader ginader

View GitHub Profile
<script type="text/javascript">
$(function() { if($.browser.mozilla){ $('.equalize').removeClass('equalize'); } });
</script>
$ npm update npm --loglevel verbose
npm info it worked if it ends with ok
npm verb cli [ 'update', 'npm', '--loglevel', 'verbose' ]
npm info version 0.2.1
npm verb config file /Users/ginader/.npmrc
npm verb config file /usr/local/Cellar/node/0.2.2/etc/npmrc
npm info update Nothing to update
npm not ok
$ npm install npm
npm info it worked if it ends with ok
npm info version 0.2.1
npm info fetch http://registry.npmjs.org/npm/-/[email protected]
npm info install [email protected]
npm WARN [email protected] linkMans It seems /usr/local/Cellar/node/0.2.2/share/man might not be visible to man
npm WARN [email protected] linkMans For greater justice, please add it to your man path
npm WARN [email protected] linkMans See: `man man`
npm info activate [email protected]
npm info build Success: [email protected]
@ginader
ginader / bulletproof accessible required inputs
Created February 9, 2011 23:39
if ARIA is supported it will anounce required on the input and ignore the image. If not the user sees the required icon and gets the alt text.
<label for="fname">
First Name <img src="required-icon.png" alt="required" role="presentation">
</label>
<input type="text" aria-required="true" required id="fname" name="fname" >
@ginader
ginader / dabblet.css
Created February 3, 2012 18:38
fade in from display:none(ish)
/**
* fade in from display:none(ish)
* taken from http://jsfiddle.net/Schepp/KFja4/
*/
body{
margin-top:3em;
}
span {
display: inline-block;
overflow: hidden;
@ginader
ginader / dabblet.css
Created July 24, 2012 00:37
aligning labels across multiple blocks
/**
* aligning labels across multiple blocks
*/
table {
background:white;
margin:20px;
border:none;
border-spacing: 0;
}
@ginader
ginader / github-pull.js
Created August 28, 2012 03:43 — forked from botic/github-pull.js
Github pull request server
include("ringo/subprocess");
var log = require("ringo/logging").getLogger(module.id);
exports.app = function(req) {
log.info("Incoming request.");
if (req.method !== "POST") {
log.info("Not a valid POST request.");
@ginader
ginader / gist:3802506
Created September 28, 2012 22:58
Update Livereload 2.3.8 to Sass 3.2.1
# 1. in case you haven't installed the latest SASS
$ sudo gem install sass
# 2. now let's symlink the system Sass into the Livereload bundle
cd /Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib
sudo mv sass sass-bundled
sudo ln -s /Library/Ruby/Gems/1.8/gems/sass-3.2.1/ sass
# 3. done. enjoy the lovely new features like @content for awesome @media support :-)
@ginader
ginader / my approach in Sass
Created November 30, 2012 00:10
optimizing the class names of sprites
@import "compass";
$flags-spacing: 50px;
$flags-position: 50%;
$flags-sprite-base-class: ".flags li";
@import "flags/*.png";
$sprites: sprite-map("flags/*.png");
@ginader
ginader / retina.css
Created November 30, 2012 19:41
retina media queries
// taken from this article:
// http://www.brettjankord.com/2012/11/28/cross-browser-retinahigh-resolution-media-queries/
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi) {
/* Retina-specific stuff here */
}