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
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch |
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
#301 Redirects for .htaccess | |
#Redirect a single page: | |
Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
#Redirect an entire site: | |
Redirect 301 / http://www.domain.com/ | |
#Redirect an entire site to a sub folder | |
Redirect 301 / http://www.domain.com/subfolder/ |
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
#!/usr/bin/env python | |
''' | |
Harvest (www.getharvest.com) does not support setting monthly budgets for projects. | |
The recommended workaround is creating a new project every month. This script is | |
supposed to run on the first of every month and uses the Harvest API in order to | |
archive last month's projects and create new ones for the current month. Members | |
and tasks are automatically copied over to the new project. | |
Projects with monthly budgets need to fulfill two requirements: | |
1. They need to have a budget set |
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
cat COMODORSAAddTrustCA.crt COMODORSADomainValidationSecureServerCA.crt AddTrustExternalCARoot.crt > domain_bundle.crt |
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
<table class="c-table --bordered --striped --hover --compact"> | |
<thead> | |
... | |
</thead> | |
<tbody> | |
... | |
</tbody> | |
</table> |
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
<ul class="~tiles --thirds"> | |
<li><img src="https://unsplash.it/500/300/?image=745"></li> | |
<li><img src="https://unsplash.it/500/300/?image=232"></li> | |
<li><img src="https://unsplash.it/500/300/?image=123"></li> | |
</ul> |
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
<ul class="c-tiles --quarters"> | |
<li><img src="https://unsplash.it/500/300/?image=723"></li> | |
<li><img src="https://unsplash.it/500/300/?image=693"></li> | |
<li><img src="https://unsplash.it/500/300/?image=660"></li> | |
<li><img src="https://unsplash.it/500/300/?image=256"></li> | |
</ul> |
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
<ul class="c-tiles --quarters-padded"> | |
<li><img src="https://unsplash.it/500/300/?image=719"></li> | |
<li><img src="https://unsplash.it/500/300/?image=534"></li> | |
<li><img src="https://unsplash.it/500/300/?image=667"></li> | |
<li><img src="https://unsplash.it/500/300/?image=50"></li> | |
<li><img src="https://unsplash.it/500/300/?image=643"></li> | |
<li><img src="https://unsplash.it/500/300/?image=63"></li> | |
</ul> |