Skip to content

Instantly share code, notes, and snippets.

View herrkris's full-sized avatar

Kristof Dreier herrkris

View GitHub Profile
require 'date'
year = 2011
cw = 1
date = DateTime.new(year, 1, 1)
weekday = (date.wday == 0) ? 6 : date.wday - 1
date = date + (cw * 7) - weekday
puts date
<?php
/**
* Slim - a micro PHP 5 framework
*
* @author Josh Lockhart <[email protected]>
* @copyright 2011 Josh Lockhart
* @link http://www.slimframework.com
* @license http://www.slimframework.com/license
* @version 1.6.0
* @package Slim