Skip to content

Instantly share code, notes, and snippets.

@atadams
atadams / ScssToSass
Created July 10, 2012 13:33
Terminal: Convert Directory of SCSS to SASS
sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
@atadams
atadams / gist:1439366
Last active September 28, 2015 12:37
Win CL: 7zip Expand each file in a directory
for %I in (*.zip) do 7za e %I
@atadams
atadams / gist:1267613
Last active September 27, 2015 12:08
Excel: ISO Week Formula
=INT((C3-DATE(YEAR(C3-WEEKDAY(C3-1)+4),1,3)+WEEKDAY(DATE(YEAR(C3-WEEKDAY(C3-1)+4),1,3))+5)/7)
@atadams
atadams / gist:1200918
Created September 7, 2011 15:40
Excel Formula: Extract file name from path
=MID([path],FIND("*",SUBSTITUTE([path],"/","*",LEN([path])-LEN(SUBSTITUTE([path],"/",""))))+1,LEN([path]))