Skip to content

Instantly share code, notes, and snippets.

View bicho44's full-sized avatar

Federico Reinoso bicho44

View GitHub Profile
@bicho44
bicho44 / index.html
Created December 21, 2012 00:46
A CodePen by jelhaouchi. Calendar without tables - Example of calendar building without tables, minimalistic style
<div id="calendar" class="calendar_modern">
<div class="calendar">
<div class="nav">
<i title="left"></i>
<b title="right"></b>
</div>
<div class="months">
<div class="month" data-date="2011.1">
@bicho44
bicho44 / blackandwhiteimages.php
Created April 19, 2012 22:17
Generate B + W images in WordPress
<?php
add_image_size('thumbnail-bw', 400, 0, false);
add_filter('wp_generate_attachment_metadata','bw_images_filter');
function bw_images_filter($meta) {
$file = wp_upload_dir();
$file = trailingslashit($file['path']).$meta['sizes']['thumbnail-bw']['file'];
list($orig_w, $orig_h, $orig_type) = @getimagesize($file);
$image = wp_load_image($file);
imagefilter($image, IMG_FILTER_GRAYSCALE);
@bicho44
bicho44 / dabblet.css
Created February 2, 2012 04:55 — forked from chriscoyier/dabblet.css
Ratings Stars
/*
Ratings Stars
(with as little code as possible)
*/
.rating {
unicode-bidi: bidi-override;
direction: rtl;
text-align: center;
}
.rating > span {
/* `Rounded Corners
----------------------------------------------------------------------------------------------------*/
.round_all {
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
@bicho44
bicho44 / HTML5_reset.css
Created February 14, 2010 03:14
HTML 5 reset
/* `HTML5 Reset
----------------------------------------------------------------------------------------------------*/
a,
abbr,
address,
article,
aside,
audio,
b,