This file contains hidden or 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
## {{{ http://code.activestate.com/recipes/578219/ (r2) | |
# -*- coding: Windows-1251 -*- | |
''' | |
rename_to_exiftime.py | |
Rename JPEG files according to EXIF-date using PIL | |
If global variable CREATE_HARDLINK is set, script creates Windows (XP) batch file | |
for creating hardlink version of source files |
This file contains hidden or 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
################### | |
# http://stackoverflow.com/questions/639647/git-and-asp-mvc | |
################### | |
# | |
################### | |
# compiled source # | |
################### | |
*.com | |
*.class | |
*.dll |
This file contains hidden or 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
(function() { | |
// Background image variable size (keeping aspect ratio fixed) | |
// Based on http://jonathanstark.com/blog/2011/01/03/variable-size-background-image/ | |
// By Jorge Barnaby (jorge {dot} barnaby {at} gmail) - Jun 2012 | |
// Background image | |
var imgPath = 'assets/background.jpg'; // Path of the image to be used as background | |
var origW = 1920; // Original width of the image | |
var origH = 1080; // Original height of the image | |
var ratio = origW / origH; |
NewerOlder