This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |