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
#!/bin/bash | |
for f in *.scss; do sass-convert $f ${f%scss}sass ; done | |
rm *.scss |
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
//This script randomly cycles images with t1 and t2 id tags with a fade effect by jQuery | |
//by Sanja Curgus 2008 | |
$(document).ready(function() | |
{ | |
$("#t1").hide(); | |
$("#t2").hide(); | |
var ThumbsCount = 3; | |
var thumbs = new Array (ThumbsCount); |
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 WMIDateStringToDate(dtmInstallDate) | |
WMIDateStringToDate = _ | |
CDate(Mid(dtmInstallDate, 5, 2) &_ | |
"/" &_ | |
Mid(dtmInstallDate, 7, 2) &_ | |
"/" &_ | |
Left(dtmInstallDate, 4)) | |
End Function | |