Skip to content

Instantly share code, notes, and snippets.

View lwe's full-sized avatar
💭
I may be slow to respond.

Lukas Westermann lwe

💭
I may be slow to respond.
View GitHub Profile
@lwe
lwe / example_usage.markdown
Created September 18, 2009 10:05
iPhoto-like preview batches (Video in action: http://www.vimeo.com/6639381)

in action: http://www.vimeo.com/6639381

javascript:

var pp = "/images/test/images_";
var images_p1 = [ pp + '1.jpg', pp + '2.jpg', pp + '3.jpg', pp + '4.jpg', pp + '5.jpg' ];
var images_p2 = [ pp + '6.jpg', pp + '7.jpg', pp + '8.jpg', pp + '9.jpg', pp + '10.jpg' ];

$('.preview').slideview(function(e) { return e.id == "p1" ? images_p1 : images_p2; }, { size: 75 });
@lwe
lwe / gravatar_helper.rb
Created September 16, 2009 13:07
Some simple helpers to construct gravatar urls and <img/>-tags.
module Gravatar
def self.options; @options ||= {}; end
module GravatarHelper
def gravatar_url(mail, options = {})
options = Gravatar.options.merge(options).stringify_keys!
options.assert_valid_keys('size', 'rating', 'default')
"#{build_gravatar_host(mail)}/avatar/#{Digest::MD5.hexdigest(mail.to_s.strip.downcase)}.jpg#{build_gravatar_url_options(options)}"
end
@lwe
lwe / faker_ch.rb
Created August 11, 2009 11:26
Swiss-ify random data generated by faker
# make faker a bit more swiss-friendly :)
module Faker
class Company
# Add swiss suffixes like AG, GmbH etc.
def self.suffix
%w(AG GmbH und\ Söhne und\ Partner &\ Co. Gruppe LLC Inc.).rand
end
end
@lwe
lwe / reset.css
Created July 1, 2009 09:15
Slightly edited YUI reset.css, i.e. basically changed border-collapse
/* Copyright (c) 2008, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt version: 3.0.0pr2 */
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:separate;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong
,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-b
ottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}